Jump to content
Macro Express Forums

tocmo0nlord

Members
  • Posts

    37
  • Joined

  • Last visited

Posts posted by tocmo0nlord

  1. <TVAR2:01:03:><REM2:Found Name: from T1><IVAR2:01:13:1:Name: ><REM2:Took name out><NMVAR:02:01:1:0000001:2:0000007><REM2:Copy what's left for employee ID and placed into T2><TMVAR2:10:02:01:001:N01:><REM2:Type it brah><TEXTTYPE:%T2%><REM2:Lets go for the actual name now, looking for Job Title: --------><IVAR2:02:13:1:Job Title: ><REM2:Took Job Title: out><NMVAR:02:02:1:0000002:2:0000019><REM2:Copy what's left for name and placed into T3><TMVAR2:10:03:01:N01:N02:><TEXTTYPE:%T3%>

    I got this so far but unfortunately it screws up a little when going to the second step of T2

     

     

    ID: 0555(5) ()= extra character
    Name: Steve
    I also need to remove Name: and ID:
    The extra character is created by T2 and not T1
    example,

     

    5
    Name: Steve

     

    By doing a Replace variable, name with (space) the macro is killed as it wont know what to look for.
  2. I am trying to enter information from CSV file. T2 will tell where T1 goes, T1 are names of people and T2 will be the folders that these names will go into. I need the macro to go in folder T2 (named b1)and stay there to enter all the names from T1, then switch to a different folder (b2) when it sees that b2 is different.

    T1 T2

    a1 b1 = enter a1

    a2 b1 = enter a2

    a3 b1 = enter a3

    a4 b2 = switch to folder b2 (run a macro to switch to that folder) and enter a4 and so on.

     

    The folder names on T2 already exist within the directories and macro express is not allowed to make new ones, just the ones from T2, i need macro express to continue to a different folder name if that folder does not exists.

     

    I am hoping that macro express has a "if T2 is different than previous then run macro 2" or so. Thanks guys!

     

    (I know that ME has a folder creating option, when i mean folders its just a way of giving somewhat if a visual that T1 will go within a group (the group are members of within active directory))

  3. I would like a few examples that you guys have come up with or found that contain heavy logic with description on what it does and what its used for if possible. And/Or/If/Integers and so on. If you guys would like to share please upload a few. Thanks!

  4. Could you please put comments by the steps that are being taken per line on that macro, it functions perfectly but i just don't know what its doing the + 3 totally threw me off. Reason being is that i have to process items within an email such as Name, Last name, address and so on, copy and paste into another window and would like to edit the macro to do so. Thank you!!!

  5. There are a couple of approaches. I usually will copy the entire page contents to the clipboard, read it into a variable, and parse out the chunks by finding markers like “To:”. If this sounds to intimidating you can tab thru the page and assuming they are al in fields you can grab the text. Or you can use the CTRL+F method and Tab > Shift+Tab. But if they are not in fields the easiest way was the first idea I mentioned.

     

    I was assuming that you are using a web based email. If not you can look at using controls to grab fields. I have a macro that disposes of email in Outlook to a file server and it grabs the date, subject and other info to create the file name.

     

     

    Would you be able to give an example on how to parse out the cunks by finding the markers? and the macro you have sounds very interesting as well ! :P Thank you!

  6. I am in need of a tree like macro that saves the data and then writes down that was selected.

    Example:

     

    1a I like

     

    2 a Fish sticks

    2 b Sticks of fish

    2 c Fish

     

     

    1 b People like

     

    a2 Smiley faces

    b2 Weird key chains

    c2 powder water

     

    This is what i tried

     

    <MENU2:2:T:05:CenterCenter:Send a downtime for dumies.Choose!I am a

    He is a

    We are a><IFVAR2:1:01:1:A><MENU2:2:T:01:CenterCenter:Send a downtime for dumies.Choose!Fish stick

    Boom box

    Support><ENDIF><IFVAR2:1:01:1:B><MENU2:1:T:01:CenterCenter:Send a downtime for dumies.Choose!Central

    NEverous System

    Spider><ENDIF><IFVAR2:1:01:1:C><MENU2:2:T:01:CenterCenter:Send a downtime for dumies.Choose!South Park

    Touchpass

    cellular><ENDIF><REM2:T2 second part><IFVAR2:1:02:1:A><MENU2:2:T:02:CenterCenter:Send a downtime for dumies.Choose!Fish stick

    Boom box

    Support><ENDIF><IFVAR2:1:02:1:B><MENU2:2:T:02:CenterCenter:Send a downtime for dumies.Choose!Central

    NEverous System

    Spider><ENDIF><IFVAR2:1:02:1:C><MENU2:2:T:02:CenterCenter:Send a downtime for dumies.Choose!South Park

    Touchpass

    cellular><ENDIF>

     

    but its just a mess, runs into problems on the second click, help?

  7. Can MEv3 scan a window in internet explorer, find a specific word that is already given and click on it ?

    The process is as follows -

    1) go to search box, search for last name only

    2) find name on search results click on specific one

    3) copy specific data such as employee or not

    4) if employee do this, if not employee do a diff task

     

    can this be achieved? Thank you!

  8. Ive got ASCII Delimited Text File Process and it pastes all the fields correctly.

     

    First

    Second

    Third

    Forth

     

    from a csv file.

    I would like to take those fields and have the macro enter them into boxes on a different program.

    the Get control for those boxes have already been set, how would i acomplish this?

     

    To rectify, I would like macro express to enter the output of the csv file into boxes into another program. Thanks guys!

     

    I broke it down into 2 diff processes.

    1) process the .cvs file into a wordpad to the way it needs to be entered into the boxes.

    2) created a macro with <Page Up> / <Home> / <Shift> / <End> / and so on controling the text passing it over from the wordpad to the program with the boxes, then removing the processed text and repeating.

     

    I am jumping all over the place, wont have to process over 1,000 files manualy lol. I would still like to cut step one and enter the files directly into the boxes with the macro. Is this possible? Thanks you.

     

    Heres number one:

     

    <SPKEY:0003><ADFBEG:F10:001:000001:000000:C:\Documents and Settings\mehhhh\Desktop\Macro Shortcuts\Termination.csv><TEXTTYPE:%T3%, %T2%

    %T2% %T3%

    %T2%

    %T3%

    %T1%

     

    ><ADFEND>

     

    Heres number 2

     

    <REM2:Contact Name><GETCONTROL2:01:JAVAW.EXE:SWT_Window0Program Name016:20SWT_Window01SWT_Window010SWT_Window01SWT_Window01SWT_Window0

    2SWT_Window05SWT_Window04SWT_Window01SWT_Window06SWT_Window09SWT_Win

    d

    ow01SWT_Window01SWT_Window01SWT_Window01SWT_Window02Edit><REM2:Full name><GETCONTROL2:02:JAVAW.EXE:SWT_Window0Program Name016:20SWT_Window01SWT_Window010SWT_Window01SWT_Window01SWT_Window0

    2SWT_Window05SWT_Window04SWT_Window01SWT_Window06SWT_Window09SWT_Win

    d

    ow01SWT_Window01SWT_Window01SWT_Window04SWT_Window02Edit><REM2:First Name><GETCONTROL2:03:JAVAW.EXE:SWT_Window0Program Name016:20SWT_Window01SWT_Window010SWT_Window01SWT_Window01SWT_Window0

    2SWT_Window05SWT_Window04SWT_Window01SWT_Window06SWT_Window09SWT_Win

    d

    ow01SWT_Window01SWT_Window01SWT_Window07SWT_Window02Edit><REM2:Last Name><GETCONTROL2:04:JAVAW.EXE:SWT_Window0Program Name016:20SWT_Window01SWT_Window010SWT_Window01SWT_Window01SWT_Window0

    2SWT_Window05SWT_Window04SWT_Window01SWT_Window06SWT_Window09SWT_Win

    d

    ow01SWT_Window01SWT_Window01SWT_Window010SWT_Window02Edit><REM2:Employee ID><GETCONTROL2:05:JAVAW.EXE:SWT_Window0Program Name016:20SWT_Window01SWT_Window010SWT_Window01SWT_Window01SWT_Window0

    2SWT_Window05SWT_Window04SWT_Window01SWT_Window06SWT_Window09SWT_Win

    d

    ow01SWT_Window01SWT_Window01SWT_Window013SWT_Window02Edit><REP3:01:000001:000001:01000:0:01:><REM2:Start the clicking LOL><REM2:Contact Name><ACTIVATE2:Document - WordPad><TEXTTYPE:<PAGE UP><SHIFTD><END><SHIFTU><CTRLD>c<CTRLU>><ACTIVATE2:Program Name><CCLICK:T:01:0:T:><TEXTTYPE:<CTRLD>a<CTRLU>><CLIPP><DIS:<DELAY:1><REM2:Full name><ACTIVATE2:Document - WordPad><TEXTTYPE:<HOME><ARROW DOWN><SHIFTD><END><SHIFTU><CTRLD>c<CTRLU>><ACTIVATE2:Program Name><CCLICK:T:02:0:T:><TEXTTYPE:<CTRLD>a<CTRLU>><CLIPP><DIS:<DELAY:1><REM2:First Name><ACTIVATE2:Document - WordPad><TEXTTYPE:<HOME><ARROW DOWN><SHIFTD><END><SHIFTU><CTRLD>c<CTRLU>><ACTIVATE2:Program Name><CCLICK:T:03:0:T:><TEXTTYPE:<CTRLD>a<CTRLU>><CLIPP><DIS:<DELAY:1><REM2:Last Name><ACTIVATE2:Document - WordPad><TEXTTYPE:<HOME><ARROW DOWN><SHIFTD><END><SHIFTU><CTRLD>c<CTRLU>><ACTIVATE2:Program Name><CCLICK:T:04:0:T:><TEXTTYPE:<CTRLD>a<CTRLU>><CLIPP><DIS:<DELAY:1><REM2:Employee ID><ACTIVATE2:Document - WordPad><TEXTTYPE:<HOME><ARROW DOWN><SHIFTD><END><SHIFTU><CTRLD>c<CTRLU>><ACTIVATE2:Program Name><CCLICK:T:05:0:T:><TEXTTYPE:<CTRLD>a<CTRLU>><CLIPP><DIS:<DELAY:1><REM2:Add Contact.><TEXTTYPE:<F2>><DELAY:2><TEXTTYPE:<F2>><REM2:Clear to new Begining / Repeat. ><ACTIVATE2:Document - WordPad><TEXTTYPE:<HOME><ARROW DOWN><ARROW DOWN><SHIFTD><ARROW UP><ARROW UP><ARROW UP><ARROW UP><ARROW UP><ARROW UP><SHIFTU><DELETE>><DELAY:3><ENDREP>

  9. Ive got ASCII Delimited Text File Process and it pastes all the fields correctly.

     

    First

    Second

    Third

    Forth

     

    from a csv file.

    I would like to take those fields and have the macro enter them into boxes on a different program.

    the Get control for those boxes have already been set, how would i acomplish this?

     

    To rectify, I would like macro express to enter the output of the csv file into boxes into another program. Thanks guys!

  10. Socket error (#10054): Connection reset by peer.

     

    Analyse & Solutions: An existing connection was forcibly closed by the remote host. This normally results if the peer application on the remote host is suddenly stopped, the host is rebooted, the host or remote network interface is disabled, or the remote host uses a hard close (see setsockopt for more information on the SO_LINGER option on the remote socket). This error may also result if a connection was broken due to keep-alive activity detecting a failure while one or more operations are in progress. Operations that were in progress fail with WSAENETRESET. Subsequent operations fail with WSAECONNRESET.

  11. Im trying to have ME click on a few fields by using the get control and mouse click. After the get control and mouse is set up and tested it works well, but after a few minutes it fails to function, i have taken screen shots of the control details and going down the tree a few numbers seem to change. Is there a work around or a better way to find these boxes? the screen shots have been attatched.

    post-3056-1238895919_thumb.jpg

    post-3056-1238895927_thumb.jpg

×
×
  • Create New...