Jump to content

Newbie


Recommended Posts

See, didn't I tell you we could help you?

<{POST_SNAPBACK}>

haha yes. Thank you everyone for your guidence. I appriciate how everyone spent their time and helped me get a starting point. After I get a starting point it isnt that hard to get going. Thanks to everyone and to everyone a good thanks! :ph34r:

:(

Lata till I need something else,

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

Link to comment
Share on other sites

  • Developers

Yes, that's a good idea. You can call it "Getting Started" (it's the same thing).

<{POST_SNAPBACK}>

What about calling it "Using AutoIt" ????

oh... no..... thats already in there ..... :ph34r:

Edited by JdeB

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Developers

Yes, but the main problem is that part do not introduce basic scripts and stuff...

<{POST_SNAPBACK}>

Agree its not a real tutorial.. but it does explain the basics how to create your first script etc....

Don't have the impression a lot of people really take the time to look at it before asking ....

Well, get something going and we will be happy to give comments .. :ph34r:

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

I have had many people ask me what the script is that I wrote. I am posting it so as to help anyone else out on simple script layout.

;This makes sure you dont open multiple copies of the same script.
$g_szVersion = "My Script 1.1"
If WinExists($g_szVersion) Then Exit; It's already running
AutoItWinSetTitle($g_szVersion)

Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("^!x", "mExit")

While 1
   ControlSend('Rise Or Die','','ThunderRT6TextBox1','{enter}')
   Sleep(11250)
WEnd

;While 1
;   WinActivate('Rise Or Die')
;   Send('{enter}')
;   Sleep(13500)
;WEnd

Func TogglePause()
    $Paused = NOT $Paused
    While $Paused
        sleep(100)
        ToolTip('Script is "Paused"',0,0)
    WEnd
    ToolTip("")
EndFunc

Func mExit()
    Exit 
EndFunc

The code is pretty self explanatory, but I am up to answer any questions that may be presented by those that are wondering.

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

Link to comment
Share on other sites

i'm a complete noob looking for something that will mimick two keystrokes very fast.

eg: inputting the letter 'a' into a command line followed by the key 'ENTER'

can i pull something out of the above script that will do something like that?

sorry for the noob. i read a lot, but being such a noob it went over my head.

Edited by trAse
Link to comment
Share on other sites

i'm a complete noob looking for something that will mimick two keystrokes very fast.

eg: inputting the letter 'a' into a command line followed by the key 'ENTER'

can i pull something out of the above script that will do something like that?

sorry for the noob. i read a lot, but being such a noob it went over my head.

<{POST_SNAPBACK}>

Yes you need the code to input an 'a' and then press enter? Okay tell me what the name of the control is that needs 'a' input into. Using AutoIt Spy.

Thanks,

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

Link to comment
Share on other sites

Yes you need the code to input an 'a' and then press enter? Okay tell me what the name of the control is that needs 'a' input into. Using AutoIt Spy.

Thanks,

JS

<{POST_SNAPBACK}>

i'll try to decifer what the above post meant and get back to you.

sorry again, so so noob. :ph34r:

Link to comment
Share on other sites

Let me know of anyway that I can help you!

Thanks,

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

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...