Jump to content

billthecreator

Active Members
  • Posts

    370
  • Joined

  • Last visited

About billthecreator

  • Birthday 08/29/1989

Profile Information

  • Member Title
    I am The creator
  • Location
    Florida
  • WWW
    http://billthecreator.com/programs/GhostTorrent/
  • Interests
    Computer design and programming and Xbox 360

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

billthecreator's Achievements

Universalist

Universalist (7/7)

1

Reputation

  1. Thank you so much! Worked, never thought of that. Will remember
  2. When using For..To..Next loop to delete an array element, it fails because of the size decrease. When using For..In..Next, The delete function doesn't even work. I have an array that contains some blank elements. It's also a 2D array. I need to delete those blank elements, how can I do so using a loop, or any other method? Thank you
  3. why are you linking to this thread? edit: nevermind
  4. I've seen many programs having PNG files with multiple images inside of them. I found how to slice images, but only in BMP. I know how to apply PNG to my GUIs but I can't find out how to take a PNG and slice it up. Thanks!
  5. I have a search bar that doesn't proceed unless it has text. If $SearchRead<> "" Or StringRegExp($SearchRead, '[:blank:]') = 0 Then I've tried StringInString, and that doesn't work either. Am I missing something? Thanks
  6. I created a program that allows the user to create a countdown showing days, hours, minutes, and seconds left. The colors fade from dark to light. You may also change the color of each column, red, green, or blue. Or shades of grey. The program also uses MrCreatoR's If you choose not to use the hover effect, just remove the lines of code that uses it. It makes it much more stylish with it. Countdown.au3 I made this because of Elder Scrolls V: Skyrim !
  7. This works much better. #Include <Misc.au3> If @IPAddress1 <> "127.0.0.1" Then InetGet($aSiteAdress & "/Updater.ini", @TempDir & "\Updater.ini", 1) $fetch_Version = IniRead(@TempDir & "\Updater.ini", "details", "version", "") $versionUpdate = _VersionCompare($fetch_Version, FileGetVersion(@ScriptFullPath)) If $versionUpdate <> 0 Then ; 0 means they are the same version. $update_DL = InetGet($aSiteAdress & "/PROGRAM.exe", $ScriptPath, 1, 1) ; i recommend that you write it to another location, then install it using another program, like an updater.exe EndIf EndIf
  8. thats not actually what i was looking for, but after thnking i think i found the best way to create an array, subscript 1 would be the handle, 2 the status, and so forth.
  9. I'm really stuck here.. I have 6 pictures, that change like on/off. Almost like a checkbox, basically. Is there a way to make it so that if the picture is click, it would change conditionally, like if the picture had a $GUI_CHECKED property. I've been using java for the last 3 months, and the only thing that comes to mind is classes and objects, that would be easy. Maybe there's a way, but after searching this forum, I'm not sure what to do. Thank you all. Basically this is what I am imagining... if $button_1.Status()= 1 then ;change picture $button_1.Status(0) endif
  10. i have a file with over 800 strings how would i write a script that would delete the repeats example: This is String 1 This is String 2 This is String 3 This is String 4 This is String 1 This is String 3 This is String 8 and i want to remove the ones that are repeating. also, it being over 800 lines, i started writing a for loop, but had no luck. i also searched for something with deleting string repeats, and had no luck. is there anyone who has done this before and would like to help me? thanks.
  11. yep, doesnt work on my 64-bit win7.
  12. yes, and nothing is happening, i even changed directories.. i wonder if the bmp is to big im just going to try to do a file install, this is annoying
  13. i would be happy to, but this is a golden script... but ok.. sure, but after its resolved, im removing it from here, although some will have a copy, it wont be too bad... edit: program removed as for the background... its too big to upload, but you can use any bmp
×
×
  • Create New...