thanks
mainstack foregound
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
mainstack foregound
is possible move in foreground a mainstack when it has been minimized ?
thanks
thanks
Re: mainstack foregound
Hi link76,
I just tried this and it obviously worked
I minimized stack "test1" and put this into a button of another stack:
Hint: Any "go stack xyz" or "toplevel stack xyz" will de-minimize stack xyz,
but does not bring it to front, so the second line seems to be neccesary.
Best
Klaus
I just tried this and it obviously worked
I minimized stack "test1" and put this into a button of another stack:
Code: Select all
on mouseup
set the iconic of stack "test1" to false
toplevel stack "test1"
end mouseupbut does not bring it to front, so the second line seems to be neccesary.
Best
Klaus
Re: mainstack foregound
thank youKlaus wrote:Hi link76,
I just tried this and it obviously worked![]()
I minimized stack "test1" and put this into a button of another stack:Hint: Any "go stack xyz" or "toplevel stack xyz" will de-minimize stack xyz,Code: Select all
on mouseup set the iconic of stack "test1" to false toplevel stack "test1" end mouseup
but does not bring it to front, so the second line seems to be neccesary.
Best
Klaus
it's OK