Search the Community
Showing results for tags 'AutoItObject'.
-
Hi there, while I created an example script to generate and execute a function during runtime, I stumbled across a neat way to share data between running autoit scripts. This is done using the amazing magic of AutoItObject_Internal . (You'll need at least Version 3.0.0 of AutoItObject_Intern...
- 18 replies
-
- idispatch
- irunningobjecttable
-
(and 3 more)
Tagged with:
-
First of all I've been searching on the forum, and while there's been done something like this with: https://www.autoitscript.com/forum/topic/141004-comobject-proxy-seamless-windows-script-control-autoitobj/ I could not find any solution to my predicament. Is it possible to throw an...
-
- autoit
- javascript
-
(and 2 more)
Tagged with:
-
If you don't like dealing with Scripting.dictionary you might want to try out this thing I whipped up yesterday evening and this morning. Basically just a simple wrapper around Scripting.dictionary to make the API a little bit less stupid. By "stupid" I mean "not like the awesome Python dict API"...
- 3 replies
-
- dictionary
- associative array
-
(and 2 more)
Tagged with:
-
Hi everybody! Here is my new super tool! It's an AutoItObject TCP Class! Very simple to use, with example and complet decumentation (Made with NaturalDocs) There are two classes: Client, and Server. - The data are encrypted! - The server can handle multiple clients - Data buffering, if you sen...
-
Hi guys, I've been working with AutoItObject and I'm curious about a thing. This code: #include 'AutoItObject.au3' _AutoItObject_Startup() Global $_oBasicObject = _AutoItObject_Create() _AutoItObject_AddProperty($_oBasicObject, 'prop', $ELSCOPE_PUBLIC, _AutoItObject_Create($_oBasicObject)) Ok...
-
In my >previous adventures, I got a bare-bones AutoIt proxy object injected into MSScriptControl.ScriptControl. The proxy had just enough functionality that a basic form application could be coded from Javascript. That was kind of fun but the ScriptControl is old and iffy, its environment is like...
-
I've been thinking about this for the last couple of weeks, and I've finally got around to putting together a proof of concept. As far as OOP goes, Javascript is a pretty damn good language -- very flexible, but lets look at some code. Here is a two button form for AutoIt written in Javascript....
-
I want to assign to an AutoItObject property without hardcoding the property name. In Javascript it would look like: obj['propertyName']=103; I can read access a property using Execute: Global $ppt_val=Execute('$obj.propertyName') But I cannot assign with: Assign('obj.propertyName',103,4);...
- 2 replies
-
- AutoItObject
- JScript
-
(and 1 more)
Tagged with:
-
Hi, I made an AutoIt offline web server, inspired by TiddlyWiki personal web notebook. Offline because its purpose is serving locally so we can write local files via any web browser. Just like what TiddlySaver do but without irritating security warning and no cross-domain xhr limitation. Unlike web...
-
- web server
- AuCGI
-
(and 4 more)
Tagged with:
-
I am using I have created an object and I would like other object to inherit the first one. Here is the code: #include "AutoitObject.au3" Opt("MustDeclareVars", 1) ; Error monitoring Global $oError = ObjEvent("AutoIt.Error", "_ErrFunc") ; Initialize AutoItObject _AutoItObject_StartUp() ; Crea...
-
I am restructuring Jos' SciTEConfig to allow more control over SciTE. I would greatly appreciate if you would run it on your machine and tell me if it presents an accurate picture of your current SciTE configuration, please. This is not intended to replace the current SciTEConfig. This is jus...
- 47 replies
-
- SciTE Customizer
- SciTE
-
(and 2 more)
Tagged with: