mainstack foregound

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
link76
Posts: 99
Joined: Fri Nov 04, 2011 1:52 pm

mainstack foregound

Post by link76 »

is possible move in foreground a mainstack when it has been minimized ?
thanks :)
Klaus
Posts: 14324
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: mainstack foregound

Post 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
link76
Posts: 99
Joined: Fri Nov 04, 2011 1:52 pm

Re: mainstack foregound

Post 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 :)))
Post Reply