AutoRun LWMenu

If you are currently developing portable freeware or planning to do so, use this forum to discuss technical implementation, seek out like-minded developers for partnership, or solicit interested users for beta testing.
Message
Author
-ElCoyot-
Posts: 137
Joined: Thu Sep 02, 2021 4:42 am

Re: AutoRun LWMenu

#331 Post by -ElCoyot- »

lwc
Hi. Can you compile the code that is responsible for "blinktaskbarwhendone" into an executable file

lwc
Posts: 293
Joined: Tue Jun 26, 2012 10:40 pm
Contact:

Re: AutoRun LWMenu

#332 Post by lwc »

Not sure I understand, just use:

Code: Select all

[CUSTOM MENU]
skiptobutton=1

[BUTTON1]
buttontext=Your Program
relativepathandfilename=yourprogram.exe
blinktaskbarwhendone=1

-ElCoyot-
Posts: 137
Joined: Thu Sep 02, 2021 4:42 am

Re: AutoRun LWMenu

#333 Post by -ElCoyot- »

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.

lwc
Posts: 293
Joined: Tue Jun 26, 2012 10:40 pm
Contact:

Re: AutoRun LWMenu

#334 Post by lwc »

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)?

Code: Select all

[CUSTOM MENU]
skiptobutton=0
blinktaskbarwhendone=1
Let me know that's what you want and I'll do it.

-ElCoyot-
Posts: 137
Joined: Thu Sep 02, 2021 4:42 am

Re: AutoRun LWMenu

#335 Post by -ElCoyot- »

I just need a piece of Autoit code that contains the "blinktaskbarwhendone" function, but compiled into an exe file.

lwc
Posts: 293
Joined: Tue Jun 26, 2012 10:40 pm
Contact:

Re: AutoRun LWMenu

#336 Post by lwc »

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:

Code: Select all

AutoRun_x64.exe /skiptobutton=0 /blinktaskbarwhendone
The code itself is:

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)

Post Reply