You are here

Menu Launcher source

7 posts / 0 new
Last post
Simeon
Simeon's picture
Offline
Last seen: 9 years 5 months ago
DeveloperTranslator
Joined: 2006-09-25 15:15
Menu Launcher source

Is the exe in the drive's root folder based on nsis or delphi?
If it is nsis, is there a place to download the source?
Its just I would like to change it to launch annother exe...

Patrick Patience
Offline
Last seen: 4 years 3 months ago
DeveloperModerator
Joined: 2007-02-20 19:26
I...

Thought it was Delphi.

Patrick Patience
Offline
Last seen: 4 years 3 months ago
DeveloperModerator
Joined: 2007-02-20 19:26
Haha.

I was close! Blum

Ryan McCue
Ryan McCue's picture
Offline
Last seen: 14 years 6 months ago
Joined: 2006-01-06 21:27
It's NSIS

StartPortableApps.exe is an NSIS with the following code:

OutFile "StartPortableApps.exe"
Icon "StartPortableApps.ico"
(etc)
Section
Exec "$EXEDIR\PortableApps\PortableAppsMenu\PortableAppsMenu.exe"
SectionEnd

(There may be a few extra trivial things, but it's mainly just the Exec.)
----
Ryan McCue
Current Fav. Songs:

  • Ballroom Blitz - The Misfits
  • Manic Monday - Cyndi Lauper
  • I Don't Like Mondays - The Boomtown Rats

"If you're not part of the solution, you're part of the precipitate."

Simeon
Simeon's picture
Offline
Last seen: 9 years 5 months ago
DeveloperTranslator
Joined: 2006-09-25 15:15
Thanks Ryan

From what I understand about NSIS, it looks good to me.
Nice. :lol:

EDIT

Does anyone know how to tell NSIS not to show a window and just launch FF?

"What about Love?" - "Overrated. Biochemically no different than eating large quantities of chocolate." - Al Pacino in The Devils Advocate

Steve Lamerton
Steve Lamerton's picture
Offline
Last seen: 10 years 6 months ago
Developer
Joined: 2005-12-10 15:22
Just put,

SilentInstall silent

under the Outfile

Yours

Steve Lamerton

My Blog

Simeon
Simeon's picture
Offline
Last seen: 9 years 5 months ago
DeveloperTranslator
Joined: 2006-09-25 15:15
Thanks

That did it.

"What about Love?" - "Overrated. Biochemically no different than eating large quantities of chocolate." - Al Pacino in The Devils Advocate

Log in or register to post comments