Jump to content
Macro Express Forums

Samrae

Members
  • Posts

    452
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by Samrae

  1. The Code Tool is here in the forum software. When you are typing into the forum there should be a series of icons right above. The <> is the Code Tool Terry is demonstrating:
  2. To copy what you see in the Macro Script Editor, highlight the macro lines lines you want, right-click, and click "Copy Command Text". Then, in this forum, click the <> icon and type ctrl+v to paste. The result looks like this: Text Type (Simulate Keystrokes): <ALT>e Text Type (Simulate Keystrokes): <ALTD>e<ALTU> To copy macro commands that someone can copy from this forum and paste into Macro Express, highlight the macro lines you want, right-click, and click "Copy". Then, again, in this forum, click the <> icon and type ctrl+v to paste. The result looks like this: <TEXT TYPE Action="0" Text="<ALT>e"/> <TEXT TYPE Action="0" Text="<ALTD>e<ALTU>"/> Often when asking for help it is a good idea to post both. If you make it easy for forum members to understand and help you will get better answers. 🙂
  3. As recommended elsewhere, please put macro samples in a codebox (see <> above) instead of posting an image. When you have the macro do a Text Type <ALT>E what gets sent to the application is <ALT Down> <Shift Down> e <Shift Up> <ALT up>. What you need is: Text Type (Simulate Keystrokes): <ALT>e Sometimes that does not work reliably. This often works better: Text Type (Simulate Keystrokes): <ALTD>e<ALTU>
  4. Another thing you could do is to add a Wait for File Ready on the line above the Log Messages / Log Errors commands.
  5. Your answer came in just before as I submitted mine. Are we thinking alike now? 😃
  6. I recommend you begin by clicking Options, Preferences, Activations and then the ShortKeys tab. Enter something like ".." in the Prefix keys box. Once you do that your shortkey macro will not automatically type out. If the macro is one you recently changed you can click on the "Modified" header. This will bring the most recently modified macro to the top (or bottom) of the list. If I recall correctly, I usually have to click in the Modified header twice to move the most recently modified macro to the top. If the issue is with your shortkey activation settings then you may want to try the "Use suffix keys" option. There is extensive documentation on how the shortkey macro activation works here: https://www.macros.com/skplayback.htm
  7. A copy of the samples.mex file can be found in the folder where the Macro Express program files are installed (C:\Program Files (x86)\Macro Express Pro 6). Use Windows File Explorer to copy this file to another folder then, within Macro Express, click File, Open File to open it. You should not open the samples.mex file directly in the C:\Program Files (x86)\Macro Express Pro 6 folder. Or, as acantor said, you can download samples.mex from here: Sample Macros.
  8. When you intend to press Ctrl+c to copy the pixel color to the clipboard make sure that the Mouse Locator has focus. The only time I have had this not work is when focus has been changed to another window.
  9. See if running Macro Express as Administrator helps. If Mocha 3270 was written that long ago it may be running in some Windows Compatibility mode. Macro Express may need to be running as Administrator to work correctly with a program running in a compatibility mode.
  10. Yes, if you are using the portable version the settings would be in an .INI file and not in the registry. If the .INI file contains Check Syntax = 1 I would expect the syntax checking to work. To be sure, you could delete the line in the .INI file that contains Check Syntax to tell Macro Express to turn syntax checking back on. Be sure that Macro Express is not running when you change the .INI file.
  11. You could also restore syntax checking by running the MacDef.exe program in the c:\Program Files (x86)\Macro Express 4 folder. But, if you do that, all of your preferences will be reset to their default values.
  12. I duplicated this issue using Macro Express Pro 6. When the Syntax Error box is displayed and you click "Don't show this again", syntax checking is turned off and cannot be easily turned back on. Syntax checking can be restored if you edit the registry and change HKEY_CURRENT_USER\Software\Insight Software Solutions\Macro Express 4\Editor\Check Syntax to a value of 1. I have reported this to Insight Software Solutions. There should be a better way to re-enable syntax checking.
  13. So, add a tab: Text Type (Simulate Keystrokes): your User Name Delay: 4 seconds Text Type (Simulate Keystrokes): <KEYD:VK_TAB> Delay: 1 seconds Text Type (Simulate Keystrokes): <KEYU:VK_TAB> Delay: 4 seconds Text Type (Simulate Keystrokes): your Password Delay: 4 seconds Text Type (Simulate Keystrokes): <KEYD:VK_TAB> Delay: .5 seconds Text Type (Simulate Keystrokes): <KEYU:VK_TAB> Maybe a clue. It is interesting that your password was entered partially into two different fields. Here is another thing to try. Macro Express can "type" much faster than you can. 😃 What I have been trying to suggest is to slow things down. Maybe you also need to slow down the keystrokes between the characters of your name and password. If I recall correctly, when using a 3270 emulator, each keystroke is accepted by the emulator, sent to the host (IBM mainframe computer) and then sent back to the emulator to be displayed (or something like that). Try something like this. This will be very slow! It is only a test to see if slowing things down helps the emulator and host recognize the keystrokes. Try it and tell us exactly what you see. Keystroke Speed: 500 milliseconds Text Type (Simulate Keystrokes): UserName Delay: 2 seconds Text Type (Simulate Keystrokes): <KEYD:VK_TAB> Delay: 1 seconds Text Type (Simulate Keystrokes): <KEYU:VK_TAB> Delay: 2 seconds Text Type (Simulate Keystrokes): Password Delay: 2 seconds Text Type (Simulate Keystrokes): <KEYD:VK_TAB> Delay: 1 seconds Text Type (Simulate Keystrokes): <KEYU:VK_TAB> Delay: 2 seconds Text Type (Simulate Keystrokes): <KEYD:VK_TAB> Delay: 1 seconds Text Type (Simulate Keystrokes): <KEYU:VK_TAB>
  14. It has been a while since I used 3270 emulator software. I remember some things being a little tricky to automate because the emulator software handled keystrokes directly instead of via the usual Windows messages and hooks. What happens if you send keystrokes via "Simulate Keystrokes" instead of via a Window Control? Something like this: // Do whatever commands are necessary to launch the Mocha 3270 // emulator and wait for it to be completely loaded and stable Text Type (Simulate Keystrokes): your User Name Delay: 1 seconds Text Type (Simulate Keystrokes): your Password Delay: 5 seconds Text Type (Simulate Keystrokes): <TAB> Delay: 5 seconds Text Type (Simulate Keystrokes): <TAB> The Delays are extra long just to see if the commands work. If they do you can reduce the delay time. If that does not work you could try something like this: // Do whatever commands are necessary to launch the Mocha 3270 // emulator and wait for it to be completely loaded and stable Text Type (Simulate Keystrokes): your User Name Delay: 1 seconds Text Type (Simulate Keystrokes): your Password Delay: 4 seconds Text Type (Simulate Keystrokes): <KEYD:VK_TAB> Delay: .5 seconds Text Type (Simulate Keystrokes): <KEYU:VK_TAB> Copy this and paste it into your macro: <COMMENT Value="Do whatever commands are necessary to launch the Mocha 3270"/> <COMMENT Value="emulator and wait for it to be completely loaded and stable"/> <COMMENT/> <TEXT TYPE Action="0" Text="your User Name"/> <DELAY Flags="\x01" Time="1"/> <TEXT TYPE Action="0" Text="your Password"/> <DELAY Flags="\x01" Time="4"/> <COMMENT/> <TEXT TYPE Action="0" Text=" <KEYD:VK_TAB>"/> <DELAY Flags="\x01" Time=".5"/> <TEXT TYPE Action="0" Text=" <KEYU:VK_TAB>"/>
  15. In the Text Type command dialog there is a dropdown with options that determine how the Text Type work. The Action= corresponds to this choice: Simulate Keystrokes: Action="0" Use Clipboard and Paste Text: Action="1" Send Text Directly to Control: Action="2" Paste Rich Text: Action="3"
  16. You may find that displaying the message that often slows down your processing. Some of my macros update the counter every 25 iterations while other macros update every 100. Here is a snippet of one of my macros. It works just as Cory suggested. This sample uses the ASCII File Begin/End Process loop but a Repeat loop will work just as well Text Box Display: Progress // Process the file ASCII File Begin Process: "D:\ZZZZ\csv\zd.csv" (Comma Delimited Text (.csv)) // Display progress counter Variable Modify Integer: %N[2]% = %N[1]% / 100 If Variable %N[2]% Does not Equal "%N[3]%" Text Box Update: Progress Variable Modify Integer set %N[3]% to the contents of %N[2]% End If ASCII File End Process <TEXT BOX DISPLAY Title="Progress" Content="{\\rtf1\\ansi\\deff0{\\fonttbl{\\f0\\fnil Tahoma;}}\r\n\\viewkind4\\uc1\\pard\\lang1033\\f0\\fs16 \r\n\\par Processing line number: %N[1]%\r\n\\par }\r\n" Left="Right" Top="Top" Width="327" Height="114" Monitor="0" OnTop="TRUE" Keep_Focus="FALSE" Mode="\x02" Delay="1"/> <COMMENT Value="Process the file"/> <ASCII FILE BEGIN PROCESS Filename="D:\\ZipCodeDownload\\csv\\zd.csv" Format="CSV" Start_Record="1" Process_All="TRUE" Records="1" Variable="%T%" Start_Index="10"/> <COMMENT Value="Display progress counter"/> <VARIABLE MODIFY INTEGER Option="\x03" Destination="%N[2]%" Value1="%N[1]%" Value2="100"/> <IF VARIABLE Variable="%N[2]%" Condition="\x01" Value="%N[3]%" IgnoreCase="FALSE"/> <TEXT BOX UPDATE Header="Progress" Content="{\\rtf1\\ansi\\deff0{\\fonttbl{\\f0\\fnil Tahoma;}}\r\n\\viewkind4\\uc1\\pard\\lang1033\\f0\\fs16 \r\n\\par Processing line number: %N[1]%\r\n\\par }\r\n"/> <VARIABLE MODIFY INTEGER Option="\x06" Destination="%N[3]%" Variable="%N[2]%"/> <END IF/> <COMMENT/> <ASCII FILE END PROCESS/>
  17. Does Casper run with elevated (admin) privileges? If so you will need to run Macro Express with elevated privileges.
  18. I do not know Python but here are some suggestions. 1. To make information available to a separate program you would need to have Macro Express save it somewhere the other program has access to. I can think of two options: You could write to a file or you could write to the registry. There are macro commands to write and read to either place. I would think there are Python commands to read and write to a file or the registry. 2. There are two ways to launch a macro via an external program such as a Python script. a) Have Python call Macro Express this way: C:\Program Files (x86)\Macro Express Pro 6\MeProc.exe /A::Filename?Macroname Substitute "Filename" with the name of your macro file and "Macroname" with the name of your macro. See Launching macros from a command line parameter for more information. b) Call via an API call. There are some examples written in Delphi, C/C++/Visual C Example, and VBA here: API Examples . You would need to use these examples to do the equivalent using Python.
  19. I recently decided to investigate the purpose of the C:\Windows\WinSxS folder. You may discover that it gets huge containing many gigabytes of of files. I thought I could shrink my backups by cleaning up these files (it didn't). From a Google search: Because of what this folder is used for I would expect Windows to prevent any attempt to run programs from there. Thank you Terry for showing the correct path to SnippingTool.exe.
  20. When you launch Macro Express and then close it the size and position of the Macro Express windows will be remembered. The next time it launches it will come up in that position. For those macro commands that display something, most allow you to set the position. The Basic pause does not allow you to specify the position but the Complex Pause command will.
  21. Your response tells us that it is possible to run a macro on the remote computer (assuming you ran Notepad on the remote computer). At this point I would not worry about Window Controls (sorry Cory). Maybe later but not right now. This is how I would approach this. (Do all this on the remote machine.) Put a Macro Stop command in your macro. Start by putting it after the launch of ACT and, perhaps, the first keystrokes. Run it. If something does not work adjust the macro commands until it does. If it does what it is supposed to move the Macro Stop command down in your macro. Run that. Repeat.
  22. The Pause command is in the Timing categories of macros. The Pause command displays a message and stops the macro until you click on the Resume button. To easily find commands you can type in the search box underneath All Commands box. You can click in the box or press Alt+Down Arrow. To return to the script pane you can press Alt+Right Arrow.
×
×
  • Create New...