--- In [email protected], "quantiworks" <quanticwo...@...> wrote:
>
> Sheri almost working now.
> Aliases run just fine but the PATH keeps displaying errors.
> 
> here's an example typing cmd:
> 
> 
> ---------------------------
> PowerPro
> ---------------------------
> Bad expression:  invalid number, string,  or variable at
> "\")
> (select(lastpath, -1) != "\")
> 
> Error occurred near line 243 of script 
> scr_launch_cont...@flexlaunch:
>             If(select(lastpath, -1) != "\")
> 
> Called from line 1 of script HookCommandLine
> 
> Press Cancel to end all running scripts.
>

The line in your error has one of those strings with a backslash in it.

If(select(lastpath, -1) != "\")
should be 
If(select(lastpath, -1) != ?"\")

You should search for backslashes in the script and make sure you've
repaired all the other strings that have them. Backslash is the escape
character in PP's standard configuration, so wherever its used to
refer to a literal backslash, it needs to be in a literal string.

Regards,
Sheri

Reply via email to