Hi Josep,

You need to create an statusIcon (according o the release notes). For example:

on preOpenStack
  set statusIcon to 23001
  set the statusIconMenu to "Open Programme|openStandalone"
end preOpenStack

and you need a script that handles the menu selection:

on iconMenuPick theItem
  switch theItem
    case "openStandalone"
      launch "path/to/your/standalone"
      break
    case "somethingElse"
      -- do something else here
      break
    case "quit"
      quit
      break
   end switch
end iconMenuPick

Keep these scripts in a separate standalone, which runs all the time. Whenever 
the menu item Open Standalone is selected, the iconMenuPick handler runs and 
opens your main standalone.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce 
Create installers for Mac and Windows on *every* Rev-compatible platform. No 
additional software needed.

On 2 okt 2010, at 15:51, JosepM wrote:

> 
> Hi Mark,
> 
> I want create a custom icon that launch my standalone. I see that I must
> create a "menulets", isn't?
> 
> 
> Salut,
> Josep
> 
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to