Dave in PNG Posted January 27, 2007 Posted January 27, 2007 I'm using AutoIt3 to Run() a program (ImageMagick) that has some fairly complex command line parameters. Here is a partial example of a command line: -draw 'text 100,100 "Works like magick!"' If I'm trying to build the command line in a string, I wind up with something really cumbersome like: $cmdline = "-draw 'text 100,100 " & '"Works like magick!"' & "'" If there a better way to do this? Thanks Dave
Dave in PNG Posted January 27, 2007 Author Posted January 27, 2007 DUH!!! Read the manual, Dave. $cmdline = "-draw 'text 100,100 ""Works like magick!""'"
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now