Some have indicated they like to have a development menu in their projects that 
they remove when compiling to standalone. A better way is to simply hide the 
development menu then call this handler:

on arrangeMenus tMenu
   -- rearranges the menus based upon their order ignoring invisible menu 
buttons
   -- tMenu is the name of the menu button group eg. "group MainMenu"
   put the controlNames of tMenu into tControls
   put the left of tMenu into tLeft
   add 4 to tLeft -- default group margin
   
   repeat for each line tControlName in tControls
      if the vis of button ID tControlName is false then next repeat
      set the left of button ID tControlName to tLeft
      put the right of button ID tControlName into tLeft
   end repeat
end arrangeMenus

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

Reply via email to