Jump to content

run line


Recommended Posts

Hi

I'm having some trouble getting this to work. I'm finding a cdrom which works great from some code I picked up here, but my run line is not working.

here's the run line I test execute from start/run and works there.

e:\player\vlc.exe --no-plugins-cache --config=e:\player\vlcrc e:\VIDEO_TS

now I have tried to put this code line together but not getting anywhere, can you help me with the correct code to get it to work

$cd1 is the variable from found cdrom, and that's good.

run( $cd1 &'\player\vlc.exe' &'--no-plugins-cache' &'--config=' & $cd1 &'\player\vlcrc' & $cd1 &'\VIDEO_TS')

Link to comment
Share on other sites

Hi

I'm having some trouble getting this to work. I'm finding a cdrom which works great from some code I picked up here, but my run line is not working.

here's the run line I test execute from start/run and works there.

e:\player\vlc.exe --no-plugins-cache --config=e:\player\vlcrc e:\VIDEO_TS

now I have tried to put this code line together but not getting anywhere, can you help me with the correct code to get it to work

$cd1 is the variable from found cdrom, and that's good.

run( $cd1 &'\player\vlc.exe' &'--no-plugins-cache' &'--config=' & $cd1 &'\player\vlcrc' & $cd1 &'\VIDEO_TS')

Your string will be:

e:\player\vlc.exe--no-plugins-cache--config=e:\player\vlcrce:\VIDEO_TS

Do you see somthing? No blanks !!

Kurt

__________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *

Link to comment
Share on other sites

  • Developers

You are missing spaces at several plaves... maybe ?:

Run($cd1 & '\player\vlc.exe --no-plugins-cache --config=' & $cd1 & '\player\vlcrc ' & $cd1 & '\VIDEO_TS')

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...