bistrader Posted August 8, 2006 Posted August 8, 2006 I have tried and tried but can not figure out how to run a Javascript file. Assume you have myexample.js in your C:\MyStuff folder. I tried with run and could not get it to work. Then, I tried with runwait and still no success. Please provide how to get myexample.js to work when in c:\mystuff folder. Run("C:\MyStuff\myexample.js") ; does not run RunWait(@ComSpec & " /c " & "myexample.js", "C:\MyStuff") ; also does not run Thanks ...
nitekram Posted August 8, 2006 Posted August 8, 2006 bistrader said: I have tried and tried but can not figure out how to run a Javascript file. Assume you have myexample.js in your C:\MyStuff folder. I tried with run and could not get it to work. Then, I tried with runwait and still no success. Please provide how to get myexample.js to work when in c:\mystuff folder.Run("C:\MyStuff\myexample.js") ; does not runRunWait(@ComSpec & " /c " & "myexample.js", "C:\MyStuff") ; also does not runThanks...I do not think that you will be able to do it with a run command - the way to test this would be to use the windows key + R to bring up the pop up and type your command in there - if it works then you should be able to use RUN() or RunWait().Everytime I have used Javascript it has been in an html page and called it from there. That is why I think if you had any chance it would have to be with IE.au3, but because I have not used it yet, I am not sure. Someone else would have to answer. 2¢ Reveal hidden contents All by me:"Sometimes you have to go back to where you started, to get to where you want to go." "Everybody catches up with everyone, eventually" "As you teach others, you are really teaching yourself." From my dad "Do not worry about yesterday, as the only thing that you can control is tomorrow." Reveal hidden contents WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2 AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit Docs SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language Programming Tips Excel Changes ControlHover.UDF GDI_Plus Draw_On_Screen GDI Basics GDI_More_Basics GDI Rotate GDI Graph GDI CheckExistingItems GDI Trajectory Replace $ghGDIPDll with $__g_hGDIPDll DLL 101? Array via Object GDI Swimlane GDI Plus French 101 Site GDI Examples UEZ GDI Basic Clock GDI Detection Ternary operator
evilertoaster Posted August 8, 2006 Posted August 8, 2006 You can also try using the "start" command to run a file with the shell assiosiation. (start somefile.js)
bistrader Posted August 8, 2006 Author Posted August 8, 2006 Thanks. I tried the following and it works fine. Thanks for the hints. RunWait(@ComSpec & " /c start " & "MyExample.js", "C:\MyStuff\", @SW_HIDE)
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