Quote:
Originally Posted by Afrow UK
Are you trying to create a full screen UI (like the welcome and finish pages?) If so then you need to put Call muiPageLoadFullWindow before your code and Call muiPageUnloadFullWindow after. If you aren't using any welcome or finish pages, you also need !insertmacro MUI_PAGE_FUNCTION_FULLWINDOW. It sounds like you have one of the MUI header text controls over your link. The link will be rendered on top but will not receive any mouse events.
Stu
|
Yes, I'm tryig to create a full screen UI. I do have a finish page and welcome page.
I think that you are on to something as we've made progress here. If I add
Call muiPageLoadFullWindow before my code and
Call muiPageUnloadFullWindow after
AND move my link to the top of the page by setting the Y coordinate of the link to 0u then the link works. Then if I move it back down the page where it belongs it stops working. Seems like a Z order thing for sure. Any other thoughts?