keystroke question...

I’m trying to write a simple little script to open Safari to a particular url and force it to fullscreen, no address or status bar, sort of like a kiosk mode. I’ve installed the “Saft” Safari plug-in to allow for the fullscreen functionality. Now I’m trying to figure out how to pass the keyboard commands to force the fullscreen action as well as to hide the address bar and status bar. I’ve also installed the System Events bits to allow for the “keystroke” command but here’s my problem…

I can script a 2-key keyboard shortcut like this:

tell application “System Events”
keystroke “f” with command down
end tell

But I’m not able to add a third key no matter the syntax. I assumed it should read like this:

keystroke “f” with command and shift down

But that does not work, and I’ve tried endless variations that do not work either.

Any hints?

Thanks

Try passing the modifier keys down as a list:

Jon