pezo89 Posted November 30, 2010 Posted November 30, 2010 (edited) Hi guys. it's me again anyways, why can't i run this damn wordfile? triedthese commands, but doesnt work.. starts and finishes but no worddocument opened if $word=0 Then Run("Søknad.AndreasW2.docx",@ScriptDir) EndIf Run(@ScriptDir & "\Søknad.AndreasW2.docx", "") in advance, thanks alot. Edited November 30, 2010 by pezo89
ripdad Posted November 30, 2010 Posted November 30, 2010 Try ShellExecute() instead of Run() "The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward
pezo89 Posted November 30, 2010 Author Posted November 30, 2010 Yay, that works. thx alot sir! btw any chance you happen to know how to change a spesific line in a word document? say third line from the top.
ripdad Posted November 30, 2010 Posted November 30, 2010 Editing docx files in AutoIt is out of my league. but .... I searched for the term docx on the forums and it returned 42 results. Have fun! "The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward
SparkSoft Posted November 30, 2010 Posted November 30, 2010 (edited) you could open it and edit the lines that way @ripdad , same here, editing .txt files with autoit is easy but word files, Im clueless Edit: you could look at the file using notepad then find the text (avoiding the formatting stuff) and edit it. Again I havnt a clue, Im new Edited November 30, 2010 by SparkSoft [center]First Ever Script/App[/center][center]Simple Battery Meter[/center]
saywell Posted November 30, 2010 Posted November 30, 2010 Yay, that works. thx alot sir! btw any chance you happen to know how to change a spesific line in a word document?say third line from the top.You could use #include <Word.au3> and_WordDocFindReplace if you know what you want to change.William
pezo89 Posted November 30, 2010 Author Posted November 30, 2010 Saywell, thx for replying, yes that would been possible. but as the script change the text, save it. send the doc somwhere, opens and change the text, it will be diffrent each time. iv managed to make a temporary solution using controlsend and shift + home button and some other stuff that kinda works lol
BrewManNH Posted November 30, 2010 Posted November 30, 2010 The problem with the Office 2007 and higher files is that they aren't normal files, they are a zip archive with all of the actual files inside that archive. The actual document is contained in the word folder, inside the document.xml file in the archive, you might be able to extract that file using one of the zip udfs and then manipulate the .xml file itself, and rezip it. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
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