Jump to content

Cool Text Client


RazerM
 Share

Recommended Posts

I made a client for www.cooltext.com

Posted Image

;===============================================================================
;
; Program Name:    CoolText Client
; Description::    Uses [url="http://www.cooltext.com"]www.cooltext.com[/url] to generate images
; Requirement(s):  AutoIt Beta
; Author(s):       RazerM
;
;===============================================================================
;
#include <GUIConstants.au3>
#include <IE.au3>
#include <GuiCombo.au3>
#include <file.au3>
#include "table.au3"
#include <misc.au3>
#include <Color.au3>
#include "image.au3"
#include "Progress.au3"

Opt("ColorMode", 1)
Opt("TrayIconDebug", 1)
GUICreate("Cool Text Client", 600, 350)
$error = ObjEvent("AutoIt.Error","Err")
;style
GUICtrlCreateLabel("Style:", 10, 13)
$style = GUICtrlCreateCombo("", 60, 10, 130)
$styles = "3D Outline Gradient|3D Outline Textured|Alien Glow|Animated Glow|Blended|Bovinated|Burning|Carved|Chalk|Chrome One|Chrome Two|Comic" & _
"|Cool Metal|Crystal|Cutout|Felt|Fire|Glossy|Glowing Hot|Glowing Steel|Gradient Bevel|Neon|Nova|Old Stone|Outline|Simple|Slab|Starburst|Textured"
GUICtrlSetData($style, $styles, "3D Outline Gradient")

;text
GUICtrlCreateLabel("Text:", 200, 13)
$text = GUICtrlCreateInput("", 230, 10, 350)

;text size
GUICtrlCreateLabel("Text Size:", 10, 43)
$textsize = GUICtrlCreateInput(70, 60, 40, 65)

;File format
GUICtrlCreateLabel("File Format:", 170, 43)
$format = GUICtrlCreateCombo("", 230, 40, 240)
GUICtrlSetData($format, ".GIF|.GIF with Transparency|.GIF with Transparency, No Dither|.JPG|.PNG|.PNG with Transparency (Not supported in IE)", ".PNG");|.PSD (Photoshop with Layers)", ".PNG")

;background colour
GUICtrlCreateLabel("Colour:", 10, 73)
$color = _GUICtrlCreateTable(50, 73, 3, 2, 60, 20)
$combined = _GUICtrlTableSpan($color, 1, 2, 3, 2)
GUICtrlSetData($color[1][1], "255")
GUICtrlSetData($color[2][1], "255")
GUICtrlSetData($color[3][1], "255")
GUICtrlSetBkColor($color[3][1],0xff0000)
GUICtrlSetBkColor($color[2][1],0x00ff00)
GUICtrlSetBkColor($color[1][1],0x0000ff)
GUICtrlSetBkColor($combined,0xffffff)
$changecol = GUICtrlCreateButton("Change", 240, 73, 80, 25)


;render button
$render = GUICtrlCreateButton("Render", 420, 315, 80, 25)
$view = GUICtrlCreateButton("View Image", 505, 315, 80, 25)
GUICtrlSetState($view, $GUI_DISABLE)
GUISetState()

