Page 1 of 1

Weird go card issue

Posted: Wed May 29, 2013 7:52 pm
by doobox
Hi there,

I have the weirdest issue within this handler :

// ############################################# GO BACK TO HOME SCREEN ##################################
on goHome
lock screen for visual effect
// answer "I have been received" // works here ok
go card "home"
// answer "I have been received after go home" // does not work here
// nor does an answer message placed in the on openCard of the home card get triggered
wait for 10 millisecs with messages
unlock screen with visual effect "push left very fast"
end goHome


This was all working fine and just stopped after my last build.
It is as if the handler no longer beleives there is a card named "home" in the stack.

I am using mobGUI if applicable.

I also tried completely removing this card containing the handler, and rebuilding a new one, but the issue remains.
All other functionality on this card works as expected, it's just that go command that dont work, with or without the lock screen wrapping.

[edit] : The exact same code within the handler works and correctly return the user to the home card from another card in the stack.

Re: Weird go card issue

Posted: Wed May 29, 2013 9:01 pm
by doobox
Sussed it.

It turns out that if you have an ios native text field created by mobGUI and you place that outside the visible rect of the card, it creates this bug.

The whole while during testing i had the field in view, and only moved it out of view for the last build.(when it broke)

I have replicated this issue a couple of times now with a couple of new cards, and it creates the bug each time.