Up and down switching cards, can I turn this off?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Up and down switching cards, can I turn this off?
Is there a way to turn this off.
"Det bästa stället att hitta en hjälpande hand är i slutet av din egen arm" förutom här
Re: Up and down switching cards, can I turn this off?
I'm just guessing but do you have a "visual effect" statement before you go to card?
If so comment this out.
Otherwise I'm not sure what you are seeing.
Tom
If so comment this out.
Otherwise I'm not sure what you are seeing.
Tom
Re: Up and down switching cards, can I turn this off?
Me too.
Do you have a "visual effect" command somewhere in your handlers?
Craig Newman
Do you have a "visual effect" command somewhere in your handlers?
Craig Newman
Re: Up and down switching cards, can I turn this off?
hmmm... perhaps navigationArrows? Look that up in the dictionary to see if it's the behaviour you are seeing.
Maybe "set the navigationArrows to false" and see if you get the same card switching?
Maybe "set the navigationArrows to false" and see if you get the same card switching?
Re: Up and down switching cards, can I turn this off?
Way to go SparkOut, this one has been bugging me because I had no idea what the OP was talking about, but your conclusion seems the best.
It's also in Preferences >General > Arrowkeys navigate through cards.
Simon
It's also in Preferences >General > Arrowkeys navigate through cards.
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Up and down switching cards, can I turn this off?
I never thought the OP did not want to switch cards, but rather that he dd not want "up/down", as in, a visual effect.
I can't wait to see...
Craig
EDIT:
OH!! "UP DOWN". ArrowKeys. Of course.
I can't wait to see...
Craig
EDIT:
OH!! "UP DOWN". ArrowKeys. Of course.
Last edited by dunbarx on Wed Jul 02, 2014 10:45 am, edited 1 time in total.
Re: Up and down switching cards, can I turn this off?
Yes, Yes the keys!
I can't wait to find out either!
Simon
I can't wait to find out either!
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Up and down switching cards, can I turn this off?
OK DavJans,
You have been here today.
Interested minds want to know.
Simon
You have been here today.
Interested minds want to know.

Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Up and down switching cards, can I turn this off?
I'm so sorry, I left you all in the dark. I ended up having a bunch of more important things to worry about and dropped this until now when I was going threw my posts.
Here you can see what I mean by making a simple stack.
on card1 make a button with this script
on mouseUp
go to card "card2"
end mouseUp
on card 2 make a button with this script
on mouseUp
go to card "card3"
end mouseUp
on card 3 do nothing
save as stand alone app for windows and open it
click the first button
now when you push up on your keyboard it will go to card 1
push up again and it will go to card 2
again, card 1
again, card 2
now click the second button and it will go to card 3
now up will cycle all 3 cards.
This is a problem for my main stack because card one asks for a user name and password. If someone logs out and does not close the application, someone else can get in just by hitting up or down.
Here you can see what I mean by making a simple stack.
on card1 make a button with this script
on mouseUp
go to card "card2"
end mouseUp
on card 2 make a button with this script
on mouseUp
go to card "card3"
end mouseUp
on card 3 do nothing
save as stand alone app for windows and open it
click the first button
now when you push up on your keyboard it will go to card 1
push up again and it will go to card 2
again, card 1
again, card 2
now click the second button and it will go to card 3
now up will cycle all 3 cards.
This is a problem for my main stack because card one asks for a user name and password. If someone logs out and does not close the application, someone else can get in just by hitting up or down.
"Det bästa stället att hitta en hjälpande hand är i slutet av din egen arm" förutom här
Re: Up and down switching cards, can I turn this off?
Hi DavJans,
add this to your pre-/openstack script to prevent this inconvenience:
...
set the navigationarrows to false
...
Best
Klaus
add this to your pre-/openstack script to prevent this inconvenience:
...
set the navigationarrows to false
...
Best
Klaus
Re: Up and down switching cards, can I turn this off?
Thank you, sorry again for dropping this and leaving you guys in the dark, it was rude of me to do so.
"Det bästa stället att hitta en hjälpande hand är i slutet av din egen arm" förutom här