Author Topic: Problem with a command line SOLVED  (Read 2100 times)

Duschmoll

  • Guest
Problem with a command line SOLVED
« on: October 18, 2017, 10:36:19 PM »
Hello,

I'm trying to use Voiceattack with Rainmeter a program use to custom desktop.

I use the following line: LeftMouseUpAction=["C:\Program Files (x86)\VoiceAttack\VoiceAttack.exe" "-command clear"]

I don't know why but it doesn't work.
I try to use -minimize to be sure that it work at least with something and it does.

The name of the command is clear, I've verified it more than once, also the profile loaded is the right one.
« Last Edit: October 19, 2017, 01:02:41 PM by Duschmoll »

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: Problem with a command line
« Reply #1 on: October 19, 2017, 09:54:51 AM »
The placement of quotes around the parameters means they're grouped together as one, which results in invalid/unknown input.

Change it to this:
Code: [Select]
LeftMouseUpAction=["C:\Program Files (x86)\VoiceAttack\VoiceAttack.exe" -command clear]
Or, if you have a command name with spaces:
Code: [Select]
LeftMouseUpAction=["C:\Program Files (x86)\VoiceAttack\VoiceAttack.exe" -command "with spaces"]

Duschmoll

  • Guest
Re: Problem with a command line
« Reply #2 on: October 19, 2017, 01:02:04 PM »
Thank you so much it work !