Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)Pyr3xOctober 25, 2011 at 3:05 PM#Text Change / MUI_PAGE_FINISHMy autopatcher is finishing with MUI_PAGE_FINISH which then launches an executable but I would prefer to customize the text on page and the text on the button. How do I do this?
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)MSGOctober 25, 2011 at 3:18 PM#It's all in the readme: http://nsis.sourceforge.net/Docs/Modern%20UI%202/Readme.html (pro tip: Search for 'finish'.)
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)Pyr3xOctober 25, 2011 at 3:27 PM#I apologize I see how it works now. Thank you. I did not see anyhting about hiding the back button though, any ideas?
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)MSGOctober 25, 2011 at 4:04 PM#To disable: GetDlgItem $0 $HWNDPARENT 3 EnableWindow $0 0 To hide (perhaps you should first disable it, can one of the gurus reply?): GetDlgItem $0 $HWNDPARENT 3 ShowWindow $0 0 http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.14.6 http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.14.4 http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.14.17