maestrith / AHK-Studio

Created with AHK Studio
http://www.maestrith.com
365 stars 68 forks source link

How to report an Issue #154

Open maestrith opened 6 years ago

maestrith commented 6 years ago

Please include as much information as possible.

Gif/Video will greatly help!

Andy-W-K commented 5 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?

maestrith commented 5 years ago

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.

Andy-W-K commented 5 years ago

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.

maestrith commented 5 years ago

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.

5t9n3q7 commented 5 years ago

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)