Search found 93 matches

by ECNU4271
Tue Sep 24, 2013 11:36 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Is it achievable?
Replies: 2
Views: 2446

Is it achievable?

Hi,all! I wonder if this is achievable in LiveCode: Take a picture by using your iPhone, then the app can analyze the picture and recognize the numbers in specific area. Get the numbers and then do some commands. Return some results. Is it possible in LiveCode? (The character recognition from photo)...
by ECNU4271
Sun Sep 22, 2013 12:16 am
Forum: iOS Deployment
Topic: The shape of option button on iOS is ugly...
Replies: 5
Views: 5664

Re: The shape of option button on iOS is ugly...

Hi Michael, You don't have to use buttons to get a button...errr... OK, what I mean is an image can be used instead of a button. It's all in scripting as to what the object does. I've attached a simple stack for you to see. Simon Hi, Simon I've read the script in the livecode file you provided. Tha...
by ECNU4271
Sun Sep 22, 2013 12:12 am
Forum: iOS Deployment
Topic: The shape of option button on iOS is ugly...
Replies: 5
Views: 5664

Re: The shape of option button on iOS is ugly...

Hi Michael, unfortunately the Livecode native "Look and feel" of objects on iOS is "Emulated motif" and you cannot do anything against this. Except "rolling your own" or using this: http://mobgui.com Or this: http://tmtools.tactilemedia.com/tmcontrol/ Supplying native mobile controls is on the to d...
by ECNU4271
Fri Sep 20, 2013 4:10 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Hi! How to make buttons on ANSWER work? see 5th post
Replies: 7
Views: 5079

Re: Hi! How to make buttons on ANSWER work? see 5th post

OK I got it.

Simply because the display name can not include "&". :roll: :roll: :roll: :roll:
by ECNU4271
Fri Sep 20, 2013 2:22 pm
Forum: iOS Deployment
Topic: The shape of option button on iOS is ugly...
Replies: 5
Views: 5664

The shape of option button on iOS is ugly...

屏幕快照 2013-09-20 下午2.17.57.png This is the shape of an option button shown on live code. 屏幕快照 2013-09-20 下午2.18.05.png This is the shape of the same option button shown on iOS device. The shape of the button shown on iOS is terrible. How can I get rid of the right part to just show the number? Is th...
by ECNU4271
Fri Sep 20, 2013 1:37 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Hi! How to make buttons on ANSWER work? see 5th post
Replies: 7
Views: 5079

Re: Hi! How to make buttons on ANSWER work? see 5th post

any hint or clue why this happens? I've thought about this whole night, still don't understand. When I put the card of app "don't work" into app "work well", it worked in the simulator. In the mean time, the provisional profile is right, the standalone setting is the same. I really don't know why th...
by ECNU4271
Fri Sep 20, 2013 1:04 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Hi! How to make buttons on ANSWER work? see 5th post
Replies: 7
Views: 5079

Re: Hi! How to make buttons on ANSWER work?

Really don't know why, can anybody help me?

Can't make it run in the simulator & move it into my iPhone via Xcode
by ECNU4271
Thu Sep 19, 2013 11:42 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Hi! How to make buttons on ANSWER work? see 5th post
Replies: 7
Views: 5079

Re: Hi! How to make buttons on ANSWER work?

I've finished my app and try running in iOS simulator. However, the fail suggestion on starting the iOS simulator is " Unable to start simulation: Unknown error". I really don't know why this happens. The standalone setting is exactly the same as my previous app which still runs very well in the sim...
by ECNU4271
Thu Sep 19, 2013 10:38 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Hi! How to make buttons on ANSWER work? see 5th post
Replies: 7
Views: 5079

Re: Hi! How to make buttons on ANSWER work?

Hi. When you read the entry in the dictionary, you may have seen that the choice you made from the dialog was placed automatically into the local variable "it". This information can be used (and I recommend using it right away) to drive one or more routines. So: answer "Read the Dictionary Again" w...
by ECNU4271
Thu Sep 19, 2013 10:24 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Hi! How to make buttons on ANSWER work? see 5th post
Replies: 7
Views: 5079

Hi! How to make buttons on ANSWER work? see 5th post

Hi, all! I am developing a Bulls & Cows game on mobile for fun as practice. I have two questions, and I can't find the answers in either the dictionary or tutorials. 1. For example, answer "Sorry! Game Over!" with "Start a new game" or "Give me a second" How can I make LiveCode run commands when use...
by ECNU4271
Tue Sep 03, 2013 4:07 pm
Forum: iOS Deployment
Topic: Keyboard covers text field when typing
Replies: 61
Views: 32378

Re: Keyboard covers text field when typing

Hi, Simon.

I am studying for my Master degree in the University ......actually
by ECNU4271
Sun Sep 01, 2013 11:06 pm
Forum: iOS Deployment
Topic: Keyboard covers text field when typing
Replies: 61
Views: 32378

Re: Keyboard covers text field when typing

I've demonstrated it to my supervisor.

He told me that this problem can be solved as scroll the whole card instead of scroll the combined group.

Just FYI :D
by ECNU4271
Sun Sep 01, 2013 4:06 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: After getting data from MySQL, how to make the data sequence
Replies: 6
Views: 5093

Re: After getting data from MySQL, how to make the data sequ

Aha, Craig

It's really good to know that way of sorting orders.

But the simple "sort data numeric" has met my needs so I'd just stick to it :D

Thanks anyway, maybe later when I need that complicated way to sort information into the field, I'll look into the codes.

Best regards,
Michael
by ECNU4271
Sun Sep 01, 2013 3:10 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: After getting data from MySQL, how to make the data sequence
Replies: 6
Views: 5093

Re: After getting data from MySQL, how to make the data sequ

Great, Craig, thanks!

I tried and it worked fine. Seems if there are several columns, the default setting is to go "numeric" by the first one. But that's fine for me.

Michael
by ECNU4271
Sun Sep 01, 2013 1:48 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: After getting data from MySQL, how to make the data sequence
Replies: 6
Views: 5093

After getting data from MySQL, how to make the data sequence

For example,

Table:

Time
0900
1000
0800
0700

I want it to look like :
Time
0700
0800
0900
1000
when the data shows in the field.

How to make that happen in LiveCode?

Thanks!!
Michael