$winpos = WinGetPos("Cool Text Client")
$a_styles = StringSplit($styles, "|")
$prefile = StringLower(StringReplace($a_styles[1], " ", "")) & ".gif"
InetGet("[url="http://frazergmclean.googlepages.com/"]http://frazergmclean.googlepages.com/[/url]" & $prefile, @TempDir & "\image.gif")
$prefilesaved = @TempDir & "\image.gif" 
Dim $size = _ImageGetSize($prefilesaved)
SplashImageOn("Font Preview", $prefilesaved, $size[0], $size[1], -1, $winpos[1] - $size[1] - 5, 17)
$splash = 1

Dim $lastcolor = 0xFFFFFF, $ie, $lastfile = "", $oldpos = WinGetPos("Cool Text Client"), $old_string = ""
While 1
 If Not WinActive("Cool Text Client") Then
  SplashOff()
  $splash = 0
 EndIf
 If $splash <> WinActive("Cool Text Client") Then Splash()
 $newpos = WinGetPos("Cool Text Client")
 If $newpos[0]+$newpos[1] <> $oldpos[0]+$oldpos[1] Then Splash()
 $oldpos = WinGetPos("Cool Text Client")
 _GUICtrlComboAutoComplete ($style, $old_string)
 Switch GUIGetMsg()
  Case $GUI_EVENT_CLOSE
   Exit
  Case $render
   If (_GUICtrlComboGetCurSel($style)+1 = 4) Or (_GUICtrlComboGetCurSel($style)+1 = 7) Then
    GUICtrlSetData($format, ".GIF")
    GUICtrlSetState($format, $GUI_DISABLE)
    $i_skip = 1
   Else
    $i_skip = 0
    GUICtrlSetState($format, $GUI_ENABLE)
   EndIf
   $lastfile = _Render(GUICtrlRead($style), GUICtrlRead($text), GUICtrlRead($textsize), _GUICtrlComboGetCurSel($format)+1, $lastcolor, $i_skip) ;+1 corrects from 0 based index
  Case $changecol
   $colorpick = _ChooseColor(1, $lastcolor, 1)
   If Not @error Then
    $lastcolor = $colorpick
    GUICtrlSetBkColor($combined, $colorpick)
    $blue = _ColorGetRed($colorpick)
    GUICtrlSetData($color[3][1], $blue)
    $green = _ColorGetGreen($colorpick)
    GUICtrlSetData($color[2][1], $green)
    $red = _ColorGetBlue($colorpick)
    GUICtrlSetData($color[1][1], $red)
   EndIf
  Case $style
   Splash()
  Case $view
   If $lastfile <> "" Then RunWait(@ComSpec & ' /c rundll32.exe C:\WINDOWS\System32\shimgvw.dll,ImageView_Fullscreen ' & FileGetShortName($lastfile), '', @SW_HIDE)
 EndSwitch
WEnd
Func _Render($style, $s_text, $i_size, $i_file, $i_bkcolor, $i_skip)
 SplashOff()
 Dim $progress, $main, $sub
 $progress = _ProgressOn($progress, $main, $sub, "Connecting", "Creating IE Object", 170, 150)
 ; open IE and navigate to cooltext
 _ProgressSet($progress, 4, "Navigating to [url="http://cooltext.com"]http://cooltext.com[/url]")
 $ie = _IECreate("[url="http://cooltext.com"]http://cooltext.com[/url]", 0, 0)
 If @error Then Err()
 ;two if statements to fix style bug
 If $style = "Textured" Then _IEImgClick($ie, $style, "alt", 1, 1)
 If @error Then Err()
 If $style <> "Textured" Then _IEImgClick($ie, $style, "alt", 0, 1)
 If @error Then Err()
 ;retrieve form
 _ProgressSet($progress, 8, "Loading Form", "Setting Values")
 _IELoadWait($ie)
 $form = _IEFormGetCollection($ie, 0)
 If @error Then Err()
 ;retrieve text field
 _ProgressSet($progress, 12, "Loading Text Field")
 $text = _IEFormElementGetObjByName($form, "Text")
 If @error Then Err()
 ;set value
 _ProgressSet($progress, 16, "Setting Text Field")
 Sleep(500)
 _IEFormElementSetValue($text, $s_text)
 If @error Then Err()
 Sleep(1000)
 ;retrieve fontsize field
 _ProgressSet($progress, 20, "Loading Fontsize Field")
 $size = _IEFormElementGetObjByName($form, "FontSize")
 If @error Then Err()
 ;setvalue
 _ProgressSet($progress, 24, "Setting Fontsize Field")
 _IEFormElementSetValue($size, $i_size)
 If @error Then Err()
 If $i_skip = 0 Then
  ;retrieve file format field
  _ProgressSet($progress, 28, "Loading FileFormat Field")
  $fileformat = _IEFormElementGetObjByName($form, "FileFormat")
  If @error Then Err()
  ;set value
  _ProgressSet($progress, 32, "Setting FileFormat Field")
  _IEFormElementSetValue($fileformat, $i_file)
  If @error Then Err()
 EndIf
 ;retrieve background colour fields
 _ProgressSet($progress, 36, "Loading Background Colour Fields")
 $red = _IEFormElementGetObjByName($form, "BackgroundColor_red")
 If @error Then Err()
 $green = _IEFormElementGetObjByName($form, "BackgroundColor_green")
 If @error Then Err()
 $blue = _IEFormElementGetObjByName($form, "BackgroundColor_blue")
 If @error Then Err()
 ;set background colour
 _ProgressSet($progress, 40, "Setting Background Colour Fields")
 _IEFormElementSetValue($red, _ColorGetBlue($i_bkcolor))
 If @error Then Err()
 _IEFormElementSetValue($green, _ColorGetGreen($i_bkcolor))
 If @error Then Err()
 _IEFormElementSetValue($blue, _ColorGetRed($i_bkcolor))
 If @error Then Err()
 ;click render button using loop (i had trouble using other ways)
 _ProgressSet($progress, 44, "Loading All Form Submit Button's", "Submitting Data")
 $Inputs = _IETagNameGetCollection($form.document, "input")
 If @error Then Err()
 For $Input in $Inputs
  If String($Input.value) = "Render Logo Design" Then 
   _ProgressSet($progress, 48, "Clicking appropriate button")
   $Input.click
   ExitLoop
  EndIf
 Next
 ;wait for render
 _ProgressSet($progress, 52, "Sleeping until Cool Text has generated image")
 Do
  Sleep(100)
  If StringIsDigit(StringLeft(StringRight(_IEGetProperty($ie, "locationname"), 16), 1)) Then 
   _ProgressSet($progress, 56,  "Sleeping until Cool Text has generated image", StringRight(_IEGetProperty($ie, "locationname"), 16))
  Else
   _ProgressSet($progress, 56,  "Sleeping until Cool Text has generated image", "0 Rendering Jobs")
  EndIf
  If GUIGetMsg() = $GUI_EVENT_CLOSE Then Exit
 Until _IEGetProperty($ie, "locationname") = "Cool Text: Generated Image"
 ;split url to find image code
 _ProgressSet($progress, 60, "Splitting URL", "Retrieving Image")
 $url = _IEGetProperty($ie, "locationurl")
 If @error Then Err()
 _ProgressSet($progress, 65, "Finding Unique Code")
 $code = StringRight($url, 8)
 ;extension
 _ProgressSet($progress, 70, "Assigning extension to variable")
 $ext = StringLeft(GUICtrlRead($format), 4)
 ;download image
 _ProgressSet($progress, 75, "Retrieving all image tags")
 $imgs = _IETagNameGetCollection($ie.document, "img")
 If @error Then Err()
 _ProgressSet($progress, 80, "Please save the file...")
 $save = FileSaveDialog("Save Image", @DesktopCommonDir, "Image Files (*" & $ext & ")", 16)
 _CheckExt($save, $ext)
 If FileExists($save) Then FileDelete($save)
 _ProgressSet($progress, 85, "Splitting Save Path")
    Local $szDrive, $szDir, $szFName, $szExt
    $a_SplitFile = _PathSplit($save, $szDrive, $szDir, $szFName, $szExt);0 based array
 If @error Then Err()
 _ProgressSet($progress, 90, "Finding and saving image")
 For $img In $imgs
  $url = $img.src
  $imgfile = $img.nameProp
  If StringInStr($url, $code) And StringInStr($imgfile, "cooltext") Then
   INetGet($url, $a_SplitFile[1] & $a_SplitFile[2] & $imgfile, 1, 0) ;only if the image has the code in it's name
   ExitLoop
  EndIf
 Next
 _ProgressSet($progress, 94, "Renaming to desired filename")
 If _FileRename($a_SplitFile[1] & $a_SplitFile[2] & $imgfile, $a_SplitFile[3]) = 0 Then Err()
 _ProgressSet($progress, 100)
 _ProgressOff($progress)
 _IEQuit($ie)
 GUICtrlSetState($view, $GUI_ENABLE)
 Splash()
 Return $a_SplitFile[1] & $a_SplitFile[2] & $a_SplitFile[3] & $ext
EndFunc

;these are made by me

Func Splash()
 SplashOff()
 $winpos = WinGetPos("Cool Text Client")
 If (_GUICtrlComboGetCurSel($style)+1 <> 4) And (_GUICtrlComboGetCurSel($style)+1 <> 7) Then
 $prefile = StringLower(StringReplace($a_styles[_GUICtrlComboGetCurSel($style)+1], " ", "")) & ".gif"
 InetGet("[url="http://frazergmclean.googlepages.com/"]http://frazergmclean.googlepages.com/[/url]" & $prefile, @TempDir & "\image.gif")
 $prefilesaved = @TempDir & "\image.gif" 
 Dim $size = _ImageGetSize($prefilesaved)
 SplashImageOn("Font Preview", $prefilesaved, $size[0], $size[1], ($winpos[0]+300)-($size[0]/2), $winpos[1] - $size[1] - 5, 17)
 $splash = 1
 EndIf
EndFunc

Func _CheckExt(ByRef $s_file, $s_ext)
 If StringRight($s_file, StringLen($s_ext)) <> $s_ext Then $s_file = $s_file & $s_ext
EndFunc

Func _FileRename($s_file, $s_name)
    If Not FileExists($s_file) Then Return 0
    Local $szDrive, $szDir, $szFName, $szExt
    $a_SplitFile = _PathSplit($s_file, $szDrive, $szDir, $szFName, $szExt)
    $s_renamed = $a_SplitFile[1] & $a_SplitFile[2] & $s_name & $a_SplitFile[4]
    If Not FileMove($a_SplitFile[0], $s_renamed) Then Return 0
    If Not FileExists($s_renamed) Then Return 0
    If FileExists($s_file) Then FileDelete($s_file)
    Return 1
EndFunc

Func Err()
 MsgBox(48, "Error", "An error occurred" & @LF & "Please try again")
 _IEQuit($ie)
 ProgressOff()
 Exit
EndFunc

You need the new IE.au3

You need these UDF's:

image.au3

table.au3

Edited by RazerM
My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

I like it a lot. Great work RazerM.

One suggestion for a feature would be some kind of status bar in the bottom that let you know what step the script was on while it was "Rendering" the image. That way it doesnt feel like it is just sitting there.

AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
Link to comment
Share on other sites

I am going to add a progress bar but i working on background colour and previews right now

My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

RazerM,

Very cool program.

I can see some great uses for this to create buttons on the fly, since I haven't been able to get button color to work for 12 buttons.

Thanks for your hard work.

taurus905

"Never mistake kindness for weakness."-- Author Unknown --"The highest point to which a weak but experienced mind can rise is detecting the weakness of better men."-- Georg Lichtenberg --Simple Obfuscator (Beta not needed.), Random names for Vars and Funcs

Link to comment
Share on other sites

I have updated the first post

My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

Thanks

My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

hey, very cool. one thing I would add is, as you're changing fonts the font should change as well.

and maybe do an imagesplash after the image is saved for a quick preview

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

i'll add a quick preview, great idea!

My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

If Cool text Client is used more than once on each run the rendered image is the number '0' I have no idea how to fix this

I added a sleep here and it helped on the ealier versions

_IEFormElementSetValue($text, $s_text)
    If @error Then Err()
Sleep(500)

8)

NEWHeader1.png

Link to comment
Share on other sites

Thanks for your help. too bad it doesn't work now.

edit: @zerocool

the problem is AutoIt can't display png files and that is the best format in that list

Edited by RazerM
My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

Thanks for your help. too bad it doesn't work now.

edit: @zerocool

the problem is AutoIt can't display png files and that is the best format in that list

maybe test if it is a png file and use

$r_file = FileGetShortName(@ScriptDir & "\" & $FILE_NAME)
Run(@ComSpec & " /c Start " & $r_file, "", @SW_HIDE)

8)

NEWHeader1.png

Link to comment
Share on other sites

For PNG files or any, you can allways use IE as an object and display it in a gui with something like htmlwritebody

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

i'll give that a try later.

I have updated the first post

Edited by RazerM
My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

yes i'll open it in windows picture and fax viewer

My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

i'll give that a try later.

I have updated the first post

hey, very cool but, I have dialup and the font loads slow do you think there can be a pre load for these

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

i might add that in. I have updated the first post. It now has a view button.

My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

I have updated the first post with a newer script

My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...