McGod 0 Posted May 15, 2006 Pretty much I want to be able to have a compiled script read a .au3 or .ax3 The au3 will change so i need it to read and excute. Anybody have ideas? [indent][center][u]Formerly Chip[/u][/center]~UDFs~[/indent][u]IRC.au3 - Allows you to connect to IRC ServersINetCon.au3 - Connects/Disconnects/Check Status of InternetHardware Key - Creates a unique hardware hashScriptComm - Allows you to communicate between scripts using WM_COPYDATA[/u][indent]~Programs~[/indent][indent]SimonAu3ForumsIRC Bot~Web Site~Web Autoit Example[/indent][indent][b][/b][/indent][u][/u] Share this post Link to post Share on other sites
Thatsgreat2345 0 Posted May 15, 2006 (edited) you can just do a fileread on it, only for .au3 not .a3x's Edited May 15, 2006 by thatsgreat2345 Share this post Link to post Share on other sites
ChrisL 13 Posted May 15, 2006 See if this post has the answerhttp://www.autoitscript.com/forum/index.php?showtopic=25776Basically it depends on how complicated you want to make it but your looking at something like RunWait(@AutoItExe & ' /AutoIt3ExecuteScript ' & 'temp.au3') [u]Scripts[/u]Minimize gui to systray _ Fail safe source recoveryMsgbox UDF _ _procwatch() Stop your app from being closedLicensed/Trial software system _ Buffering Hotkeys_SQL.au3 ADODB.Connection _ Search 2d Arrays_SplashTextWithGraphicOn() _ Adjust Screen GammaTransparent Controls _ Eventlogs without the crap_GuiCtrlCreateFlash() _ Simple Interscript communication[u]Websites[/u]Curious Campers VW Hightops Lambert Plant Hire Share this post Link to post Share on other sites
w0uter 4 Posted May 15, 2006 you could crack a3x on the fly but i have a feeling you dont want to learn that My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll Share this post Link to post Share on other sites
Uten 9 Posted May 15, 2006 Pretty much I want to be able to have a compiled script read a .au3 or .ax3 The au3 will change so i need it to read and excute. Anybody have ideas?Make a runner prrogram to execute .a3x files. RunWait(@AutoItExe & ' /AutoIt3ExecuteScript ' & 'myprogi.a3x') Then have the .a3x load the .au3 when it executes. Remeber that the loaded au3 fil can not reference anything not included in the a3x file unless the included file is in the same folder as the au3 file. Please keep your sig. small! Use the help file. Search the forum. Then ask unresolved questions :) Script plugin demo, Simple Trace udf, TrayMenuEx udf, IOChatter demo, freebasic multithreaded dll sample, PostMessage, Aspell, Code profiling Share this post Link to post Share on other sites