
rambo3889
Active Members-
Posts
766 -
Joined
-
Last visited
About rambo3889
- Birthday 04/08/1992
Profile Information
-
Member Title
It is I
-
Location
Denmark, Esbjerg, Tarp
-
Interests
Karate, Reading , school and Computers and of course Autoit :D
rambo3889's Achievements

Universalist (7/7)
0
Reputation
-
be aware rickroll
-
Appearently it does. And just to clarify for you Roman, that is probably not so smart. Invading peoples "privacy" how knows what sorta information that you can see on the screen? MSN talks, passwords ( e.g files open with passwords for those that have trouble remembering). Background picttures and lots of other stuff that could be private. Well i just installed Caravelle and have to say that it is very good but still i don't like the fact that my background image of myself and my trainer is sent to you just so you can get some information.
-
Nice work Zedna!!! I've always wondered if it was possible to add menu function to the system menu
-
Something like WS_POPUP?
-
Currently you check for a guimsg, then checks it value and if it is equal to GUI_EVENT_CLOSE then you exit the loop You need to check what window that caused the event and if it is the debug window either hide or guidelete it. if it is the parent window then exit the whole program
-
Use $ES_PASSWORD as the style for the input
-
Lectio 1) For making buttons do something there are two normal options : Either use the GUI messages that are captured by guigetmsg() or event. As i can see you've chosen to use the method guigetmsg. It is actually very simple just take the variable that you assign to the button save ( in this case $Button1) and create a new switch case statement: While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 run("notepad.exe");Just to show you that the button now does something ;Save in whatever way you'll want to i.e ini's,registries or something else EndSwitch WEnd 2) For the saving part i would save the username and password to a file or something. You'll have to autoload these values when the script is run so that it uses the values from a previous save 3) When sending the data for your login you are actually sending the handle to the guicontrol send($input1), you previously assigned a guicontrol to input1 so you'll have to read what ever data that the desired input has. This can be done by using the function Guictrlread($input1) 4) Bare bliv ved med at prøv dig frem og det skal nok lykkedes ellers er forummet her et rigtigt godt sted at lære + hjælpefilen
-
How to get the number of replies in a topic?
rambo3889 replied to TehWhale's topic in AutoIt General Help and Support
#include <Inet.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 468, 154, 279, 254) $Edit1 = GUICtrlCreateEdit("http://www.autoitscript.com/forum/index.php?showtopic=81925", 8, 24, 449, 89, BitOR($ES_AUTOVSCROLL,$ES_AUTOHSCROLL,$ES_WANTRETURN,$WS_VSCROLL)) $Label1 = GUICtrlCreateLabel("Topics to watch for new replies", 160, 8, 151, 17) $Button1 = GUICtrlCreateButton("Engage Topic Watch", 8, 120, 139, 25, 0) $Button2 = GUICtrlCreateButton("Disengage Topic Watch", 320, 120, 139, 25, 0) GUICtrlSetState(-1, $GUI_DISABLE) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 If Not StringInStr(GUICtrlRead($Edit1), @CRLF) Then $Source = _INetGetSource(GUICtrlRead($Edit1)) $Number=1 While StringInStr($Source, 'return false;">#'&$Number&'</a>') $Number=$Number+1 WEnd MsgBox(0, "Replies", $Number-1) EndIf EndSwitch WEnd The bug about its adding one to the real count is something you must fix by yourself ( meaning that i'm lazy) -
Is there a way to make that script easier?
rambo3889 replied to Belfigor's topic in AutoIt General Help and Support
Im not 100% sure but i suppose this should work : Dim $JC[2][13] = [[698, 699, 700, 701, 702, 702, 702, 702, 702, 702, 702, 702, 702],[451, 452, 452, 452, 443, 444, 445, 446, 447, 448, 449, 450, 451]] Dim $array[2][30] $x = 697 $y = 438 $COLOR = 0x000000 $i = 0 $Pix = 0 $J = 0 Search() if JTest() Then MsgBox(0, "Found letter", '"J"') Func Search() For $xi = 0 To 6 For $yi = 0 To 19 If PixelGetColor($x, $y) = $COLOR Then $array[0][$Pix] = $x $array[1][$Pix] = $y $Pix = $Pix + 1 EndIf $y = $y + 1 Next $y = 438 $x = $x + 1 Next EndFunc ;==>Search Func JTest() for $1=0 to 12 if $array[0][$1] = $JC[0][$1] Then if $array[1][$1] = $JC[1][$1] Then if $1 = 12 Then Return True Else ExitLoop EndIf Else ExitLoop EndIf Next Return False EndFunc ;==>JTest -
How to get Pixels X,Y coordinate?
rambo3889 replied to Belfigor's topic in AutoIt General Help and Support
1: No it wil create 20 entries which goes from 0 to 19 and has 2 sub items which goes from 0 to 1 . Arrays: A maximum of 64 dimensions and/or a total of 16 million elements from the FAQ note 15 about limits. I recommend that you read this page, it will give you a quite good knowlegde of arrays : http://www.autoitscript.com/wiki/Arrays -
Sorry my bad, . I know that microsoft has made some programs with speech recognition, which have used in the past, but i dont know if it would be possible to use an object or some dll from it
-
Before making a topic in the support forum it would be appreciated if you searched the forum. There are numerous post which has examples of this. just like this one http://www.autoitscript.com/forum/index.ph...2895&hl=tts