Mac Menu Bar Apps

Matthias Rebbe | M-R-D matthias_livecode_150811 at m-r-d.de
Wed Jan 21 11:44:40 EST 2015


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 <ambassador at fourthworld.com>:
> 
> 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
> ____________________________________________________________________
> Ambassador at FourthWorld.com                http://www.FourthWorld.com
> 
> _______________________________________________
> use-livecode mailing list
> use-livecode at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode






More information about the use-livecode mailing list