Have topleveled,
have renamed stack to BGSrev and saved as BGSrev,
have removed BGSrev and revBGS from plugins folder
---- to Plugins Backup folder (at the same level as Plugsinsfolder),
have restarted LiveCode,
have opened BGSrev, topleveled and still won't allow me to drop a label.
Have started new MainStack and have to copy all one object and script at a time.
Lucky its only 4 buttons so far and about 6 tabs of script.
I don't think I need the palette either.
But just found this as well:
http://lists.runrev.com/pipermail/use-l ... 12923.html
How to edit a palette?
Contextual menus not working for me either... but for years I have put
toggles on palette windows during dev... this works great: make it a
check box btn ( if you want to see it) or make it transparent,
borderless, nameless btn in some location you can remember (if you
don't like to see it on the interface... later if you forget you can
find it in the application overview)
Code: Select all
on mouseup
if the mode of this stack is 4 then
toplevel this stack
else
palette this stack
end if
end mouseup
or "remotely" from another stack, say stack "Dev Tools" which has a
button:
"Edit Favorites Window"
on mouseup
if the mode of stack "Favorites" is 4 then
toplevel stack "Favorites" ## allows editing
else
palette stack "Favorites" ## restore to palette
end if
end mouseup