Page 1 of 1
How to make card or stack fullscreen
Posted: Mon Sep 09, 2013 8:37 pm
by shawnblc
How do you make a card or stack fullscreen (mac and windows). Doesn't seem to work for me though.
Is it as simple as -
Code: Select all
set the fullscreen of this card to true
Code: Select all
set the fullscreen of this stack to true
Re: How to make card or stack fullscreen
Posted: Mon Sep 09, 2013 9:10 pm
by shawnblc
Got it.
Code: Select all
on OpenStack
set the fullscreen of this stack to true
end OpenStack
Re: How to make card or stack fullscreen
Posted: Mon Sep 09, 2013 9:34 pm
by Klaus
Yes, just like the dictionary says...

Re: How to make card or stack fullscreen
Posted: Mon Sep 09, 2013 9:58 pm
by shawnblc
Klaus wrote:Yes, just like the dictionary says...

I'm trying to take this a step further.
Code: Select all
on openStack
set the fullscreen of this stack to true
set the width of graphic "rec1" to 1440 // or whatever the fullscreen is for this screen
end openStack // instead of length this would be width, but length seems to work. // thinking a nav bar at the top
Re: How to make card or stack fullscreen
Posted: Mon Sep 09, 2013 10:12 pm
by shawnblc
Geez. I'm starting to amaze myself! This is starting to get fun!
Code: Select all
on openstack
set the rect of graphic "rec1" to the working screenRects
end openstack
this seems to work too.
Code: Select all
on openstack
set the rect of graphic (rec1) to the working screenRects
end openstack