Page 1 of 1

mainstack foregound

Posted: Wed Nov 14, 2012 9:20 am
by link76
is possible move in foreground a mainstack when it has been minimized ?
thanks :)

Re: mainstack foregound

Posted: Wed Nov 14, 2012 11:56 am
by Klaus
Hi link76,

I just tried this and it obviously worked :D
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 mouseup
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

Re: mainstack foregound

Posted: Wed Nov 14, 2012 12:41 pm
by link76
Klaus wrote:Hi link76,

I just tried this and it obviously worked :D
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 mouseup
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
thank you
it's OK :)))