w0uter Posted April 28, 2006 Posted April 28, 2006 expandcollapse popup; <AUT2EXE VERSION: 3.1.1.112> ; ---------------------------------------------------------------------------- ; <AUT2EXE INCLUDE-START: C:\Documents and Settings\Dietmar franken\Desktop\SnapShot\SnapShot.au3> ; ---------------------------------------------------------------------------- ; Capture full screen ; Fist parameter - filename, last - jpeg quality. HotKeySet("{SPACE}", "DLL") ; ---------------------------------------------------------------------------- ; <AUT2EXE INCLUDE-START: C:\Program Files\AutoIt3\beta\Include\GuiConstants.au3> ; ---------------------------------------------------------------------------- ; ------------------------------------------------------------------------------ ; ; AutoIt Version: 3.1.1.98 (beta) ; Language: English ; Description: Constants to be used in GUI applications. ; ; ------------------------------------------------------------------------------ ; Events and messages Global Const $GUI_EVENT_CLOSE = -3 Global Const $GUI_EVENT_MINIMIZE = -4 Global Const $GUI_EVENT_RESTORE = -5 Global Const $GUI_EVENT_MAXIMIZE = -6 Global Const $GUI_EVENT_PRIMARYDOWN = -7 Global Const $GUI_EVENT_PRIMARYUP = -8 Global Const $GUI_EVENT_SECONDARYDOWN = -9 Global Const $GUI_EVENT_SECONDARYUP = -10 Global Const $GUI_EVENT_MOUSEMOVE = -11 Global Const $GUI_EVENT_RESIZED = -12 Global Const $GUI_EVENT_DROPPED = -13 Global Const $GUI_RUNDEFMSG = 'GUI_RUNDEFMSG' ; State Global Const $GUI_AVISTOP = 0 Global Const $GUI_AVISTART = 1 Global Const $GUI_AVICLOSE = 2 Global Const $GUI_CHECKED = 1 Global Const $GUI_INDETERMINATE = 2 Global Const $GUI_UNCHECKED = 4 Global Const $GUI_DROPACCEPTED = 8 Global Const $GUI_ACCEPTFILES = $GUI_DROPACCEPTED; to be suppressed Global Const $GUI_SHOW = 16 Global Const $GUI_HIDE = 32 Global Const $GUI_ENABLE = 64 Global Const $GUI_DISABLE = 128 Global Const $GUI_FOCUS = 256 Global Const $GUI_DEFBUTTON = 512 Global Const $GUI_EXPAND = 1024 Global Const $GUI_ONTOP = 2048 ; Font Global Const $GUI_FONTITALIC = 2 Global Const $GUI_FONTUNDER = 4 Global Const $GUI_FONTSTRIKE = 8 ; Resizing Global Const $GUI_DOCKAUTO = 0x0001 Global Const $GUI_DOCKLEFT = 0x0002 Global Const $GUI_DOCKRIGHT = 0x0004 Global Const $GUI_DOCKHCENTER = 0x0008 Global Const $GUI_DOCKTOP = 0x0020 Global Const $GUI_DOCKBOTTOM = 0x0040 Global Const $GUI_DOCKVCENTER = 0x0080 Global Const $GUI_DOCKWIDTH = 0x0100 Global Const $GUI_DOCKHEIGHT = 0x0200 Global Const $GUI_DOCKSIZE = 0x0300; width+height Global Const $GUI_DOCKMENUBAR = 0x0220; top+height Global Const $GUI_DOCKSTATEBAR = 0x0240; bottom+height Global Const $GUI_DOCKALL = 0x0322; left+top+width+height Global Const $GUI_DOCKBORDERS = 0x0066; left+top+right+bottom ; Window Styles Global Const $WS_TILED = 0 Global Const $WS_OVERLAPPED = 0 Global Const $WS_MAXIMIZEBOX = 0x00010000 Global Const $WS_MINIMIZEBOX = 0x00020000 Global Const $WS_TABSTOP = 0x00010000 Global Const $WS_GROUP = 0x00020000 Global Const $WS_SIZEBOX = 0x00040000 Global Const $WS_THICKFRAME = 0x00040000 Global Const $WS_SYSMENU = 0x00080000 Global Const $WS_HSCROLL = 0x00100000 Global Const $WS_VSCROLL = 0x00200000 Global Const $WS_DLGFRAME = 0x00400000 Global Const $WS_BORDER = 0x00800000 Global Const $WS_CAPTION = 0x00C00000 Global Const $WS_OVERLAPPEDWINDOW = 0x00CF0000 Global Const $WS_TILEDWINDOW = 0x00CF0000 Global Const $WS_MAXIMIZE = 0x01000000 Global Const $WS_CLIPCHILDREN = 0x02000000 Global Const $WS_CLIPSIBLINGS = 0x04000000 Global Const $WS_DISABLED = 0x08000000 Global Const $WS_VISIBLE = 0x10000000 Global Const $WS_MINIMIZE = 0x20000000 Global Const $WS_CHILD = 0x40000000 Global Const $WS_POPUP = 0x80000000 Global Const $WS_POPUPWINDOW = 0x80880000 Global Const $DS_MODALFRAME = 0x80 Global Const $DS_SETFOREGROUND = 0x00000200 Global Const $DS_CONTEXTHELP = 0x00002000 ; Window Extended Styles Global Const $WS_EX_ACCEPTFILES = 0x00000010 Global Const $WS_EX_MDICHILD = 0x00000040 Global Const $WS_EX_APPWINDOW = 0x00040000 Global Const $WS_EX_CLIENTEDGE = 0x00000200 Global Const $WS_EX_CONTEXTHELP = 0x00000400 Global Const $WS_EX_DLGMODALFRAME = 0x00000001 Global Const $WS_EX_LEFTSCROLLBAR = 0x00004000 Global Const $WS_EX_OVERLAPPEDWINDOW = 0x00000300 Global Const $WS_EX_RIGHT = 0x00001000 Global Const $WS_EX_STATICEDGE = 0x00020000 Global Const $WS_EX_TOOLWINDOW = 0x00000080 Global Const $WS_EX_TOPMOST = 0x00000008 Global Const $WS_EX_TRANSPARENT = 0x00000020 Global Const $WS_EX_WINDOWEDGE = 0x00000100 Global Const $WS_EX_LAYERED = 0x00080000 Global Const $GUI_WS_EX_PARENTDRAG = 0x00100000 ; listView Extended Styles Global Const $LVS_EX_FULLROWSELECT = 0x00000020 Global Const $LVS_EX_GRIDLINES = 0x00000001 Global Const $LVS_EX_SUBITEMIMAGES = 0x00000002 Global Const $LVS_EX_CHECKBOXES = 0x00000004 Global Const $LVS_EX_TRACKSELECT = 0x00000008 Global Const $LVS_EX_HEADERDRAGDROP = 0x00000010 Global Const $LVS_EX_FLATSB = 0x00000100 Global Const $LVS_EX_BORDERSELECT = 0x00008000 ;Global Const $LVS_EX_MULTIWORKAREAS = 0x00002000 ;Global Const $LVS_EX_SNAPTOGRID = 0x00080000 ;Global Const $LVS_EX_DOUBLEBUFFER = 0x00010000 ; Tab Extended Styles Global Const $TCS_EX_FLATSEPARATORS = 0x1 ;Global Const $TCS_EX_REGISTERDROP = 0x2 ; Label/Pic/Icon Global Const $SS_LEFT = 0 Global Const $SS_CENTER = 1 Global Const $SS_RIGHT = 2 Global Const $SS_ICON = 3 Global Const $SS_BLACKRECT = 4 Global Const $SS_GRAYRECT = 5 Global Const $SS_WHITERECT = 6 Global Const $SS_BLACKFRAME = 7 Global Const $SS_GRAYFRAME = 8 Global Const $SS_WHITEFRAME = 9 Global Const $SS_SIMPLE = 11 Global Const $SS_LEFTNOWORDWRAP = 12 Global Const $SS_BITMAP = 15 Global Const $SS_ETCHEDHORZ = 16 Global Const $SS_ETCHEDVERT = 17 Global Const $SS_ETCHEDFRAME = 18 Global Const $SS_NOPREFIX = 0x0080 Global Const $SS_NOTIFY = 0x0100 Global Const $SS_CENTERIMAGE = 0x0200 Global Const $SS_RIGHTJUST = 0x0400 Global Const $SS_SUNKEN = 0x1000 ; Group Global Const $BS_GROUPBOX = 0x0007 ; Button Global Const $BS_BOTTOM = 0x0800 Global Const $BS_CENTER = 0x0300 Global Const $BS_DEFPUSHBUTTON = 0x0001 Global Const $BS_LEFT = 0x0100 Global Const $BS_MULTILINE = 0x2000 Global Const $BS_PUSHBOX = 0x000A Global Const $BS_PUSHLIKE = 0x1000 Global Const $BS_RIGHT = 0x0200 Global Const $BS_RIGHTBUTTON = 0x0020 Global Const $BS_TOP = 0x0400 Global Const $BS_VCENTER = 0x0C00 Global Const $BS_FLAT = 0x8000 Global Const $BS_ICON = 0x0040 Global Const $BS_BITMAP = 0x0080 ; Checkbox Global Const $BS_3STATE = 0x0005 Global Const $BS_AUTO3STATE = 0x0006 Global Const $BS_AUTOCHECKBOX = 0x0003 Global Const $BS_CHECKBOX = 0x0002 ; Radio Global Const $BS_AUTORADIOBUTTON = 0x0009 ; Combo Global Const $CBS_SIMPLE = 0x0001 Global Const $CBS_DROPDOWN = 0x0002 Global Const $CBS_DROPDOWNLIST = 0x0003 Global Const $CBS_AUTOHSCROLL = 0x0040 Global Const $CBS_OEMCONVERT = 0x0080 Global Const $CBS_SORT = 0x0100 Global Const $CBS_NOINTEGRALHEIGHT = 0x0400 Global Const $CBS_DISABLENOSCROLL = 0x0800 Global Const $CBS_UPPERCASE = 0x2000 Global Const $CBS_LOWERCASE = 0x4000 ; Listbox Global Const $LBS_NOTIFY = 0x0001 Global Const $LBS_SORT = 0x0002 Global Const $LBS_USETABSTOPS = 0x0080 Global Const $LBS_NOINTEGRALHEIGHT = 0x0100 Global Const $LBS_DISABLENOSCROLL = 0x1000 Global Const $LBS_NOSEL = 0x4000 Global Const $LBS_STANDARD = 0xA00003 ; Edit/Input Global Const $ES_LEFT = 0 Global Const $ES_CENTER = 1 Global Const $ES_RIGHT = 2 Global Const $ES_MULTILINE = 4 Global Const $ES_UPPERCASE = 8 Global Const $ES_LOWERCASE = 16 Global Const $ES_PASSWORD = 32 Global Const $ES_AUTOVSCROLL = 64 Global Const $ES_AUTOHSCROLL = 128 Global Const $ES_NOHIDESEL = 256 Global Const $ES_OEMCONVERT = 1024 Global Const $ES_READONLY = 2048 Global Const $ES_WANTRETURN = 4096 Global Const $ES_NUMBER = 8192 ;Global Const $ES_DISABLENOSCROLL = 8192 ;Global Const $ES_SUNKEN = 16384 ;Global Const $ES_VERTICAL = 4194304 ;Global Const $ES_SELECTIONBAR = 16777216 ; Date Global Const $DTS_SHORTDATEFORMAT = 0 Global Const $DTS_UPDOWN = 1 Global Const $DTS_SHOWNONE = 2 Global Const $DTS_LONGDATEFORMAT = 4 Global Const $DTS_TIMEFORMAT = 9 Global Const $DTS_RIGHTALIGN = 32 ; MonthCal Global Const $MCS_NOTODAY = 16 Global Const $MCS_NOTODAYCIRCLE = 8 Global Const $MCS_WEEKNUMBERS = 4 ; Progress bar Global Const $PBS_SMOOTH = 1 Global Const $PBS_VERTICAL = 4 ; AVI clip Global Const $ACS_CENTER = 1 Global Const $ACS_TRANSPARENT = 2 Global Const $ACS_AUTOPLAY = 4 Global Const $ACS_TIMER = 8 Global Const $ACS_NONTRANSPARENT = 16 ; Tab Global Const $TCS_SCROLLOPPOSITE = 0x0001 Global Const $TCS_BOTTOM = 0x0002 Global Const $TCS_RIGHT = 0x0002 Global Const $TCS_MULTISELECT = 0x0004 Global Const $TCS_FLATBUTTONS = 0x0008 Global Const $TCS_FORCEICONLEFT = 0x0010 Global Const $TCS_FORCELABELLEFT = 0x0020 Global Const $TCS_HOTTRACK = 0x0040 Global Const $TCS_VERTICAL = 0x0080 Global Const $TCS_TABS = 0x0000 Global Const $TCS_BUTTONS = 0x0100 Global Const $TCS_SINGLELINE = 0x0000 Global Const $TCS_MULTILINE = 0x0200 Global Const $TCS_RIGHTJUSTIFY = 0x0000 Global Const $TCS_FIXEDWIDTH = 0x0400 Global Const $TCS_RAGGEDRIGHT = 0x0800 Global Const $TCS_FOCUSONBUTTONDOWN = 0x1000 Global Const $TCS_OWNERDRAWFIXED = 0x2000 Global Const $TCS_TOOLTIPS = 0x4000 Global Const $TCS_FOCUSNEVER = 0x8000 ; TreeView Global Const $TVS_HASBUTTONS = 0x0001 Global Const $TVS_HASLINES = 0x0002 Global Const $TVS_LINESATROOT = 0x0004 ;Global Const $TVS_EDITLABELS = 0x0008 Global Const $TVS_DISABLEDRAGDROP = 0x0010 Global Const $TVS_SHOWSELALWAYS = 0x0020 ;Global Const $TVS_RTLREADING = 0x0040 Global Const $TVS_NOTOOLTIPS = 0x0080 Global Const $TVS_CHECKBOXES = 0x0100 Global Const $TVS_TRACKSELECT = 0x0200 Global Const $TVS_SINGLEEXPAND = 0x0400 ;Global Const $TVS_INFOTIP = 0x0800 Global Const $TVS_FULLROWSELECT = 0x1000 Global Const $TVS_NOSCROLL = 0x2000 Global Const $TVS_NONEVENHEIGHT = 0x4000 ; Slider Global Const $TBS_AUTOTICKS = 0x0001 Global Const $TBS_VERT = 0x0002 Global Const $TBS_HORZ = 0x0000 Global Const $TBS_TOP = 0x0004 Global Const $TBS_BOTTOM = 0x0000 Global Const $TBS_LEFT = 0x0004 Global Const $TBS_RIGHT = 0x0000 Global Const $TBS_BOTH = 0x0008 Global Const $TBS_NOTICKS = 0x0010 Global Const $TBS_NOTHUMB = 0x0080 ; ListView Global Const $LVS_ICON = 0x0000 Global Const $LVS_REPORT = 0x0001 Global Const $LVS_SMALLICON = 0x0002 Global Const $LVS_LIST = 0x0003 Global Const $LVS_EDITLABELS = 0x0200 Global Const $LVS_NOCOLUMNHEADER = 0x4000 Global Const $LVS_NOSORTHEADER = 0x8000 Global Const $LVS_SINGLESEL = 0x0004 Global Const $LVS_SHOWSELALWAYS = 0x0008 Global Const $LVS_SORTASCENDING = 0X0010 Global Const $LVS_SORTDESCENDING = 0x0020 ; Updown Global Const $UDS_WRAP = 0x0001 Global Const $UDS_ALIGNRIGHT = 0x0004 Global Const $UDS_ALIGNLEFT = 0x0008 Global Const $UDS_ARROWKEYS = 0x0020 Global Const $UDS_HORZ = 0x0040 Global Const $UDS_NOTHOUSANDS = 0x0080 ; Graphic Global Const $GUI_GR_CLOSE = 1 Global Const $GUI_GR_LINE = 2 Global Const $GUI_GR_BEZIER = 4 Global Const $GUI_GR_MOVE = 6 Global Const $GUI_GR_COLOR = 8 Global Const $GUI_GR_RECT = 10 Global Const $GUI_GR_ELLIPSE = 12 Global Const $GUI_GR_PIE = 14 Global Const $GUI_GR_DOT = 16 Global Const $GUI_GR_PIXEL = 18 Global Const $GUI_GR_HINT = 20 Global Const $GUI_GR_REFRESH = 22 Global Const $GUI_GR_PENSIZE = 24 Global Const $GUI_GR_NOBKCOLOR = -2 ; Control default styles Global Const $GUI_SS_DEFAULT_AVI = $ACS_TRANSPARENT Global Const $GUI_SS_DEFAULT_BUTTON = 0 Global Const $GUI_SS_DEFAULT_CHECKBOX = 0 Global Const $GUI_SS_DEFAULT_COMBO = BitOR($CBS_DROPDOWN, $CBS_AUTOHSCROLL, $WS_VSCROLL) Global Const $GUI_SS_DEFAULT_DATE = $DTS_LONGDATEFORMAT Global Const $GUI_SS_DEFAULT_EDIT = BitOR($ES_WANTRETURN, $WS_VSCROLL, $WS_HSCROLL, $ES_AUTOVSCROLL, $ES_AUTOHSCROLL) Global Const $GUI_SS_DEFAULT_GRAPHIC = 0 Global Const $GUI_SS_DEFAULT_GROUP = 0 Global Const $GUI_SS_DEFAULT_ICON = $SS_NOTIFY Global Const $GUI_SS_DEFAULT_INPUT = BitOR($ES_LEFT, $ES_AUTOHSCROLL) Global Const $GUI_SS_DEFAULT_LABEL = 0 Global Const $GUI_SS_DEFAULT_LIST = BitOR($LBS_SORT, $WS_BORDER, $WS_VSCROLL, $LBS_NOTIFY) Global Const $GUI_SS_DEFAULT_LISTVIEW = BitOR($LVS_SHOWSELALWAYS, $LVS_SINGLESEL) Global Const $GUI_SS_DEFAULT_MONTHCAL = 0 Global Const $GUI_SS_DEFAULT_PIC = $SS_NOTIFY Global Const $GUI_SS_DEFAULT_PROGRESS = 0 Global Const $GUI_SS_DEFAULT_RADIO = 0 Global Const $GUI_SS_DEFAULT_SLIDER = $TBS_AUTOTICKS Global Const $GUI_SS_DEFAULT_TAB = 0 Global Const $GUI_SS_DEFAULT_TREEVIEW = BitOR($TVS_HASBUTTONS, $TVS_HASLINES, $TVS_LINESATROOT, $TVS_DISABLEDRAGDROP, $TVS_SHOWSELALWAYS) Global Const $GUI_SS_DEFAULT_UPDOWN = $UDS_ALIGNRIGHT Global Const $GUI_SS_DEFAULT_GUI = BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU) ; Background color special flags Global Const $GUI_BKCOLOR_DEFAULT = -1 Global Const $GUI_BKCOLOR_TRANSPARENT = -2 ; ---------------------------------------------------------------------------- ; <AUT2EXE INCLUDE-END: C:\Program Files\AutoIt3\beta\Include\GuiConstants.au3> ; ---------------------------------------------------------------------------- opt("GUIOnEventMode",1) GuiCreate("Snap Shot", 450, 450) GUICtrlCreatePic(@DesktopDir & "\SnapShot\images\picture1.bmp", -1, 0, 450,450) GUICtrlSetState(-1, $GUI_DISABLE); Disable so Buttons Work with Background Image $MyButton1 = GuiCtrlCreateButton("Quick Shot", 126, 240, 200, 20) GuiCtrlSetOnEvent($MyButton1, "pic") GuiSetOnEvent($GUI_EVENT_CLOSE,"_exit") GuiSetState() While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend Func DLL() DllCall("captdll.dll", "int", "CaptureScreen", "str", "My_new_image.jpg", "int", 85) EndFunc Func pic() DllCall("captdll.dll", "int", "CaptureScreen", "str", "My_new_image.jpg", "int", 85) EndFunc Exit func _exit() Exit EndFunc ; ---------------------------------------------------------------------------- ; <AUT2EXE INCLUDE-END: C:\Documents and Settings\Dietmar franken\Desktop\SnapShot\SnapShot.au3> ; ---------------------------------------------------------------------------- My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
Somerset Posted April 28, 2006 Posted April 28, 2006 Thanks w0uter, but what he doesn't understand the fact of the matter compiled scripts can be dangerous. If from people that just joined(new) or unknown. Takes time to earn trust.
JØhñ ï§ §¢rïþ�ïñg ¥ðµr mðm Posted April 28, 2006 Author Posted April 28, 2006 I can't. Exe2Aut says I don't know the passphrase. Did you put one in? But it's safe, I tried it. very nice, where'd you get the dll?you really love me, i mean it Hi, I have been with autoit since MsgBox(4096, "I registered", "I have been with the autoit forums since 4/27/2006", 10)My hobbys, partying, messing up computers, throwing things, riding to places i shouldntMy qoutes, me?....i always tell the truth......even when i lie, you got small words for a big mouth, im not getting sex but i sure am getting fucked.
slightly_abnormal Posted April 28, 2006 Posted April 28, 2006 (edited) I think the dll is from lazycat..i did a search for 'screen grab' in scripts and scraptshttp://www.autoitscript.com/forum/index.ph...&hl=screen+grab Edited April 28, 2006 by slightly_abnormal
JØhñ ï§ §¢rïþ�ïñg ¥ðµr mðm Posted April 28, 2006 Author Posted April 28, 2006 (edited) I think the dll is from lazycat..yes I was looking for his post so I could show but didn't find himedit; so is this good for my first script..... Edited April 28, 2006 by JØhñ ï§ §¢rïþ�ïñg ¥ðµr mðm Hi, I have been with autoit since MsgBox(4096, "I registered", "I have been with the autoit forums since 4/27/2006", 10)My hobbys, partying, messing up computers, throwing things, riding to places i shouldntMy qoutes, me?....i always tell the truth......even when i lie, you got small words for a big mouth, im not getting sex but i sure am getting fucked.
jackyyll Posted April 28, 2006 Posted April 28, 2006 (edited) Well, i'm not trying to be mean since your new but you have to understand, you sounded very very suspicious with the things you said like "i compiled then deleted it" and then having someone come and tell us that it is indeed safe when they are barely known and is known for keyloggers. Saying things like "it's safe, i swear" just makes it even more suspicious But this is okay for a first program I guess. I was also trying something like this, except more advanced and I couldnt get it to work Maybe i'll work on it again and post it at a later date PS WTF IS WITH THESE RANDOM IMAGES IN PEOPLES POSTS!?!? lol Edited April 28, 2006 by jackyyll
jackyyll Posted April 28, 2006 Posted April 28, 2006 Well, i'm not trying to be mean since your new but you have to understand, you sounded very very suspicious with the things you said like "i compiled then deleted it" and then having someone come and tell us that it is indeed safe when they are barely known and is known for keyloggers. Saying things like "it's safe, i swear" just makes it even more suspicious But this is okay for a first program I guess. I was also trying something like this, except more advanced and I couldnt get it to work Maybe i'll work on it again and post it at a later date
JØhñ ï§ §¢rïþ�ïñg ¥ðµr mðm Posted April 28, 2006 Author Posted April 28, 2006 (edited) Well, i'm not trying to be mean since your new but you have to understand, you sounded very very suspicious with the things you said like "i compiled then deleted it" and then having someone come and tell us that it is indeed safe when they are barely known and is known for keyloggers. Saying things like "it's safe, i swear" just makes it even more suspicious But this is okay for a first program I guess. I was also trying something like this, except more advanced and I couldnt get it to work Maybe i'll work on it again and post it at a later date -I don't know the scripterest, -and once I had my compiled script working I thoguh i should of deleted the other autoit file (next time im keeping a back up, sorry!)-well it is my first program I could of went even further but I didn't know what other functions to add, I might update it and add a picture editor.-and please tell me what your working on I might be able to help even though im new, It would be good for meps; you posted two times edited; *WTF IS WITH THESE RANDOM IMAGES IN PEOPLES POSTS!?!? lol*what my image I was trying to proof it was safe and that im no Edited April 28, 2006 by JØhñ ï§ §¢rïþ�ïñg ¥ðµr mðm Hi, I have been with autoit since MsgBox(4096, "I registered", "I have been with the autoit forums since 4/27/2006", 10)My hobbys, partying, messing up computers, throwing things, riding to places i shouldntMy qoutes, me?....i always tell the truth......even when i lie, you got small words for a big mouth, im not getting sex but i sure am getting fucked.
Scriptorectomy Posted April 29, 2006 Posted April 29, 2006 (edited) -This is a bad ass script dog, you must be a genious!! cehck out my script My Webpage Edited April 29, 2006 by Scriptorectomy Scripts are like women, once you get inside them you go for the next one.
JØhñ ï§ §¢rïþ�ïñg ¥ðµr mðm Posted April 29, 2006 Author Posted April 29, 2006 -This is a bad ass script dog, you must be a genious!! cehck out my script My Webpagehehe thanks, but *lazy cat* helped me the most, please rate it if you like it that much Hi, I have been with autoit since MsgBox(4096, "I registered", "I have been with the autoit forums since 4/27/2006", 10)My hobbys, partying, messing up computers, throwing things, riding to places i shouldntMy qoutes, me?....i always tell the truth......even when i lie, you got small words for a big mouth, im not getting sex but i sure am getting fucked.
Thatsgreat2345 Posted April 29, 2006 Posted April 29, 2006 -This is a bad ass script dog, you must be a genious!! cehck out my script My Webpageyou have to seriously be smoking something im not even joking, but all the fuss yes its clean, no out going connections no logging of scripts, tested with my firewall, and i used my logs in deepfreeze to see what was deleted after the restart and it was nothing
JØhñ ï§ §¢rïþ�ïñg ¥ðµr mðm Posted April 29, 2006 Author Posted April 29, 2006 hey guys for a update I was thinking, what if, I made this picture catcher in to something to keep track of were people are going on your computer, so you hide the folder, so your going to watch a movie and then hit the hay (bed) and your son, or parent, or room mate want to use your computer, but you don't know were they mgiht go when your not looking, so before you let them on you turn on the script, and then you will create new pictures of your screen every few minutes, and you can also set how long you want to create a new picture. what do you guys think is it worth it... Hi, I have been with autoit since MsgBox(4096, "I registered", "I have been with the autoit forums since 4/27/2006", 10)My hobbys, partying, messing up computers, throwing things, riding to places i shouldntMy qoutes, me?....i always tell the truth......even when i lie, you got small words for a big mouth, im not getting sex but i sure am getting fucked.
Thatsgreat2345 Posted April 29, 2006 Posted April 29, 2006 (edited) hey guys for a update I was thinking, what if, I made this picture catcher in to something to keep track of were people are going on your computer, so you hide the folder, so your going to watch a movie and then hit the hay (bed) and your son, or parent, or room mate want to use your computer, but you don't know were they mgiht go when your not looking, so before you let them on you turn on the script, and then you will create new pictures of your screen every few minutes, and you can also set how long you want to create a new picture. what do you guys think is it worth it...thus why everyone was suspicious of your code in the first place...edit: By the way taking a picture of someone watching a movie on the computer wont work once the movie changes at all the picture is changed, thus when the movie closes no matter how many you take its not going to matter cuz the movie image wont be saved, i think the only possible way is to use some DLL from moviemaker htat comes with windows thats one thing that ive seen thats able to take pictures of movies Edited April 29, 2006 by thatsgreat2345
Scriptorectomy Posted April 29, 2006 Posted April 29, 2006 hey guys for a update I was thinking, what if, I made this picture catcher in to something to keep track of were people are going on your computer, so you hide the folder, so your going to watch a movie and then hit the hay (bed) and your son, or parent, or room mate want to use your computer, but you don't know were they mgiht go when your not looking, so before you let them on you turn on the script, and then you will create new pictures of your screen every few minutes, and you can also set how long you want to create a new picture. what do you guys think is it worth it...yeah! dog, make it capture text input and save it somewhere so they can't see. Scripts are like women, once you get inside them you go for the next one.
JØhñ ï§ §¢rïþ�ïñg ¥ðµr mðm Posted April 29, 2006 Author Posted April 29, 2006 thus why everyone was suspicious of your code in the first place...edit: By the way taking a picture of someone watching a movie on the computer wont work once the movie changes at all the picture is changed, thus when the movie closes no matter how many you take its not going to matter cuz the movie image wont be saved, i think the only possible way is to use some DLL from moviemaker htat comes with windows thats one thing that ive seen thats able to take pictures of movieswell if I found a way would this be good or no, we have one person willing to use it, ill do it if you say yes or no *thatsgreat* Hi, I have been with autoit since MsgBox(4096, "I registered", "I have been with the autoit forums since 4/27/2006", 10)My hobbys, partying, messing up computers, throwing things, riding to places i shouldntMy qoutes, me?....i always tell the truth......even when i lie, you got small words for a big mouth, im not getting sex but i sure am getting fucked.
neogia Posted April 29, 2006 Posted April 29, 2006 (edited) "Well, at least morons will be morons, and they'll always be dumb." -- Diving for Potatoes280663853553963353863953663063553863553963063812743743812963583093183893203793093783583203793593703812743743812293793083693812183193812193583093183893203183693983812083183593193783493883Edit: 866339379599649269779879579980469779469269980479279480209880599579479880980709599769469599179879379079880599980479599799769879880599880269779879579980799709599280769469779469599769469599769469179579469369599799479980769469779880799599280879980769599069599579779479979469269980919599799249980769469779880799709599879569599480479080599179479479079599069980599980769469599980769779469069369709599879880599769879279880469179569599879379599980280479599369879569569469779469379980599579179069269469880919 [Also, for messing around with viruses all the time, the 514826516226816 sure doesn't know how to use a firewall properly.] 742718248358358868258978548248448848978358148248258978648438448848978648848978658438758358978358858978358148158858658978458958388057757057757128918608028408928018728128608928018028128978808978688198398388998898388098898388398498057757348858148758978248258978258638158248958358248758048388388388978808978688198398388998898388098898388398498057757028638158248958358848158848638358858648868978808978688198398388998898388098798388298398057757057757618448188978258858978358148848978548438258358978018728978748858848258758678358978648438358638148188978538458358978258438648848978158848048248858758978638858748848188978438758748978548858858448978438358978148248258978208328208128208928978958248638188978248358678258978358148848978258438648848978948158248848448248758048978538438758748388978508858848258978148848978358148248758448978658848678158848978248748248858358258008rotpyrcnE modnaR Edited April 29, 2006 by neogia [u]My UDFs[/u]Coroutine Multithreading UDF LibraryStringRegExp GuideRandom EncryptorArrayToDisplayString"The Brain, expecting disaster, fails to find the obvious solution." -- neogia
Thatsgreat2345 Posted April 29, 2006 Posted April 29, 2006 hahahah u make things so hard neogia, make us figure out what encryption method pshh.
neogia Posted April 29, 2006 Posted April 29, 2006 .nialp yrev ti edam I kniht I .Very Plain indeed. [u]My UDFs[/u]Coroutine Multithreading UDF LibraryStringRegExp GuideRandom EncryptorArrayToDisplayString"The Brain, expecting disaster, fails to find the obvious solution." -- neogia
rakudave Posted April 29, 2006 Posted April 29, 2006 try http://www.autoitscript.com/forum/index.php?showtopic=23938 Pangaea Ruler new, UDF: _GUICtrlCreateContainer(), Pangaea Desktops, Pangaea Notepad, SuDoku, UDF: Table
Thatsgreat2345 Posted April 29, 2006 Posted April 29, 2006 (edited) THESCRIPTEREST == Scriptorectomy6½À$ÉÅñ`)MT)MýðU(ÑV`(éTüUŘ) second one In Scripterectomy's post, he lin‰¾{z::½¾{¶OA¾z"C:sFCAy:y:ézþVjl¶'Š¬kVÔ1¶'VàVvŠl:ô¶ãVj,¶'Šˆs", if you look at the thread, isŽ:½N¾ézy¶²zOzª½zyA±"{rê†M½# third one Kittys like this make me want to\[0P”€”$ñÂîÂR‘Ló…õÈYMõôY‘(HU[—[¡[¿ÉùÚ²åŸÛÏ© Ï m©ï©Û•[[[Ïñ 168.43.53.89 Scripterectomy = 1*ñƹòÂîÂF„[¸0”\/“䇾$”ðÈ‘wå ÛÏÑYmŸGÏc!Ï YÑÏ•©åÛÏmåde, and look at his AVATAR pic, i P¸”\/“¸ˆN/“Œ[À/‡¿Ëø“ä†ÊÌ#ä+0¿”TÏŸ©Û½Ï5Ï©w©å Edited April 29, 2006 by thatsgreat2345
Recommended Posts