Page 1 of 1

GO acts differentely on mobile?

Posted: Mon Dec 23, 2013 4:14 pm
by MaxV
Coding on Android I realized after many tests that GO acts differently on Desktop and on mobile. :shock:
Let's see an example:

Code: Select all

on myMex
go to card 2
answer "hello world"
end myMex
On Desktop (Win, Mac, Linux)
the following message is executed all to the end: so the program switch to card 2 and then you see "hello world"

On mobile
You'll never see "hello world":
In other words, when you change card on mobile,the current message is stopped and it doesn't continue anymore...

Am I right?

Re: GO acts differentely on mobile?

Posted: Mon Dec 23, 2013 6:09 pm
by Mark
Hi,

No, you're wrong. Probably, you have an error in your actual script.

Kind regards,

Mark

Re: GO acts differentely on mobile?

Posted: Mon Dec 23, 2013 6:27 pm
by MaxV
Hi,
I'm using Livecode 6.5.1. Please may you check this?
Create two cards in a stack and a button with the code:

Code: Select all

on MouseUp
go to card 2
put "Hello world" into temp
answer temp
end MouseUp 
On my android phone I can't see the pop up with "Hello world", it just switches card... :(

Re: GO acts differentely on mobile?

Posted: Mon Dec 23, 2013 6:33 pm
by Mark
Hi,

The script I tried is:

Code: Select all

on mouseUp
   go cd 2
   answer "Hello World"
end mouseUp
and I'm using Android 2.3.3 with LiveCode 6.5.0.3009. This script works fine for me.

Kind regards,

Mark