I’m trying to make the app that I have go full screen. I read one tutorial over Mac OS X Hints - A community-built collection of OS X hints here but every time I press the button my screen just flashes. This tutorial was posted in 2003 and I think it might be a little dated. Is there a better way to do it know in 2005.
There must be someone here that has some incite to where I could get information for full screen in applescript studio.
Come on I need HELP PLEASE
Are you doing this:
set theWindow to (call method “beginFullScreen”)
call method “endFullScreen”
?
Unless you have no idea how programming works, that code literally opens then closes fullscreen.
try:
set theWindow to (call method “beginFullScreen”)
(* do something here *)
call method “endFullScreen”