Open maestrith opened 6 years ago
Hi maestrith, after following Joe Glines youtube videos, giving AHK Studio a try. I have found that the following script -
vContract_array := StrSplit(Contract_Contents, "") ; FF is the symbol for page break. Looks like the female symbol.
returns the following runtime error
C:\Users\andyk\Google Drive\AutoHotkeys\autohotkeys v1.3 pm 281218.ahk (447) : ==> Missing close-quote Specifically: "
Is there another way of recognizing the page break as the delimiter?
I'm not too sure. I'd be happy to try your code if you want to upload it but I'm not too sure that AHK-Studio could even help with this.
Hi maestrith, thankyou for your prompt response. I am very new to Autohotkey. I will see if I can write some code to highlight the issue I am having.
I was using the page break (FF symbol) to split a string into an array using the StrSplit() function. This worked fine in SciTE4Autohotkey, however, when compiling my script (using Alt R) in AHK Studio, I think it read the page break(FF symbol) as a new line and told me I was Missing close-quote for the StrSplit() function.
I will continue to play with it and get back to you.
AH! ok... not too sure how to fix that to be honest but I'll be happy to look at whatever you have. I don't work with a lot of symbols other than a few Chr(127) for odd delimiters and such.
I was using the page break (FF symbol) to split a string into an array using the StrSplit() function. try: vContract_array := StrSplit(Contract_Contents, Chr(12))
- is ASCII number of FF symbol (Form Feed)
Please include as much information as possible.
Gif/Video will greatly help!