
iZafiro
Active Members-
Posts
27 -
Joined
-
Last visited
iZafiro's Achievements

Seeker (1/7)
0
Reputation
-
Hello. I was looking at the demos for this UDF and DLL, and it REALLY WORKS GREAT! WOW. :shocked:WOWWOW. :shocked:WOW WOW WOW. I can't say anything else other than WOW. However, the UDF or DLL (I'm not so sure which one) doesn't really work on my computer I've downloaded the latest version of the DLL (on your first post) and put it in C:\WINDOWS\system32\Prospeed.dll I've also downloaded the latest version of your superb UDF (as seen in your demos) and put it in C:\Program Files\AutoIt3\Include\Prospeed.au3 and C:\Program Files\AutoIt3\beta\Include\Prospeed.au3 However, when I put Lakes' bees example in SCiTE and try to run it, C:\Testing\d.au3(25,49) : ERROR: Background() called with wrong number of args. Background(@scriptdir & "\Hintergrund.jpg", 0, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\beta\Include\Prospeed.au3(387,64) : REF: definition of Background(). Func Background($S_FILE, $S_POSX, $S_POSY, $N_WIDTH, $N_HEIGHT) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Testing\d.au3 - 1 error(s), 0 warning(s) comes out through the error console. Ditto with Beta Run and Beta Compile. Even if I press Continue Anyway (while compiling), the .exe will still give me the error. Am I doing anything wrong?
-
Whoa, nice way of doing a file format! Haha. Great work. B.T.W, there's a type in your "capture" program. It should be Alt+Shift+F3, not F3.
-
Hi. In AutoIt, this is called Execute(). Look it up. Also, it seems that you're trying to make a graph function. Try this: http://www.autoitscript.com/forum/index.php?showtopic=36254 Regards iZafiro
-
Hi. Yes like what herewasplato said, Sleep() in loops are usually good Also, for the activation of the Communicator mode, Send("!{ENTER}") will press Alt+Enter Send("{ALT}{ENTER}") will press Alt then Enter separately. Try this script ; to ensure that Bluetooth is active first ; Declare globals Dim $state; Run the Jaws executable to load..... Run("C:\Program Files\Freedom Scientific\JAWS\7.10\jfw.exe") ; ... and wait for window to show. WinWait("JAWS") ; Wait for the Jawsindow to minimise, which it will always do. Do Sleep(100) $state = WinGetState("JAWS", "") Until BitAND($state, 16) ; Now run WTC in 32 Braille cell mode for Notetakers Run("C:\wtc\wtc.exe b32") ; Wait till window is active WinWaitActive("WTC") ; Wait a while for program to load Sleep(5000) ; Just make sure that program is active WinActivate("WTC") ; Send the Alt and Enter key press to start Communicator mode Send("!{ENTER}") P.S. What's with the ; to ensure Bluetooth is active first on top? Edit: Yep welcome, Robbie. Oh and if this is supposed to run everytime the deaf and blind computer user's computer starts up, you could put a shortcut to this script in the Startup folder or put a registry key somewhere. (I'm not really good with registry keys but I know there's one where you can put a path to a program and it will run it everytime the computer starts)
-
Smtp Mailer That Supports Html And Attachments.
iZafiro replied to Jos's topic in AutoIt Example Scripts
That's weird! http://help.yahoo.com/help/us/mail/pop/pop-28.html says it is smtp.mail.yahoo.com, 465 and SSL is on! http://help.yahoo.com/help/uk/mail/pop/pop-28.html says it is smtp.mail.yahoo.co.uk, 587 and doesn't say whether it uses SSL or not! I guess that different mail locations use different SMTP servers, now I'm confused! $rc = _INetSmtpMailCom("smtp.mail.yahoo.com", "testSender", "hanonczernyhanon@yahoo.com", "craftomaniac@gmail.com", "testSubject", "testMessage", "", "", "", "hanonczernyhanon", "*********", 465, 1)oÝ÷ ÙÚ²{lyé£ +èêÚºÚ"µÍÌÍÜÈH ÌÍÜÈHÒS]Û]XZ[ÛÛJ ][ÝÜÛ]ÛXZ[ÛÛI][ÝË ][ÝÝÝÙ[][ÝË ][ÝØÜYÛX[XXÐÛXZ[ÛÛI][ÝË ][ÝØÜYÛX[XXÐÛXZ[ÛÛI][ÝË ][ÝÝÝÝXXÝ ][ÝË ][ÝÝÝYÜØYÙI][ÝË ][ÝÉ][ÝË ][ÝÉ][ÝË ][ÝÉ][ÝË ][ÝØÜYÛX[XXÉ][ÝË ][ÝÊ][ÝË KJ (Gmail sending) works though. Waitaminit, http://help.yahoo.com/mail/pop/pop-28.html I think that means that if you want to use SSL, the port is 465. If not, the port is 587. I'm really really really confused now. -
Smtp Mailer That Supports Html And Attachments.
iZafiro replied to Jos's topic in AutoIt Example Scripts
Wow!! Works perfect! Thanks! I found this out: GMAIL SMTP server = smtp.gmail.com IP Port = 465 (as you said) SSL = 1 (as you said again) YAHOO SMTP server = smtp.mail.yahoo.com IP Port = 465 (same as Gmail's) SSL = 1 (also same as Gmail's) I couldn't find Hotmail's SMTP server, IP Port or whether it uses SSL either. Can anyone tell us? :) EDIT: Fixed typo: smtp.gmail.com not smtp.google.com -
bmp jpg gif png tif interconverter dll?
iZafiro replied to iZafiro's topic in AutoIt General Help and Support
Wow thanks! works fine now! -
And also, did you say TAB every 2.25 - 2.5 seconds? Then instead of Func Tab() Sleep(Random(225,250)) Send("{TAB}") EndFuncoÝ÷ Øl¥u·ºÚ"µÍ[ÈX BÛY [ÛJLL JBÙ[ ][ÝÞÕPI][ÝÊB[[
-
Oh! Yay, my hard work has paid off (partly) Erm, I figured how to get a checkbox to be transparent just go GUICtrlSetBkColor($checkboxid, 0x00000020) after the checkbox, and Voila! Hmm, but too bad GUICtrlSetBkColor can't be used with combos... (it's mentioned in the help file) So, any help?
-
Help...... I'm coding a autosender/autoclicker/autopresser/take screenshot program, and the functions are coming well.. Now I'm working to make the GUI look nicer... Okay, I made a background, set the colours (I'm Singaporean, so I use British english) and now I'm getting my buttons, checkboxes, labels, and combos to be transparent.. Labels: done Buttons: done But no matter what I try, neither my checkboxes nor combos turn transparent! help? Here's one of my checkboxes and combos And btw, I like to keep my codes small, so I always check up the value of constants in the help file $WS_EX_TRANSPARENT = 0x00000020 $checkbox = GUICtrlCreateCheckbox("", 7, 27, 13, 13, -1, 0x00000020) ; eh I found that the only way to get the text beside the checkbox to be transparent is to create a separate label $combo = GUICtrlCreateCombo("1", 80, 163, 100, -1, 0x00000020) GUICtrlSetData($spacing, "2|3|4|5", "1") help?
-
Ahahaha... Can you help me propose to my pie? AHAHAHAHAH anyway, here's another version which allows you to keep getting excuses.. + a few of my own.. Excuser.au3
-
@rakudave o.0 WOOOWWW!!!! I was searching for 'virtual desktop' (I wanted a program) at Google, and I was very surprised that it turned up a site at autoitscript.com!!! Being an AutoIt3 fan, I jumped on it ..... WOOOW THANKS If this forum had a +Thanks function, I would want to give you an infinite number... @razorM Maybe you could add a little line in each of the prevdesk and next desk functions, a line that screenshots and stores in a little folder somewhere, so to display the gui, you don't have to scroll through again... .. Hmm just an idea.... I'm not sure if it would work.....
-
I agree.. If not, you could try using controlclick? I'm not so sure, I havent been able to use it either; I just don't understand the syntax..... Or maybe *cough cough* you could try to use user32.dll... I'm 'even more' not so sure on this one.... Hmm... lemme guess... is your game by any chance MapleStory? Just guessing,
-
Hmm... why toggle? Just simply use functions to send the text! Or did I get you wrong? This code here send the respective text when you press the keys (I don't know what the enter then sleep is for, but I added it in anyway) HotKeySet("{UP}", "Send1") HotKeySet("{DOWN}", "Send2") HotKeySet("{LEFT}", "Send3") HotKeySet("{RIGHT}", "Send4") HotKeySet("{+}", "Terminate") Func enter(ByRef $x) If $x = 1 Then Send("{ENTER}") Sleep(100) ElseIf $x = 2 Then Sleep(100) Send("{ENTER}") EndIf EndFunc Func Send1() enter(1) Send(" cheese steak jimmy's ") enter(2) EndFunc Func Send2() enter(1) Send(" robin hood ") enter(2) EndFunc Func Send3() enter(1) Send(" lumberjack ") enter(2) EndFunc Func Send4() enter(1) Send(" rock on ") enter(2) EndFunc Func Terminate() Exit EndFunc Cheers, I hope I understood you right..
-
bmp jpg gif png tif interconverter dll?
iZafiro replied to iZafiro's topic in AutoIt General Help and Support
When they gave examples in C++, I could only try to understand why they call dll functions with for example PVCloseImage(PVHandle) and not DllCall(something something) Any help?