Jump to content

datkewlguy

Active Members
  • Posts

    194
  • Joined

  • Last visited

datkewlguy's Achievements

Prodigy

Prodigy (4/7)

0

Reputation

  1. Wow, thanks guys. That helps. I actually wrote a lot of the code that you gave me already, I think I was just missing a couple things.
  2. I'm trying to take a square amount of text (4x4), for example: abcdefghijklmnop and assign it to an array so that it could be visually represented as abcd efgh ijkl mnop then I should be able to say Msgbox(0, "", $array[3][2] ) and have it return "j" because that's the value in the 3rd row, 2nd column. I'm still learning multidimensioanl arrays, so if this is possible, i'd really appreciate the help. Thanks
  3. no im not making a keylogger, im actually working on some translation software and was curious as to how to assign to a variable what keys were entered...thanks
  4. How do u expand the limit for allowed virtual memory in the running script?
  5. Ah so nobody has anything to add?
  6. not sure if this should be posted here or in the gui section so i might post it twice... if anyone knows some of the quick ways to send commands to controls like edit boxes, such as undo, and select all... i guess i could always just send ^z or ^a to the box, but i was looking for less of messy way... thanks
  7. I've noticed that when i save to a filename from FileSaveDialog, the dialog doesnt automatically append the extension. I know there's a way in C++ to retrive the index of the selected filter, but how do i get it in AutoIt? Thanks!
  8. I found a way, but now i have a logic error...im going crazy, can someone please respond with SOMETHING? ;fix decryption Func normalize($character) Select Case (asc($character)-31) <= 31 msgbox(0, "3", "debug") Return(Chr(asc($character)-31)) Case (asc($character)-128) >= 128 and (asc($character)-161) <= 161 msgbox(0, "4", "debug") Return(Chr(33-$character)) ;meta tags Case $character = "²" Return ">" Case $character = "³" Return "<" ;meta tags EndSelect EndFunc ;==>normalize ;fix encryption Func unnormalize($character) Select Case asc($character) <= 31 msgbox(0, "1", "debug") Return(Chr(31+asc($character))) Case asc($character) > 128 and asc($character) < 161 msgbox(0, "2", "debug") Return(Chr(33+asc($character))) ;meta tags Case $character = ">" Return "²" Case $character = "<" Return "³" ;meta tags EndSelect Return $character EndFunc ;==>unnormalize edit: this works with the rest of my script, but doesnt decrypt correctly (for all i know, it doesnt encrypt correctly either...)
  9. I'll try to be as clear as possible: This is for a modification to an elaborate encryption program that in a certain part of the script, returns invidividual characters replaced by shifting the hex code and returning it to a string. The problem is that the program that I'm primarily using this for doesn't display the following characters (listed in decimal): 0-31 or 128-161 The other characters are supported. So the decimal returned can't be 0-31 or 128-161...what rule can i apply here, to make numbers that fall under this category be displayable? *The same characters/symbols cant be shared...
  10. If you right click the file it displays information i want to change, is that in the registry?
  11. is it possible to set information about an mp3 file such as artist and etc?
  12. Whats the easiest way to rename a file?
  13. So say i have a string like this: Hello-World How would i delete everything before and including the dash so it would just be: World Keeping in mind that the string lengths and character positions change, but always follow this format.
×
×
  • Create New...