James C. Wall wrote/ schreef:
> Again I am asking this wondefully active group for some help.
>
> I have created a stack on the Mac and it runs with the standard type of
> menu at the top of the screen i.e. File, Edit, etc
>
> When I open MetaCard on the Windows side I get a menu with attached
> buttons which I have to move into position. This takes up a fair portion
> of the screen. How can I get the menu to appear as a thin line of pull
> down menu items as it does on the Mac side?
There is a tool called "Menu Builder" in MetaCard, but I have also the idea
that it has a bug that moves the menu off screen. Scott...?
Anyway, the way I solve it by now is the do-it-yourself-way, and not very
neat, but it works. For each menu I make a button (style: pulldown), with
the options in the contents of the button. For example the contents are:
Copy
Paste
-
Select all
Then the script would be:
on menuPick choice
if choice is "Copy" then copy
if choice is "Paste" then paste
if choice is "Select all" then select cha1 to -1 of field "Text"
end menuPick choice
Eventually you could group all this buttons, and make a script
on openStack
if the platform is "MacOS" then hide group "Menubar"
else show group "Menubar"
end openStack
Hope this helps,
Sjoerd
> tia
>
> jim wall