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 » Wed Nov 14, 2012 9:20 am

is possible move in foreground a mainstack when it has been minimized ?
thanks :)

Klaus
Posts: 14199
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: mainstack foregound

Post by Klaus » Wed Nov 14, 2012 11:56 am

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 » Wed Nov 14, 2012 12:41 pm

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