Jump to content
Macro Express Forums

hufi

Members
  • Posts

    11
  • Joined

  • Last visited

Posts posted by hufi

  1. Hi Community

     

    Following my question from yesterday asking wether it is possible or not to activate a .bat file from Macro Express Pro 6......my question is now to know if it is possible to do it on reception of an email in outlook when you receive a mail with a specific object (for instance : object contains the word : "IMPORT DONE  - YOU CAN GO ON USINGROCEED"

     

    I know that some expensive tool as Power Automate allow to do that.....my question is to now if it is possible to do it with Macro Express Pro 6

     

     

    Thanks for your help

     

    regards

     

    Hufi

  2. Hello

     

    I wonder if it is possible or not ot open an excel file and store the values in an array to use in my macro epxress script.

    Then I will use the values stored in my algorithm

     

    Example

     

    For each line

       connect to application and select project

       simulate the nb of tab 

       click on the report 

       delay of (time in second to generate)

       saved report with the Saved report name

    end for

     

     

    Project Nb Tabs Report Saved report Name Time in second to generate
    Projet 1 16 Report Name 1 Save Name 1 600
    Project 2 17 Report Name 2 Save Name 2 300
  3. Hi Forum

    I am trying to automate a process using Teams. And I wonder if it is possible to look on the screen to the teams icon and press on we find it or press on the ... to acess to the rest of the possibles choices and press on the team icon.

     

    In fact, the teams icons can ve displayed on your left side of the screen but it can depends on the configuration of your team software

     

    More generally, can we provide to Macro Express Pro 6 a picture so that the automate looks for this picture and if he finds it, he makes an action and if not, he makes another action

     

    thanks for your support and help

     

    regards

     

    Hufi

  4. Thanks  a lot for your answer, that helps me a lot to do what I want

     

    here is my final code

     

    <VARIABLE SET INTEGER Option="\x00" Destination="%Counter%" Value="0" _COMMENT="Nombre de fichiers dans téléchargements\r\n"/>
    <REPEAT WITH FOLDER Path="C:\\Users\\hfaureis\\Downloads" OnlyFiles="TRUE" Destination="%Result%" FullPath="FALSE" ProcSubfolders="FALSE"/>
    <VARIABLE MODIFY INTEGER Option="\x07" Destination="%Counter%"/>
    <END REPEAT/>
    <MESSAGEBOX Caption="sq" Message="%Counter%" Icon="0"/>
    <DELAY Flags="\x02" Time="500"/>
    <IF VARIABLE Variable="%Counter%" Condition="\x05" Value="2" IgnoreCase="FALSE"/>
    <MESSAGEBOX Caption="Répertoire Téléchargement" Message="Répertoire déjà vide" Icon="0" _COMMENT="Répertoire déjà vide\r\n"/>
    <ELSE/>
    <MESSAGEBOX Caption="Répertoire Téléchargement" Message="On vide le répertoire" Icon="0" _COMMENT="On vide le répertoire\r\n"/>
    <OPEN FOLDER Path="C:\\Users\\hfaureis\\Downloads" _COMMENT="On ouvre le répertoire download\r\n"/>
    <DELAY Flags="\x01" Time="1"/>
    <WINDOW MAXIMIZE Option="\x00" Partial="TRUE" Wildcards="FALSE" _IGNORE="0x0006"/>
    <MOUSE MOVE Option="\x01" X="949" Y="304" _PROMPT="0x000A"/>
    <DELAY Flags="\x01" Time="1"/>
    <TEXT TYPE Action="0" Text="<CTRLD>a<CTRLU>" _COMMENT="On simule Ctrl + A"/>
    <DELAY Flags="\x01" Time="1"/>
    <MOUSE MOVE Option="\x01" X="522" Y="83" _PROMPT="0x000A" _COMMENT="On se deplace sur la croix rouge pour supprimer les fichiers"/>
    <DELAY Flags="\x01" Time="1"/>
    <MOUSE LEFT CLICK/>
    <DELAY Flags="\x01" Time="1"/>
    <TEXT TYPE Action="0" Text="<ENTER>" _COMMENT="On confirme l'effacement"/>
    <END IF/>

×
×
  • Create New...