LC 7 and unicode

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
vedus
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 153
Joined: Tue Feb 26, 2013 9:23 am

LC 7 and unicode

Post by vedus » Wed Nov 05, 2014 8:43 pm

I am using the LC 7.0.1.
i do the simple bellow code.

Code: Select all

set the Label of button "myrecord" to "εγγραφη"  //this is the greek world 
When i save the stack and exit the lc AND reopen it i get the bellow

Code: Select all

 set the Label of button "rec2" to "?????"
i have miss something?

zaxos
Posts: 222
Joined: Thu May 23, 2013 11:15 pm

Re: LC 7 and unicode

Post by zaxos » Wed Nov 05, 2014 11:25 pm

just did a test with LC7

Code: Select all

on openCard
   set the label of btn 1 to "Εγγραφή"
end openCard
Worked as expected, both the standalone and in LC
Knowledge is meant to be shared.

LCNeil
Livecode Staff Member
Livecode Staff Member
Posts: 1223
Joined: Wed Oct 03, 2012 4:07 pm

Re: LC 7 and unicode

Post by LCNeil » Wed Nov 05, 2014 11:34 pm

You will need to make sure your stack is saved in the LiveCode 7.0 format and not a legacy format. (e.g. 5.5)

This will probably be the case if you have created a stack in an old version of LiveCode and you are editing it in LiveCode 7.0

Kind Regards,

Neil Roger
--
LiveCode Support Team ~ http://www.runrev.com
--

vedus
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 153
Joined: Tue Feb 26, 2013 9:23 am

Re: LC 7 and unicode (solved)

Post by vedus » Thu Nov 06, 2014 12:18 am

thank you
Was at legacy format.

Post Reply