Search the Community
Showing results for tags 'optimize'.
-
Hey yaaal!! Lets say this is my code, (Semi-psudo) #include <common used libraries> #include <my own libraries> myown.au3 ->> func blabla_set($input) if (CheckForThings) then return seterror $blabla = $input endfunc ;Main file local $blabla blabla_set(24242 [/code] 1. Is there a way to make autoit do all checkings and then set my function "blabla_set" variables to Locla const? like c++ ifdef? 2. Is it possible to make autoit exctract the MyOwnFunctionCaller("Otherfunc") to the while loop after compiling? for example [code]while 1 MyOwnFunctionCaller("Otherfunc") wend func OtherFunc() own stuff own stuff own stuff endfunc becomes while 1 own stuffown stuff own stuff wend Thanks /t
-
I am BRAND new to Autoit......in fact, experiencing install problems....that is a whole different can of worms. But I have several thousand PDF files, I can manually use keyboard and mouse to open each file and "Optimize" it ( Acrobat internal function to compress by 5x+/-) Then save the file with a modified name = original name &"O" I'm hoping to develop an Autoit script to loop through each file in a folder and Optimize it/save it Has anybody done it already?