The pcmd.cgi URL is used to translate (or “parse”) a CueScript string into an English language string.
The typical format of this URL is:
http://<ip-of-CueServer>/pcmd.cgi?cmd=<command>
For example, the following URL will translate the CueScript Q1G.:
/pcmd.cgi?cmd=Q1G
This URL will return an English language string that is the expanded version of the given CueScript.
In the above example, the returned string will be Cue 1 Go.
Parameters
cmd=<string>- A CueScript command.
- Special characters must be Percent Encoded
Examples
| CueScript Command | URL | Returned Value |
|---|---|---|
M1 |
/pcmd.cgi?cmd=M1 |
Macro 1 |
Q73G |
/pcmd.cgi?cmd=Q73G |
Cue 73 Go |
B1.5OFF |
/pcmd.cgi?cmd=B1.5OFF |
Button 1.5 Off |

