Jump to content

Welcome to AutoIt 1-2-3


Valuater
 Share

Recommended Posts

Hi,

I get a similar but diferent error message on WinXP Pro SP2

Best, Randall

PS where is the code for the exe?

the "Return $ai_Return[0]" is the ONLY return with ( info )... in the entire script

All other returns have no INFO in the line...ei... "Return"

I have NO idea how you could get that error

???????

Thanks

8)

PS

the code has not been released as yet and may not be released due to personal information....

I have relied on my name here... and after many uses... there is NOTHING harmful in the script ( registry is not touched )

Edited by Valuater

NEWHeader1.png

Link to comment
Share on other sites

I just wanted to say you've done a GREAT job in putting this together. Although I've been using AutoIT for about a year, I've learned a few things in the time I've spent going through your tutorial. KEEP UP THE GREAT WORK!!!

Roger O."When people show you who they are, believe them.” --Mark Twain

Link to comment
Share on other sites

Hi,

To be more accurate,

Line 0 (File "C:\WINDOWS\Desktop\Autoit-123-Demo14.exe"):

For $x=1 to $FileList[0]For $x=1 to $FileList^ ERROR

Error: Subscript used with non-Array variable.

I haven't tried the new one.

Best, Randall

Link to comment
Share on other sites

that is for the demos... and they should be in "scriptdir\aHelp-Demos"

they are part of the zipped file... also the array is checked first

Func Set_demos()
    $FileList = _FileListToArray (@ScriptDir & "\Help-Demos", "*.au3", 1)
    If (Not IsArray($FileList)) and (@error = 1) Then
        MsgBox(262208, "Demo Error", "No Files\Folders Found.   ", 5)
        Return
    EndIf
    For $x = 1 To $FileList[0]
        GUICtrlSetData($List_1, @ScriptDir & "\Help-Demos\" & $FileList[$x] & "|", 1)
    Next
EndFunc;==>Set_demos

This checks the array... if no array then it should give a message box and "return"

otherwise list the files... did you unzip everything????

that is the only instance of "For $x = 1 To $FileList[0]" in the entire script

thanks

8)

Come to think of it... that array check may be wrong ( from help )

maybe it should be

If (Not IsArray($FileList)) Or (@error = 1) Then ; change the and to "Or"

Edited by Valuater

NEWHeader1.png

Link to comment
Share on other sites

i just downloaded it.. unzipped it and all the files are there

Maybe they were already there before the unzip;

Here are the files in the zip;

01--Search-Forum.au3

02--Login-HotMail.au3

03--Click-Link-in-Frame.au3

04--Post-in-AutoIt-Forum.au3

05--Toggle-Radio-Buttons.au3

06--Search-Google.au3

07--Search-Google-Button.au3

08--Search-Google-Enter.au3

09--Write-Table-to-Array.au3

10--Find-String-and-Replace.au3

11--Download-all-Images.au3

12--Fire-on-Event.au3

13--Fire-onchange-Event.au3

14--Difficult-Submit-Buttons.au3

Autoit-123-Demo15.exe

background.bmp

Beep.au3

blank.bmp

FileFindFirstFile.au3

For.au3

GUICtrlCreateButton.au3

GUICtrlCreateCheckbox.au3

GUICtrlCreateCombo.au3

GUICtrlCreateRadio.au3

GUICtrlCreateSlider.au3.au3

GUISetBkColor.au3

GUIStartGroup.au3

IconSet.icl

InputBox.au3

Lesson-1.au3

Lesson-10.au3

Lesson-2.au3

Lesson-3.au3

Lesson-4.au3

Lesson-5.au3

Lesson-6.au3

Lesson-7.au3

Lesson-8.au3

Lesson-9.au3

logo4.gif

MemGetStats.au3

MouseGetPos.au3

MouseMove.au3

MsgBox.au3

My-First-GUI.au3

ProgressOn.au3

sampleAVI.avi

SampleImage.bmp

SoundPlay.au3

SplashImageOn.au3

SplashOff.au3

ToolTip.au3

TraySetIcon.au3

TrayTip.au3

While.au3

_NowTime.au3

.. Or is this wrong zip?

But it has demo 15...

Best, randall

Link to comment
Share on other sites

Hi,

Working now;

perhaps you could warn others that you neeed "use Folder names" checked when you extract...

Can't you do all that from the exe and install/ include all those files??

best, Randall

cool... finally

well after all that... let me know what you think of the program

i thought the zip would be easier... i did not notice ANYONE else having the same problems as you

8)

Edited by Valuater

NEWHeader1.png

Link to comment
Share on other sites

  • Moderators

Overall Point Score> 1328 ( 1000 Points Max )

Err, my math hasn't always been the best... but that's a bit condescending isn't it?

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Awesome. :o

This is a great way for people to learn about autoit. Very cool.

P,S. sorry about my first exam scores not being posted. when the bar stopped at 25% i thought the script was hanging and terminated it. here is my score as from "Exam_One.txt" that was created by autoit123

2006-03-01 16:48:45 : ********** New Registry ************

2006-03-01 16:48:45 : AutoIt Screen Name> SolidSnake

