Just FYI, hoverIcon has a fatal bug:

It reset icons to the normal "Icon" on mouseLeave, but alas, it does not reset changed buttons upon leaving the card.

So, if you click a button that takes you to a different card, and your mouse is moving, whatever icons you are switching will stay "stuck" showing the hoverIcon.

Upon returning to the card with the buttons, it looks strange indeed! With some buttons showing over states.

I suggest writing manual handlers and not using hoverIcon:

ON mouseEnter
    IF the uRollOver of the target is true THEN
        set the defaultcursor to hand
        set the icon of the target to the uOverIcon of the target
    END IF
END mouseEnter

ON mouseLeave
    set the defaultcursor to arrow
    IF the uRollover of the target is true THEN
        set the icon of the target to the uOriginalIcon of the target
    END IF
END mouseLeave





On Aug 20, 2007, at 6:41 PM, Steven Axtell wrote:

I am having problems getting hover icons to appear on buttons in Windows standalones. I am using Revolution 2.8.1 on Windows computers using Windows 2000 and XP Pro. The hover icons work fine in the development environment. Has anyone else seen this?

Thanks,

Steven Axtell
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to