Hello
I would like add url like this:
after this in vlc nsi file
CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player.lnk" \
"$INSTDIR\vlc.exe" "--intf wx --wx-embed"
how I can do this?
thank you
Sorry for my english, i'm form france
Add url after xxx.exe in shorcut
6 posts
After this?
Do you mean create an internet shortcut, or pass the URL as a parameter to the program?
-Stu
Do you mean create an internet shortcut, or pass the URL as a parameter to the program?
-Stu
Originally posted by Afrow UKI want pass the URL as a parameter to the program, can I do this
After this?
Do you mean create an internet shortcut, or pass the URL as a parameter to the program?
-Stu
* EDIT: this supposed to be berore the two posts above :-)
WriteIniStr "$INSTDIR\emissions.url" "InternetShortcut" "URL" "http://hardgamerztv.free.fr/videos/emissions.m3u"
CreateShortCut "$SMPROGRAMS\VideoLAN\emissions.lnk" "$INSTDIR\emissions.url"
WriteIniStr "$INSTDIR\emissions.url" "InternetShortcut" "URL" "http://hardgamerztv.free.fr/videos/emissions.m3u"
CreateShortCut "$SMPROGRAMS\VideoLAN\emissions.lnk" "$INSTDIR\emissions.url"
I want pass the URL as a parameter to the program, can I do this
CFCreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player.lnk" "$INSTDIR\vlc.exe" "--intf wx --wx-embed http://hardgamerztv.free.fr/videos/emissions.m3u"
Originally posted by CancerFace
CFCreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player.lnk" "$INSTDIR\vlc.exe" "--intf wx --wx-embed http://hardgamerztv.free.fr/videos/emissions.m3u"
Thank you, i'm trying from this morning, and now it's work