Page 1 of 1

go to card when i open the application

Posted: Wed Jan 06, 2016 7:14 pm
by problème
Hello,
When i open my application i want to go to card1, so i do this in the mainstrack script

Code: Select all

on preOpenStack
   go to card "card1"
end preOpenStack
but it does not work, when i open the application, it goes to card2

Re: go to card when i open the application

Posted: Wed Jan 06, 2016 8:35 pm
by quailcreek
Try using the card ID.

Code: Select all

go cd ID nnnn

Re: go to card when i open the application

Posted: Wed Jan 06, 2016 10:21 pm
by dunbarx
Hmm.

Have you looked at the name of card 2? You could always, of course:

Code: Select all

on preOpenStack
   go to card 1
end preOpenStack
Anyway, unless directed otherwise, all stacks open by default at card 1. Do you need more?

Craig Newman

Re: go to card when i open the application

Posted: Fri Jan 08, 2016 6:58 am
by problème
thanks for your helps