2006-03-01 16:48:45 : AutoIt Member Number> 3957

2006-03-01 16:48:45 : User Location> Bayville,NJ,USA

2006-03-01 16:48:45 : ********** End Registry ************

2006-03-01 16:48:45 : Ver 1.1.0

2006-03-01 16:48:45 :

2006-03-01 16:49:11 : ********** Exam Level One ************

2006-03-01 16:49:11 : Number of Attempts> 1

2006-03-01 16:49:11 : Exam Scores> 100 ( 100 Points Max )

2006-03-01 16:49:11 : Accumulated Errors> 0

2006-03-01 16:49:11 : Point Score> 332 ( 333 Points Max )

2006-03-01 16:49:11 : ********** End Exam Report ************

Edited by SolidSnake
HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Link to comment
Share on other sites

I tried AutoIt 1-2-3 because my boss wants to learn how to use AutoIt after seeing the kinds of things I can do. However, I noticed that there are some pretty big bugs in it... at least what I have seen in just 5 minutes of using it.

If I press "Show Me Help Demos" more than once, it adds another entry for each demo.

* Example: If I press it 3 times, I will have three instances of each demo.

If I press "Run Demo" it will create two instances of the demo.

* Example: If I run the "For.au3" demo, I will have to count down from 5 to "Blast Off!" twice.

There should be a button on the GUI to turn off the voice, not just on the tray icon. The voice is hard to understand and does not add anything to the tutorial. A text box would be much more helpful.

I only got as far as the Demo Page. I will let you know if I encounter any further problems.

Edit: I could not submit my exam whether filling in all of the correct -or- incorrect answers. The button was disabled. The Next button was disabled as well.

Edited by SerialKiller
Link to comment
Share on other sites

1

If I press "Show Me Help Demos" more than once, it adds another entry for each demo.

* Example: If I press it 3 times, I will have three instances of each demo.

No ERROR

FIXED

for next release

2

If I press "Run Demo" it will create two instances of the demo.

NO ERROR

it should.... if you press it twice, you should get two seperate demos.. like anyother button you push twice ( only exception is a double mouse click )

3

There should be a button on the GUI to turn off the voice, not just on the tray icon.

NO ERROR

There was a button previously, the problem is because it is utilizing a function to read the script information, the button could not "over-ride" the other function, however the Tray-controls can,,, and do

4

The voice is hard to understand and does not add anything to the tutorial.

No ERROR

Sorry your speach system is so poor, mine is not perfect but it is understandable, i would like to find a way to have the new "Microsoft Anne" ( Annie or similar )... any ideas

5

A text box would be much more helpful.

No ERROR

better than that......... all of the text that is read , is also included in the position next to the controls in the demo to explain that particular portion... much better than a text box... 8(

6

I noticed that there are some pretty big bugs in it

you call those pretty big bugs... when you push buttons more than once... when your computer sound is not clear, when you cant seem to notice you need to register before you can submit the exam

i call that a VERY UNFAIR Review!

8)

Edited by Valuater

NEWHeader1.png

Link to comment
Share on other sites

2006-03-09 20:24:04 : ********** New Registry ************

2006-03-09 20:24:04 : AutoIt Screen Name> miko0001

2006-03-09 20:24:04 : AutoIt Member Number> 10961

2006-03-09 20:24:04 : User Location> germany

2006-03-09 20:24:04 : ********** End Registry ************

2006-03-09 20:24:04 : Ver 1.1.0

2006-03-09 20:24:04 :

2006-03-09 21:30:48 : ********** Exam Level Three ************

2006-03-09 21:30:48 : Number of Attempts> 20

2006-03-09 21:30:48 : Exam Scores> 80,75,85,80,80,80,80,85,80,80,85,80,80,80,90,95,90,90,95,100 ( 100 Points Max )

2006-03-09 21:30:48 : Accumulated Errors> 0

2006-03-09 21:30:48 : Point Score> -4 ( 333 Points Max )

2006-03-09 21:30:48 : ********** End Exam Report ************

2006-03-09 21:30:48 :

2006-03-09 21:30:48 : Overall Point Score> 612 ( 1000 Points Max )

WtH :huggles::sorcerer:;):dance:

This script rocks. Very very nice work.

Without this, i´ve never get any idea off all AutoIt-Possibilities.

My Exam III-Score sucks, but i´m a NOOB. :zorro:

Hope someday my scripting knowledge may only be 1/10 of yours.

Excuse my bad english, i´m native german.

:o Keep up the good work :geek:

best regards

Miko

Link to comment
Share on other sites

WtH :huggles::sorcerer:;):dance:

This script rocks. Very very nice work.

Without this, i´ve never get any idea off all AutoIt-Possibilities.

My Exam III-Score sucks, but i´m a NOOB. :zorro:

Hope someday my scripting knowledge may only be 1/10 of yours.

Excuse my bad english, i´m native german.

:o Keep up the good work :geek:

best regards

Miko

Thank you...

its people like you that make all my hard work worth while...

Thanks again

Valuater

8)

PS

Your English is Fine!

Edited by Valuater

NEWHeader1.png

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