Jump to content



Photo

Welcome to AutoIt 1-2-3


  • Please log in to reply
916 replies to this topic

#41 Valuater

Valuater

    www.PayFreeWireless.com

  • MVPs
  • 11,078 posts

Posted 27 February 2006 - 05:26 PM

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, 27 February 2006 - 05:30 PM.

Posted Image

Clic The Pic!!!






#42 Valuater

Valuater

    www.PayFreeWireless.com

  • MVPs
  • 11,078 posts

Posted 27 February 2006 - 07:09 PM

Update

Ver 1.0.8 Feb 27, 2006

Fixed - Spelling
Fixed - Reduce Memory
Fixed - PacMan
Minor bugs

8)

Posted Image

Clic The Pic!!!


#43 rogerd2u

rogerd2u

    Wayfarer

  • Active Members
  • Pip
  • 72 posts

Posted 27 February 2006 - 07:22 PM

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

#44 randallc

randallc

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 1,902 posts

Posted 27 February 2006 - 08:59 PM

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

#45 Valuater

Valuater

    www.PayFreeWireless.com

  • MVPs
  • 11,078 posts

Posted 27 February 2006 - 09:14 PM

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, 27 February 2006 - 09:17 PM.

Posted Image

Clic The Pic!!!


#46 randallc

randallc

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 1,902 posts

Posted 27 February 2006 - 11:32 PM

Hi,

"scriptdir\aHelp-Demos"


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

No such file even in the zip!
Best, Randall

#47 randallc

randallc

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 1,902 posts

Posted 28 February 2006 - 07:23 AM

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

#48 randallc

randallc

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 1,902 posts

Posted 28 February 2006 - 08:04 AM

No,
Same error;
I thought you said
""scriptdir\aHelp-Demos""
should be there in the zip? - not in the list above, nor in the zip!?
Randall

#49 randallc

randallc

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 1,902 posts

Posted 28 February 2006 - 08:11 AM

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

#50 Valuater

Valuater

    www.PayFreeWireless.com

  • MVPs
  • 11,078 posts

Posted 28 February 2006 - 08:37 AM

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, 28 February 2006 - 08:39 AM.

Posted Image

Clic The Pic!!!


#51 poisonkiller

poisonkiller

    You reached -1 posts!

  • Active Members
  • PipPipPipPipPipPip
  • 535 posts

Posted 28 February 2006 - 01:21 PM

Still same Return error :o .

What im doing wrong?

#52 randallc

randallc

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 1,902 posts

Posted 28 February 2006 - 02:39 PM

Hi,
@Val; looks great!
Only 500 scripts to go! - You have a life's work ahead here.....
Best, Randall

#53 SmOke_N

SmOke_N

    It's not what you know ... It's what you can prove!

  • Moderators
  • 15,729 posts

Posted 28 February 2006 - 09:17 PM

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.


#54 Valuater

Valuater

    www.PayFreeWireless.com

  • MVPs
  • 11,078 posts

Posted 28 February 2006 - 09:44 PM

Update

Ver 1.1.0 Feb 28, 2006

Completed...

8)

Posted Image

Clic The Pic!!!


#55 poisonkiller

poisonkiller

    You reached -1 posts!

  • Active Members
  • PipPipPipPipPipPip
  • 535 posts

Posted 01 March 2006 - 12:18 PM

My computer sucks, because its not working!!! :o :geek: ;)
Still same error.

Edited by poisonkiller, 01 March 2006 - 12:19 PM.


#56 FuryCell

FuryCell

    A cornered fox is more dangerous than a jackal!

  • Active Members
  • PipPipPipPipPipPip
  • 2,437 posts

Posted 02 March 2006 - 09:41 PM

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, 02 March 2006 - 09:41 PM.

HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.

#57 SerialKiller

SerialKiller

    I script by the dark of night

  • Active Members
  • PipPipPipPipPipPip
  • 374 posts

Posted 09 March 2006 - 12:13 AM

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, 09 March 2006 - 12:17 AM.

Coming to a town near you....

#58 Valuater

Valuater

    www.PayFreeWireless.com

  • MVPs
  • 11,078 posts

Posted 09 March 2006 - 12:53 AM

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, 09 March 2006 - 12:53 AM.

Posted Image

Clic The Pic!!!


#59 miko0001

miko0001

    Seeker

  • New Members
  • 3 posts

Posted 09 March 2006 - 09:03 PM

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

#60 Valuater

Valuater

    www.PayFreeWireless.com

  • MVPs
  • 11,078 posts

Posted 09 March 2006 - 10:53 PM

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, 09 March 2006 - 10:54 PM.

Posted Image

Clic The Pic!!!





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users