Kiosk App to Move Back on Top

Sarah Reichelt sarah.reichelt at gmail.com
Sun Dec 16 20:32:08 EST 2007


> If so, how exactly do we do that?  Infact I want to actually close
> Safari's Top window (so that the next user comes into Safari with a
> default page)   I suppose that will require a touch of applescript.
> (of which I know virtually zero)

Here are the Applescripts you will need. Assembe them as usual and "do
using AppleScript".

To close the top window:
tell application "Safari"
	close window 1
end tell

To close all windows:
tell application "Safari"
	close the windows
end tell

HTH,
Sarah



More information about the use-livecode mailing list