Skinning Issue on Windows
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Skinning Issue on Windows
I tried out the skinning tutorial at:
http://www.runrev.com/developers/tutori ... -skinning/
When building my own stack (or using the example stack provided) on Windows XP, I found that the stack does not minimize correctly to the taskbar, but instead 'sits' at the bottom of the screen with a small portion peeking out over the taskbar.
See this for a screenshot:
http://www.themacmarketer.com/images/ic ... 001359.jpg
Has anyone else encountered this when building on Windows XP?
Thanks,
Ivan
http://www.runrev.com/developers/tutori ... -skinning/
When building my own stack (or using the example stack provided) on Windows XP, I found that the stack does not minimize correctly to the taskbar, but instead 'sits' at the bottom of the screen with a small portion peeking out over the taskbar.
See this for a screenshot:
http://www.themacmarketer.com/images/ic ... 001359.jpg
Has anyone else encountered this when building on Windows XP?
Thanks,
Ivan
Just to let everyone know I found a workaround from a old revolution archive post:
In the mimimize button script:
on mouseup
set the windowshape of this stack to 0
set the iconic of this stack to true
end mouseup
In the stack script:
on unIconifyStack
set windowShape of me to <your background image id>
end unIconifyStack
In the mimimize button script:
on mouseup
set the windowshape of this stack to 0
set the iconic of this stack to true
end mouseup
In the stack script:
on unIconifyStack
set windowShape of me to <your background image id>
end unIconifyStack
Has this been reported as a bug? it worked just fine in 2.8.1.
UPDATE: strange, I see a uncofirmed bug report of this, but says version 2.8.1
http://quality.runrev.com/qacenter/show_bug.cgi?id=5864
I never had any trouble with this in 2.8.1, but in 3.0 I do.
I just tested the stack back in 2.8.1 and it works fine, minimizes to the taskbar. opened it up in 3.0 and it looks just like the OPs screenshot when I minimize (set iconic...)
This is on Windows XP SP2
UPDATE: strange, I see a uncofirmed bug report of this, but says version 2.8.1
http://quality.runrev.com/qacenter/show_bug.cgi?id=5864
I never had any trouble with this in 2.8.1, but in 3.0 I do.
I just tested the stack back in 2.8.1 and it works fine, minimizes to the taskbar. opened it up in 3.0 and it looks just like the OPs screenshot when I minimize (set iconic...)
This is on Windows XP SP2
Thanks SparkOut. Anyone using 2.9 or 3.0 that this doesn't happen with?SparkOut wrote:I can confirm exactly the same behaviour here on Windows XP. A stack with a custom window shape appears not to minimise to the taskbar when the iconify of the stack is set to true, in v. 2.9 or greater. 2.8.1 it works fine.