SvenP Posted May 11, 2005 Posted May 11, 2005 For those who are curious: I will "raise a corner of the veil" about the new developments in AutoIt3 scripting: #include <GUIConstants.au3> $oIE = ObjCreate("Shell.Explorer.2") GUICreate ( "Embedded Web control Test", 640, 480 ) $GUIActiveX=GUICtrlCreateActiveX ( $oIE, 10, 10 , 500 , 400 ) GUISetState () $oIE.navigate("http://www.autoitscript.com") While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend GUIDelete () Exit This code actually works in my 'alpha' version of AutoIt3: Embedded ActiveX controls in GUI's WITHOUT the need of external DLL's. Any control can be used, even VB's Forms 2.0 controls. A screenshot from the script above: Please no questions about this feature yet. It won't be included in AutoIt3 before all work on the current beta release is done. When you all help us to test the current beta, then it might speed up the developments for the next version ;-) Regards, -Sven
Josbe Posted May 11, 2005 Posted May 11, 2005 Very nice feature. Excellent! No questions. Keep up your good work. AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
jpm Posted May 11, 2005 Posted May 11, 2005 Awesome, Where the name ActiveX come from? could be a confusion with windows ActiveX or Not ?
layer Posted May 11, 2005 Posted May 11, 2005 Awesome, Where the name ActiveX come from?could be a confusion with windows ActiveX or Not ?<{POST_SNAPBACK}>I'm assuming it's Windows ActiveX which enables controls embedded into browsers... Don't think theres any confusion FootbaG
w0uter Posted May 12, 2005 Posted May 12, 2005 all i got to say is ... *silence* ... wow ... im ... speechless ... My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
SvenP Posted May 12, 2005 Author Posted May 12, 2005 And this is how you could build a web browser using native AutoIt3 script commands: AutoItWebBrowser.html Screenshot: -Sven
layer Posted May 12, 2005 Posted May 12, 2005 This would eleminate the need for cweb.dll for my HTML CG and many other projects people have created! Keep it up FootbaG
SlimShady Posted May 12, 2005 Posted May 12, 2005 Great! A year ago I was dreaming about this. This would be perfect for my project (which I haven't started yet).
datskat Posted May 12, 2005 Posted May 12, 2005 Great job ! ... Autoit just keeps getting better & better
kjactive Posted May 12, 2005 Posted May 12, 2005 Great - a lot of godies can be included into autoit3 gui, can't wait... kjactive Au3PP 4.1 - Autoit3 preprocessor, optimize speed, performance to scripts and do executes....[/url]Au3Calibur - Create libraries of commonly used code excerptsWords manipulate UDF, functions that is lent from the rexx language, topics and index file includedCustomDialog UDF to include custom made dialogs like a extended colorpick requester to scripts...[url="ftp://fritidshjemmet.com/Autoit3/SysColor.zip"]SysColor UDF a low level color library to manipulate RGB and Hex values...Shell32 UDF to Automate Windows® operating tasks from native dialog and Wizards browsers... Optimized the CodeWicard with options to generate browser code etc...
Lazycat Posted May 12, 2005 Posted May 12, 2005 Just great! Actually we should speed up COM testing for approach this feauture coming... Damn, how many interesting and how few time now... Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s])
steveR Posted May 13, 2005 Posted May 13, 2005 Awesome work! This will open up so many doors. AutoIt3 online docs Use it... Know it... Live it...MSDN libraryglobal Help and SupportWindows: Just another pane in the glass.
SvenP Posted May 14, 2005 Author Posted May 14, 2005 Guys, I guess I have to stop this ActiveX development. Because using this feature I have obtained access to Microsoft's FORMS 2.0 designer mode WITHIN AutoIt3 script: I can also add Forms 2.0 controls like Buttons, Checkboxes, Spinbuttons, etc. Event-handling is also possible on each control (MouseMove, MouseClick, etc.) I am really sure that jpm will not like these things, because it could make his years work on AutoIt's GUI obsolete within a few days. And not to mention the great work CyberSlug did on his AutoBuilder. This is the AutoIt script for creating the screenshot above. AutoIt_Forms2.0.au3 It was a nice experiment, but it makes AutoIt look more like a programming language than a scripting language. That is not according to Jon's intention. -Sven
steveR Posted May 14, 2005 Posted May 14, 2005 That's too bad. I for one would like to see AutoIt become more than just a scripting language. Nowadays there just seems to be a thin line between scripting and programming. Oh well AutoIt3 online docs Use it... Know it... Live it...MSDN libraryglobal Help and SupportWindows: Just another pane in the glass.
w0uter Posted May 14, 2005 Posted May 14, 2005 (edited) i dont see why autoIT cant be em BOTH :"> Edited May 14, 2005 by w0uter My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
quaizywabbit Posted May 14, 2005 Posted May 14, 2005 It was a nice experiment, but it makes AutoIt look more like a programming language than a scripting language. That is not according to Jon's intention. -Sven<{POST_SNAPBACK}>I don't see why this would be a problem, unless we were forced to use it instead of the existing GUI functions. Aside from the normal debugging/testing/fine tuning, I doubt you added anything that would break existing scripts, or render useless anyone's work. Not everyone understands COM (I sure don't), or even have the time or patience to sit down and learn it.I'd much rather Have it and not need it, then Need it and not have it. [u]Do more with pre-existing apps![/u]ANYGUIv2.8
Lazycat Posted May 14, 2005 Posted May 14, 2005 (edited) because it could make his years work on AutoIt's GUI obsolete within a few days.Don't think so. It's looks like appearing of DllCall make obsolete half of Autoit functions! Yes, I can make many things with it, but it's much simpler to use just one simple Autoit function. The same with this control: current GUI works on any windows without any additional libraries, it's have convenient and simple controls handling, and much more understandable for newbies than working with COM controls. I see main goal of this control is only handling complex needs like browser control and so. Very pity if we will be deprived this Just my two coins. Edited May 14, 2005 by Lazycat Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s])
layer Posted May 14, 2005 Posted May 14, 2005 Yea, I was thinking the same thing... We can't just "let this go"... This is a big oppertunity, why don't we look into it a little more rather then just saying, forget about it. Or maybe even just halt it until the dev's can get more time on there hands, we have to respect their lives too you know! FootbaG
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now