TaAaZZ28
Regular Member
- Aug 31, 2014
- 259
- 117
Hi! I am fairly new to iMacros. I am using iMacros to extract some text from title of the page then paste that text in a text box. Currently when I put that extracted text, it gets .mp4 written in it (title contains .mp4). I want to remove '.mp4' and replace it with '.com'
Currently I am doing this:
This adds .com to the end but there is no code to remove .mp4
Any help would be appreciated. Thanks.
Currently I am doing this:
Code:
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:videoedit_title EXTRACT=TXT
SET !VAR2 {{!EXTRACT}}
SET !EXTRACT NULL
TAG POS=1 TYPE=TEXTAREA FORM=NAME:NoFormName ATTR=ID:videoedit_description CONTENT="{{!VAR2}}.com"
wait seconds=2
This adds .com to the end but there is no code to remove .mp4
Any help would be appreciated. Thanks.