$5 - Need iMacro Coder QUICK QUESTION

Status
Not open for further replies.

k.mcmacken

Newbie
Joined
Aug 24, 2010
Messages
33
Reaction score
0
If you can fix my line of code and it works you get $5:

Here's the HTML code I'm trying to FILL with .CSV data:
(btw this is a "textarea", or "textbox field" that cannot be seen by iMacro)

<div class="post_single_right" id="post_single_long_description_right">
<textarea name='long_description' id='long_description' rows='15' cols='110' class='post_single'></textarea> </div>
</div>
</fieldset>
</div>

Here's the code I'm trying to use to autofill this box:
FRAME F=1
TAG POS=1 TYPE=INPUT:TEXTAREA FORM=NAME: post_single_job1 ATTR=ID:long_description CONTENT={{!COL5}}


Anyone have any clue as to what type of "TYPE=" I need to use?
Thanks.
 
I've tried different variations of it.. for some reason I think it's not seeing this textarea..
Error in Line 22:

TYPE=TEXTAREA FORM=NAME:post_single_job1 ATTR=ID:long_description
(Error code: -301)
 
Does the form name in your HTML match the one in your macro?
 
Yes. I just changed it on here to post; didn't change that one. lol.
I also think I may be looking at a text field within a div within a frame..

Here's all the HTML code of the field:

Code:
<b><font color="#E60000">*</font></b><span class="not_bold">Required field.</span>
      </div>
    </label>
  <div class="post_single_job1_text_box_right" id="post_single_job1_text_box_text_right">
<span class='post_single_job1_text_box_right'><input type='hidden' name='text' value='' /></span>
    </div>
  </div>
    </fieldset>
  </div>
  <div class="post_single_job1_div" align="center">
    <fieldset class='post_single_job1_div'>
  <div class="post_single_job" id="post_single_job_long_description">
    <label for="long_description">
      <div class="post_single_job_left" id="post_single_job_long_description_left">
      <b><h2 class="reg_large">Job Description<font color="#E60000">*</font></h2></b>
      </div>
    </label>
  <div class="post_single_job_right" id="post_single_job_long_description_right">
<textarea name='long_description' id='long_description' rows='15' cols='110' class='post_single_job'></textarea>    </div>
  </div>
    </fieldset>
  </div>
  <div class="buttonpost_submit">
<input type='submit' value='Post Job' class='buttonpost' />  </div>
</form>
 
When I record typing into this textbox I get this:
Code:
VERSION BUILD=6900210     
TAB T=1     
TAB CLOSEALLOTHERS     
URL GOTO=hxxp://****/post_single_job1     
FRAME F=1     
TAG POS=1 TYPE=P   ATTR=*
 
Status
Not open for further replies.
This thread has been auto closed due to the forum's thread age policy. Read more.
Back
Top