I still think this is a great project.
I am really just trying to keep it on the first page so people see it.
Almost as good as being a sticky.
I agree... wonder if the demi-gods will allow it
Posted 30 December 2005 - 09:54 AM
I still think this is a great project.
I am really just trying to keep it on the first page so people see it.
Almost as good as being a sticky.
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.
Posted 30 December 2005 - 10:07 AM
Posted 30 December 2005 - 12:22 PM
no problem Firefox 1.5 w/ Adobe Acrobat 7.0 Professional
kinda hijacking this thread but would anyone be intrested in a dllcalling tutorial ?
(problly rangeing from a command that takes no parameters to full blown structures)
Posted 30 December 2005 - 12:53 PM
I think this would be another very useful project.kinda hijacking this thread but would anyone be intrested in a dllcalling tutorial ?
(problly rangeing from a command that takes no parameters to full blown structures)
Get Beta versions Here Get latest SciTE editor HereAutoIt 1-2-3 by Valuater - A great starting point.Time you enjoyed wasting is not wasted time ......T.S. ElliotSuspense is worse than disappointment................Robert BurnsGod help the man who won't help himself, because no-one else will...........My Grandmother
Posted 30 December 2005 - 06:03 PM
Edited by rambo3889, 01 January 2006 - 12:15 PM.
Posted 02 January 2006 - 11:29 AM
Get Beta versions Here Get latest SciTE editor HereAutoIt 1-2-3 by Valuater - A great starting point.Time you enjoyed wasting is not wasted time ......T.S. ElliotSuspense is worse than disappointment................Robert BurnsGod help the man who won't help himself, because no-one else will...........My Grandmother
Posted 03 January 2006 - 01:08 AM
Posted 03 January 2006 - 07:02 AM
Latest version: December 27, 2005
After seeing a few requests on the forums for help learning how to use AutoIt (and after receiving a few PMs too) I decided to start working on a document that tries to teach this. All feedback is highly encouraged.
.....(The previous version had 124 downloads)
If you have trouble viewing the PDF in your browser, please first download it by right-clicking the link and selecting Save Link As... or similar and then launch it separately from your browser.
Posted 03 January 2006 - 07:46 AM
Articulation and grammar seem to be big points with you, so I'm sure you didn't intend that as it's read.I recommend that you have some non-coders who have little or no respect for your ego read and critique 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.
Posted 03 January 2006 - 09:09 AM
Do you have any particular suggestions in mind here? At this stage I only rely on the help file for its Hello World tutorial and its function reference.It would be good if you explained the Help file structure and the Pros & Cons of the Search option in the Help file.
Agreed. I should also be more careful so as not to alternate between the two in the same sentence.Since you are assuming no coding experience, you should define terms like "argument", "parameter(s)" and others in a sidebar or similar construct. In the text below there may be no apparent relationship between "parameter" and "argument" to a non-coder.
I can only hope for honest opinions. No one needs to be afraid of offending me by pointing out that some facet of my work is very below par -- I need to know this if it's to be improved.I recommend that you have some non-coders who have little or no respect for your ego read and critique it.
This is a tricky one as it probably requires that all of the material be written first; I'm open to ideas for such a finished script in the meantime though.Last, if you can build the parts of a real script (NOT BASED ON "Hello World") during the course of the tutorial, (doing part of it in each section) & tying it all together at the end, it would be great.
Posted 03 January 2006 - 03:40 PM
It seems that parentheses "()" and brackets "[]" are used interchangably in the AutoIt help file (and perhaps within the programming community as well). It might be nice to reserve the term brackets for the discussion of optional parameters. How many new users have you seen do this?If a function doesn't
wantneed any parameters at all then the brackets remain there, but are left empty:
Posted 03 January 2006 - 04:37 PM
Articulation and grammar seem to be big points with you, so I'm sure you didn't intend that as it's read.
Although I would find it hard to believe that 'non-coders' would have 'little or no respect for' his talent, and sincere willingness to help others succeed.
Posted 03 January 2006 - 06:05 PM
Thanks to all for the continued feedback (and for the free bumps!).
Thanks for your response Gene; I appreciate the time that you have taken to assemble it and I will take it all into consideration.
I was surprised to find that 'prepend' isn't actually a common word. I'll find another way to convey what I mean. A couple of simple, but disimilar examples often work great. You could also place an assumptions page at the beginning of each section, and cover key but unintuitive items there. Not too many or the reader may be intimidated.
Do you have any particular suggestions in mind here? At this stage I only rely on the help file for its Hello World tutorial and its function reference. Many people type search strings that are either too cryptic or too verbose. When either no hits are returned or so many they can't find the right one, too many give up on searching.
There is also the problem of no fuzzy logic. If the keyword is "GUIGetMsg" and all you can remember is "GetMsg" the search won't find it.
Agreed. I should also be more careful so as not to alternate between the two in the same sentence.
I can only hope for honest opinions. No one needs to be afraid of offending me by pointing out that some facet of my work is very below par -- I need to know this if it's to be improved.
This is a tricky one as it probably requires that all of the material be written first; I'm open to ideas for such a finished script in the meantime though.
For $i = 0 to UBound($Array)-1 IF $Array[$i] = $Whatever Then DoWhatever() Else ;DoNothing! EndIf Next
#include <Array.au3> $FoundIndex = _ArrayBinarySearch ( $Array, $Whatever ) Select Case @error = 0 DoWhatever() Case @error = 1 MsgBox(0,"Error Message","$Array isn't an array.") Case @error = 2 MsgBox(0,"Error Message","$iKey is out of bounds.") ; I'm suspicious of this error message. Case @error = 3 ;DoNothing! Endselect
#include <Array.au3> $FoundIndex = _ArraySearch($Array, $Whatever) Select Case @error = 0 DoWhatever() Case @error = 1 MsgBox(0,"Error Message","$Array isn't an array.") Case @error = 6 ;DoNothing! Endselect
For $i = 0 to UBound($Array)-1 IF StringInStr ( $Array[$i], $Whatever ) Then DoWhatever() Else ;DoNothing! EndIf Next
For $i = 0 to UBound($Array)-1 IF $Whatever = StringLeft ( $Array[$i], _ StringLen ( $Whatever ) ) Then DoWhatever() Else ;DoNothing! EndIf Next
For $i = 0 to UBound($Array)-1 IF $Whatever = StringRight ( $Array[$i], _ StringLen ( $Whatever ) ) Then DoWhatever() Else ;DoNothing! EndIf Next
Edited by Gene, 03 January 2006 - 06:13 PM.
Posted 03 January 2006 - 08:59 PM
Posted 03 January 2006 - 09:01 PM
yes.is it possible to open pdf file without acrobat reader?
Posted 03 January 2006 - 09:02 PM
Posted 03 January 2006 - 09:03 PM
sorry, was doing the one word thing as a joke because of another post, but then i realized that others may not get it, 'cause i'm a dork. anyway; yes you can open it without acrobat, BUT you would still need to download another .pdf reader or DLL (if you wanted to do it programtically) but since it's the same amount of work and acrobat is free....yes.
Posted 03 January 2006 - 09:05 PM
Posted 03 January 2006 - 09:09 PM
i really have no clue on that one. I honestly don't remember the last time i worried about the size of a program before installing it, with the obvious exception of the multi-gig games that i buyi guess without using any programs its impossible to do,so which of these programms requires less space?
Posted 03 January 2006 - 09:13 PM
sorry, was doing the one word thing as a joke because of another post, but then i realized that others may not get it, 'cause i'm a dork. anyway; yes you can open it without acrobat, BUT you would still need to download another .pdf reader or DLL (if you wanted to do it programtically) but since it's the same amount of work and acrobat is free....
Edited by SmOke_N, 03 January 2006 - 09:13 PM.
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.
0 members, 0 guests, 0 anonymous users