[ASK] help me with imacros changed Frame

nurzaga

Newbie
Joined
Aug 21, 2012
Messages
38
Reaction score
3
anyone with imacros skill, i have problem with imacros script..

when i doing some script with changed Frame, sometime it F=15, F=17, F=20 and else..

when i run, it result tag / error.

can you solve this case?

thank you..
 
Post the full Code then we can try to help, In the meanwhile try using F=*
 
Post the full Code then we can try to help, In the meanwhile try using F=*


Code:
VERSION BUILD=7500718 RECORDER=FXSET !ERRORIGNORE YES
PAUSE
SET !EXTRACT NULL
SET !DATASOURCE posting-web2.0-1.txt
SET !DATASOURCE_COLUMNS 800
SET !DATASOURCE_LINE {{!LOOP}}
SET !EXTRACT_TEST_POPUP NO
TAB CLOSEALLOTHERS
TAB T=1
URL GOTO=url ( i pm-ed you)
FRAME F=17
TAG POS=2 TYPE=TD ATTR=TXT:Source
FRAME F=0
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:manage_posting ATTR=NAME:title CONTENT={{!COL1}}
FRAME F=17
TAG POS=1 TYPE=TEXTAREA ATTR=* CONTENT={{!COL2}}
FRAME F=0
TAG POS=1 TYPE=BUTTON ATTR=TXT:Post
TAG POS=1 TYPE=SPAN ATTR=TXT:Publish<SP>it!

hoo its crazy i cant post url.. the url i pm you ok..

its the code, hope you kindly help.. thank you R4Z0rA07
 
Do you know a scripting language like PHP?

1) Load page with iframe in it in tab 1. Save page as.
2) Load your php script in frame 2. With you php script, open the saved page (file_get_contents() ) and extract the number of the iframe with a suitable regex. Print it out in a named div that's easy to extract.
3) Use imacros to extract that value that FRAME F= should have and put it in {{VAR1}}
4) Go back to tab 1, point imacros at FRAME F={{VAR1}} and continue with your imacros spammery.
 
Back
Top