
as you can see on the screenshot above, only the Revolution GUI has a taskbar button... here's a full body screenshot of the skinning system that i'm making for runtime revolution...

any answer is greatly appreciated!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
set the decoration of this stack to "title"
Code: Select all
on mouseUp
set the decorations of this stack to "title"
set the iconic of this stack to true
end mouseUp
Code: Select all
on unIconifyStack
send "unIconifyMe" to this stack in 0 milliseconds
end unIconifyStack
on unIconifyMe
set the decorations of this stack to empty
end unIconifyMe
Code: Select all
on resizeStack
refitShape
end resizeStack
on uniconifyStack
refitShape
end uniconifyStack
on preOpenStack
refitShape
end preOpenStack
on refitShape
set the rect of image id <theImageIdNr> to the rect of this stack
set the topleft of image id <theImageIdNr> to 0,0
set the windowShape of this stack to <theImageIdNr>
set the decorations of this stack to "Title"
end refitShape
Code: Select all
on mouseUp
set the iconic of this stack to true
end mouseUp