Jump to content
Macro Express Forums

oded

Members
  • Posts

    66
  • Joined

  • Last visited

Posts posted by oded

  1. So far I have used MEPro on my old desktop (win. 7) computer.
    Now I have a new desktop (win. 10) computer.

    Can I simply move macex.mex file fron old computer to the new one?
    (Of course I'm aware that many macros would need to be changed.)
    Any help would be much appreciated 😊
    Oded. 

  2. It is impossible to have two folders the same name in a given folder. Are you sure of what you're seeing? Don't forget that much of what you see in Windows File Explorer is virtualized. You might be seeing folders that in the actual file system are ion two different places.

     

    You can control the location of these folders in the MEP preferences. I think the group is called "Files" or something similar. I would guess it's safe to delete a folder for which there are no references in this section.

    You are right Cory.

    My mistake :(

    I have looked at Documents library and didn't notice there were 2 locations included: My Documents and Public Documents.

    Thanks for your quick answer :)

  3. My Documents folder contains 2 Insight Software folders.

    One of them has only one sub-folder named Macro Express which has 2 (empty) subfolders: Crashes and Remap Layouts.
    The other contains macex.mex file, 9 backup files, and a Macro Express subfolder with one (empty) Macro Logs subfolder.

    Is this OK?

    Why the need of 2 Insight Software folders?

  4. It's good to know which browser you use, but anyway:

     

    Use "Program Lunch" (from Windows/Programs). Program/Path name: Path name of your browser. Program Parameter: URL from website.

     

    Sample:

    PROGRAM LAUNCH "FIREFOX.EXE" (Normal)

    Parameters: www.google.de

    <PROGRAM LAUNCH Path="FIREFOX.EXE" Mode="\x00" Parameters="www.google.de" Default_Path="TRUE" Wait="1" Get_Console="FALSE"/>
    

    Look_Up

    I use google chrome.

    Works flawlessly for me now :D

    Thanks for your help. Much appreciated.

  5. I avoid IE unless FF for some reason can't render a page properly, but there seem to be a few posts about this sort of thing. Here's one that may or may not be relevant:

     

    http://blogs.msdn.co...plorer-8-0.aspx

     

    Oded: Don't let ME pro's lack of a Wait feature force you away from FF! I use a pixel-spotting macro to do the equivalent:

     

    <DELAY Flags="\x02" Time="200"/>
    <REPEAT UNTIL Variable="%StopColour%" Condition="\x00" Value="13160660" _COMMENT="Grey, after the red during loading. Theme: Default"/>
    <GET PIXEL COLOR Option="\x01" Rel_To_Screen="FALSE" X="94" Y="65" Destination="%StopColour%"/>
    <DELAY Flags="\x02" Time="50"/>
    <END REPEAT/>
    <DELAY Flags="\x01" Time="0.1"/>
    

     

    --

    Terry, East Grinstead, UK

    Thank you, Terry :)

  6. This is quite odd!

    My default browser is Firefox, for which the Web SIte command works as expected; if Firefox is not running, this command loads Firefox with the requested page. If Firefox is running, this command simply opens a new tab showing the requested page.

    But, like you, my experience with IE is quite different. The Web Site command always seems to open a new non-maximized window for IE, even though I have declared my preference for tabs.

    So I suggest the following code as a workaround:

    Variable Set String %tUrl% to "www.myhq.com"
    If Not Program "IEXPLORE.EXE" is running
     Program Launch: "iexplore.exe" (Normal)
    Parameters: 
    End If
    Window Activate: Internet Explorer
    Text Type (Simulate Keystrokes): <ALT>d
    Delay: 500 milliseconds
    Text Type (Simulate Keystrokes): %tUrl%<ENTER>

    <VARIABLE SET STRING Option="\x00" Destination="%tUrl%" Value="www.myhq.com" NoEmbeddedVars="FALSE"/>
    <IF NOT PROGRAM Option="\x01" Program="IEXPLORE.EXE"/>
    <PROGRAM LAUNCH Path="C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe" Mode="\x00" Default_Path="TRUE" Wait="1" Get_Console="FALSE"/>
    <END IF/>
    <WINDOW ACTIVATE Title="Internet Explorer" Exact_Match="FALSE" Wildcards="FALSE" _IGNORE="0x0006"/>
    <TEXT TYPE Action="0" Text="<ALT>d"/>
    <DELAY Flags="\x02" Time="500"/>
    <TEXT TYPE Action="0" Text="%tUrl%<ENTER>"/>

    Paul,

    I too like Firefox much more than Ie.

    However ME Pro limits the option "wait for the web page" (which I use a lot) only to IE.

    I wish Firefox had this option too...

    Anyways many thanks for your help.

    Much appreciated.

     

    Oded.

  7. The help for "Web Site" command says: "Use this command to open a web page. Just enter the web site address and click the OK button. The web site entered is launched when the macro is run. If the browser is not open, the macro also opens the browser."

    I use this command launching certain sites using IE. However the browser is already opened (before the macro is activated) but the macro launches the site opening a new window of IE.

    Am I missing something?

     

    Thanks a lot for any help.

     

    Oded.

  8. Don,

     

    The typing code is typing. I've checked the radio button...

    I've also made sure the password screen has focus before typing.

    It looks like Samrae is right. If so, can this be somehow bypassed?

     

    Thanks Don and Samrae for your answers. Much appreciated :)

     

    Oded.

  9. I get a lot of pdf documents from my bank - all of them protected with a password.

    I've created a very simple macro which types the password + ENTER.

    When I try to open the pdf I'm of course asked to type the password. I run the macro but nothing happens.

    If I open notepad and run this macro it works flawlessly.

    Why doesn't the macro work with the protected pdf document?

    Thanks for any help.

     

    Oded.

×
×
  • Create New...