Wicked_Caty Posted February 27, 2016 Posted February 27, 2016 (edited) I made a small program that should get the unicode code of an array, save it in a variable, and write it into an file. That should be done for every array of a string. For $i = 0 To $len Step 1 ; $len is the length of the text I enter previously $tmp0 = ChrW($text[$i]) ; $text is the text FileWrite($f, $tmp0 & @CRLF) ; $f is the file I write into $tmp0 = "" Next Building and compiling finish without raising warnings or errors, but the program fails when it's supposed to get the unicode code of that array... The error message says "Line 357 (File "D:\documents\coding\Crypt\Crypt.exe"): Error: Subscript used on non-accessible variable." My code ends at line 141, so it's not a problem with my code as such. I'd say that ChrW() isn't able to handle the variable I give it. I don't think it's a problem with the string, but I suspect that it's because I use a variable as an index ($text[$i]). If my clue was right, how do I fix it? If not, what could be the problem? Thanks for the help! Edited February 27, 2016 by Wicked_Caty
InunoTaishou Posted February 27, 2016 Posted February 27, 2016 I don't know where and how you declared and defined $len. I don't know what the contents of $text are. My only guess, based on the small snippet of code you posted, is you did $len as the full length of the string but forgot to subtract 1 (since string lengths start at 1 unless the string is "")
AutoBert Posted February 27, 2016 Posted February 27, 2016 (edited) Which data is assigned ´to $test? And also without any include the script has not 357 lines. May be you have to change to For $i = 0 To $len-1 ;Step 1 not nececary if not post the complete script. Edited February 27, 2016 by AutoBert
Wicked_Caty Posted February 27, 2016 Author Posted February 27, 2016 Quote I don't know where and how you declared and defined $len. I don't know what the contents of $text are. Local $len = StringLen($text) Local $text = InputBox("UCC", "Enter the text") $text is entered by the user, but it will be plain text like "abc" or "test" or "hello". Sometimes there might be numbers in there too, but really nothing special (yet). Quote My only guess, based on the small snippet of code you posted, is you did $len as the full length of the string but forgot to subtract 1 (since string lengths start at 1 unless the string is "") I didn't know that, thanks. Unfortunately, neither subtracting 1 from $len, nor using $i = 1 in the for-loop works (same error).
Wicked_Caty Posted February 27, 2016 Author Posted February 27, 2016 (edited) Okay, here's the full script. Maybe you find the problem in there. (before you tell me, yes, I know that this is probably the weakest encryption ever. It's just for learning autoit a bit better and hiding my personal notes from friends and family) Crypt.au3 Edit: it's not fully finished yet, so please excuse some unnecessary things in there. Edited February 27, 2016 by Wicked_Caty
AutoBert Posted February 28, 2016 Posted February 28, 2016 (edited) Func Encryption($log, $text, $file) Local $len = StringLen($text) Local $f = FileOpen($file, $FO_APPEND) Local $tmp0 = "" Local $tmp1 = "" Local $aText = StringSplit($text,'',2) For $i = 0 To UBound($aText)-1 $tmp0 = ChrW($atext[$i]) FileWrite($f, $tmp0 & @CRLF) $tmp0 = "" $tmp1 = "" Next FileWrite($log, "Text encrypted on " & @MDAY & "." & @MON & "." & @YEAR & " at " & @HOUR & ":" & @MIN & ":" & @SEC & @CRLF) FileClose($f) EndFunc Just making string $Text to a array and work with should be the solution. But this is not crypted, see there for _Crypt_EncryptData Edited February 28, 2016 by AutoBert Wicked_Caty 1
Wicked_Caty Posted February 28, 2016 Author Posted February 28, 2016 Thanks it works now Had to #include <StringConstants.au3> though Thanks for the awesome help!
AutoBert Posted February 28, 2016 Posted February 28, 2016 (edited) Easy task and much better as to decrypt boter's wishes. AutoIt is not the first programming langue? i think C or Pascal was first? Edited February 28, 2016 by AutoBert
Wicked_Caty Posted February 28, 2016 Author Posted February 28, 2016 I indeed tried some other programming languages first I did C++, vbs and python before, but switched to autoit because it's enough for my basic needs and A LOT easier than C++ for example.
InunoTaishou Posted February 28, 2016 Posted February 28, 2016 Idk about A LOT easier than C++. What you're doing is very simple and pretty easy in C++ too. If all you're doing is some simple stuff for fun then AutoIt is fine. If you want to get into programming don't make AutoIt your go to. It's simple, easy, and the syntax is forgiving, but it's more of a supplement than a full course meal. Python, I'm told, is a good beginner language, as is Java, and if you want to do something easy in .net than C# is another good one. C++ can be hard and difficult for a beginner but if you get a good book, and spend the time reading and understanding what it's trying to teach you, you will do fine. Also, classes and objects are like crack and a good IDE makes writing code so much better. Just my two cents.
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