lwc
Hi. Can you compile the code that is responsible for "blinktaskbarwhendone" into an executable file
AutoRun LWMenu
Re: AutoRun LWMenu
Not sure I understand, just use:
Code: Select all
[CUSTOM MENU]
skiptobutton=1
[BUTTON1]
buttontext=Your Program
relativepathandfilename=yourprogram.exe
blinktaskbarwhendone=1
Re: AutoRun LWMenu
You didn't understand. I need a compiled exe file with the taskbar flashing function. That is, run the exe and the panel will blink.
Re: AutoRun LWMenu
To be clear, are you asking for a file unrelated to my launcher? And for this file to just blink and exit?
If so, how about I'll just let you define skiptobutton as 0, and will make it launch and exit the launcher immediately (but will trigger post-actions like blinktaskbarwhendone)?
Let me know that's what you want and I'll do it.
If so, how about I'll just let you define skiptobutton as 0, and will make it launch and exit the launcher immediately (but will trigger post-actions like blinktaskbarwhendone)?
Code: Select all
[CUSTOM MENU]
skiptobutton=0
blinktaskbarwhendone=1
Re: AutoRun LWMenu
I just need a piece of Autoit code that contains the "blinktaskbarwhendone" function, but compiled into an exe file.
Re: AutoRun LWMenu
This is an unusual request, since it's not really related to either this thread or this program, it's more of a private request.
Where am I supposed to host this program? Here's a temp link for the 64-bit version.
If this is because you don't want to use autorun.inf, how about letting me add the aforementioned feature and then use it like:
The code itself is:
Where am I supposed to host this program? Here's a temp link for the 64-bit version.
If this is because you don't want to use autorun.inf, how about letting me add the aforementioned feature and then use it like:
Code: Select all
AutoRun_x64.exe /skiptobutton=0 /blinktaskbarwhendone
Code: Select all
$taskbartitle = "[CLASS:Shell_TrayWnd]" ; for when needing to blink the taskbar when done
$taskbartext = "" ; for when needing to blink the taskbar when done
$taskbarbuttons = "[CLASS:MSTaskListWClass]" ; for when needing to blink the taskbar when done
ControlHide($taskbartitle, $taskbartext, $taskbarbuttons)
sleep(100)
ControlShow($taskbartitle, $taskbartext, $taskbarbuttons)