Keeping window on top

Is there a way I can make my AppleScript Studio application stay the top window on my desktop?

Hi,

Can you try this?

tell application "System Events" to keep frontmost of application "YourApps" to true

If application “YourApps” doesn’t work, substitute “process” to application.

Good luck.

archseed :slight_smile:

This is what I use:

tell window "main"
	set level to 4
	set hides when deactivated to false	
   end tell

-r