Do you mean „iconmenu“? This allowed to place an icon with menu in the systray 
of the taskbar under windows and an icon with menu on the toolbar on mac.

If the iconic of the stack was set to true  the iconfiyStack handler did the 
rest

For example
on iconifyStack
   set the statusicon to 1005
   set the statusiconMenu to  „Hilfe" & CR &"Status abfragen"&CR & "Quit"
   pass iconifyStack
end iconifyStack

And the menu pick was handled by the statusIconMenuPick handler

ON statusIconMenuPick pItem
  switch pItem
  case „Hilfe“
   go stack „hilfe“
  break
  case „Status abfragen“
   get abStatus()
  break
  case „quit“
   send „quitme“ to this stack in 50 milliseconds
  break
  end switch
end statusIconMenuPick


But i cannot remember a pure livecode way to place a status icon in the dock on 
Mac OSX.


Matthias 


> Am 21.01.2015 um 17:09 schrieb Richard Gaskin <[email protected]>:
> 
> Wasn't statusMenu an "experimental" feature for both Mac's menu bar and 
> Windows' Task Bar several versions back?
> 
> -- 
> Richard Gaskin
> Fourth World Systems
> Software Design and Development for the Desktop, Mobile, and the Web
> ____________________________________________________________________
> [email protected]                http://www.FourthWorld.com
> 
> _______________________________________________
> use-livecode mailing list
> [email protected]
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode



_______________________________________________
use-livecode mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to