Full screen mode
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Full screen mode
A friend has asked me to help him make a comic book reader app. He was going to work in .net, but i have been trying to convert him to livecode. The one thing that the app will require, that i am not sure can be done in Livecode is to run in full screen mode like a movie viewer. Can this be done, and can someone point me in the direction of what I need to learn.
Re: Full screen mode
Give this a try:
Best regards,
-Doc-
Code: Select all
on mouseUp
set the fullscreen of this stack to true -- fullscreen mode
end mouseUp
on mouseUp
set the fullscreen of this stack to false -- normal mode
end mouseUp
-Doc-
Re: Full screen mode
Hi all,
It can really help in the development process of a kiosk application to be able to quickly check how it looks full screen, then go back to “normal” display, with your stack one window amongst several on the screen. This then allows you to see and work with other files and programs. One way is to create a button with the following script as a “toggle” control:
This is just a variant of Doc’s suggestion. It may also be useful to check out the backdrop property.
Regards,
Michael
It can really help in the development process of a kiosk application to be able to quickly check how it looks full screen, then go back to “normal” display, with your stack one window amongst several on the screen. This then allows you to see and work with other files and programs. One way is to create a button with the following script as a “toggle” control:
Code: Select all
on mouseUp
set the fullscreen of this stack to not the fullscreen of this stack
end mouseUp
Regards,
Michael
Re: Full screen mode
Thanx You doc ...doc wrote:Give this a try:Best regards,Code: Select all
on mouseUp set the fullscreen of this stack to true -- fullscreen mode end mouseUp on mouseUp set the fullscreen of this stack to false -- normal mode end mouseUp
-Doc-
Works for my project
Can we send command automatically fullscreen mode to secondary monitor on PC?
Gilar | from INDONESIA