
gammasts
Active Members-
Posts
33 -
Joined
-
Last visited
Everything posted by gammasts
-
Hey, It's been a long time since I've browsed the forums. I'll try to find the source code for it, I probably still have it somewhere. If you can send me an IM on MSN or something, or just PM to remind me.
-
I noticed this before in your fileman, but found either a problem or something really odd. When I would do a screen capture, it does not capture any bubble traytips that come up. Yet, when I do a regular print screen, I get it in the clipboard.
-
Sorry for bumping this, but this is exactly what I need. So it is in any way possible at all to retrieve the text from the balloon tip? The code you posted Valik works for the balloon I am trying to retrieve from, but I really need the text, in any way possible.
-
Bump?
-
Hey, I am trying to retrieve the currently playing song from iTunes, unfortunetly I find any other way to retrieve it except from COM. I don't know though, how to deal with this one particular COM function though So far I have this and it all works fine: $iTunesx = ObjCreate("iTunes.application") $iTunesx.PlayPauseIt will open iTunes and then hit play/pause. The one function though requires a parameter to store the track name in. Here is the documentation from the help file Apple provides of iTunes COM stuff: How would I be able to retrieve this info through AutoIt? (If you want the COM SDK stuff and help file for it: http://developer.apple.com/sdk/itunesvisualsdk.html)
-
The program uses a normal richedit box for the text, which I can read from. However, the side panel there is a type of Internet Explorer window that displays the information (that way it can have pictures and different types of text), but it isn't a webpage so I can't recreate the page in a separate window and use COM like the other stuff. How can I retrieve the text/source from this window?
-
I have a version of Sha-1 hashing in a dll. I will add md5 next to it, so that would be another way to get it. I wouldn't try writing an md5 algorithm in AutoIt, heh. http://www.autoitscript.com/forum/index.php?showtopic=12455 That is for the Sha-1 dll.
-
Here is a dll and autoit functions for hashing strings and files using Sha-1. Func _Sha1($string) $result = DllCall("au3sha1.dll", "str", "HashString", "str", $string) return $result[0] EndFunc Func _Sha1File($file) $result = DllCall("au3sha1.dll", "str", "HashFile", "str", $file) if $result = 0 Then SetError(1) EndIf return $result[0] EndFunc Original code in C++ from Dominik Reichl at code project. Changed to a dll for usage of AutoIt by gammasts and ZeqMacaw. Let me know if you want the dll source code. Edit: Added the error for the file to it. It will return error 1 if the file is not found. Have fun hashing. au3sha1.dll au3sha1.au3
-
How to Complete a Radial and press the Next Button
gammasts replied to PerryRaptor's topic in AutoIt General Help and Support
ControlCommand("ICS Viewer 6.0 Setup", "", "Button2", "uncheck") That should do it. To check a box, use check instead of uncheck -
I have an array of items created: $itemarray[$i] = GUICtrlCreateListViewItem($itemname,$listview) and I want to be able to use OnEvent so when the item is selected or clicked on, it triggers the OnEvent: GUICtrlSetOnEvent($itemarray[$i], "ListItemAction") However, I want each item to use the same function, but pass $i when it does so. The function: Func ListItemAction($incitem) will take that and what not. Is it possible to have the SetOnEvent's second parameter: ListItemAction($i)?
-
Solution: #80964 It works fine. I suggest for everyone to use that method.
-
And I see why. In the controlsendplus, in order to get the shift key working, it uses the Send command to send shift key down and shift key up. The whole problem about that, is that when the RDC is minimized, send does not work. That is why I use control send. I edited controlsendplus, to use controlsend instead of send, but that wont work, because controlsend cannot send the shift. Is there a dll way to send it?
-
Well see, I would like to tell you that it all worked out except.... On my local tests, it works! However, this application is not for local use. The application sits on a server in Texas. The only way to control the server, is via Remote Desktop Connection. When I have the window infront of me, and I execute it, it works fine. When I have the RDC minimized or disconnected, it goes back to a - instead of _ o_O
-
That doesn't work either. Still makes a -
-
Hey, I am trying to dump text into a window. This window seems to be very special from all the rest. For one, the only way I can get text into it, is by ControlSend. This isn't a big problem though. The problem, is that if I send _ to it, it comes up as -. I have tried ascii, but then I realized this window doesn't take Alt + num codes. I have tried +- and +_ nothing, and {Lshift down} etc. Is there any other ways of making a _? Someone who does C++ told me that there is something called VkKey and it sends the signal that windows gets from the keyboard, or something. Help?
-
this is a bump cause this still doesn't work. maybe someone could try to figure out something, read the post carefully
-
ok I tried it. It does not work in game. Perhaps there is another way to draw it or something? If you can find a way let me know.
-
latest version works for me. hmm wierd k, ill play around with the script.
-
I get an error on line two about unknown function
-
sounds good, ill take a try with it later Thanks for the help
-
Is there a way to display an image on top of a game window? For instance I want to create a script that will display an image saying enemy somewhere on the screen when the center of the screen point is a certain color. Is there a function or something? An example would be nice.
-
could you help explain the COM side and what it involves or what it is about?
-
Can this make dlls that work for mIRC? In mirc you use dlls like: $dll(<dll>,<function>,<parameters>) and get something back
-
Hmm, I implymented your script, but it is still a no go. It works fine when I am looking at it, but when I don't have a remote connection to the server nothing happens. I have also tried scriptit before this, and the same exact things happen. Any way I can send it to the hwnd? And, wtf is DirtyBanditos talking about?
-
Ok here is the scenario: My clan has a halo dedicated server. The dedicated console looks like a command prompt. The title of it is Halo Console (1) I can script up a script that will send the text: sv_say "Test" to it. I compiled it to exe. I am a expert mIRC scripter so I know what I am doing for mIRC. I have mIRC run the exe on command of !eg haloce. If I remote into the server and am staring at the screen, and someone executes it remotely, it works fine. If I execute it locally it works fine. If I have remote minimized or closed it doesn't work. I have figured that it isn't mIRC and it does run the file, just nothing happens. WinActivate("Halo Console (1)") Send("sv_say ""Test""")