Jump to content
Macro Express Forums

mipoleon

Members
  • Posts

    4
  • Joined

  • Last visited

mipoleon's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Capture tends to be sloppy. You would be better off learning to script using mouse moves/mouse clicks and text type to start.
  2. You can do this in a round about way. The script would look something like: Repeat Until N1=150 Increment N1 Wait 1 Second Repeat End
  3. I did something similar with a macro I wrote awhile back. What I ended up doing was writing a batch script that would navigate to the folder and make a file list. And then execute the batch scrip from with the Activate/Launch function in Macro Express. Here is some example batch script: c: cd "C:\Desired Folder Location" dir /b /od > "Text File Name.TXT" You will want to put that in a test file with a .BAT extension on it. That will then navigate to your folder and dump all the file names into the "Text File Name.TXT" file in the order they were created or modified. You can then use the Process Text File function in Macro Express to load the file names line by line then use the Rename function to make any changes that you need. PS you can pass variables to batch scripts as well if you add command line paramaters. Variable in batch scripts start with %1 and ascend %2 %3 ect.
  4. There is an application that I have to interface with in order to capture text from it. The text appears to be in a data grid control type its showing as a data grid in Spy++ and UISpy. I cannot seem to get Macro Express to capture the text from within any of the cells in the data grid. Is this possible at all in Macro Express/Macro Express Pro? If not does anyone know of any 3rd party utility that can be utilized to get the desired effect? Any help would be appreciated I have been wracking my brain on this for quite some time.
×
×
  • Create New...