I am using a Program that converts PDF Docs to Text. It is a GUI program and they also have a Command Line Version. I am looking to automate the conversion process from Livecode and need to be able to make Dos command calls to do this.
The program is here and shows an example of the help file and commands that need to be executed.
a-pdf(dot)com/text/cmd(dot)htm
Please Help
Thanks so much
Need to use external Dos commands to execute a PDF Converter
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
-
- Livecode Opensource Backer
- Posts: 46
- Joined: Fri Aug 02, 2013 12:14 am
Re: Need to use external Dos commands to execute a PDF Conve
Hi no1g8tor96,
Welcome to the forums
Take a look at "shell" in the dictionary, I think it's what you want.
Simon
Welcome to the forums

Take a look at "shell" in the dictionary, I think it's what you want.
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
-
- Livecode Opensource Backer
- Posts: 46
- Joined: Fri Aug 02, 2013 12:14 am
Re: Need to use external Dos commands to execute a PDF Conve
Simon,
Thanks for the fast reply. I have been trying that command and I think you right that it the right command but I am confused how to use it.
For example Lets say I want do a simple directory command for the windows directory. (C:\windows)
How would I do it? Would I need multiple shell commands? Can they be strung together?
Thanks
Thanks for the fast reply. I have been trying that command and I think you right that it the right command but I am confused how to use it.
For example Lets say I want do a simple directory command for the windows directory. (C:\windows)
How would I do it? Would I need multiple shell commands? Can they be strung together?
Thanks
Re: Need to use external Dos commands to execute a PDF Conve
Hi no1g8tor96,
Lets do one with some reply:
You should look up "hideConsoleWindows" as well.
Oh, thats a Win command, does that help?
Wait I see DOS, ok.
Simon
Lets do one with some reply:
Code: Select all
on mouseUp
put shell("ipconfig") into temp
answer temp
end mouseUp
Oh, thats a Win command, does that help?
Wait I see DOS, ok.
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!