I want to run script where I it will take the information from csv file. It will have three column (userid,password,c:\posting-information_1.csv )
First I will logins using the userid and password to the blog then I will user another csv file to post the blog. How I can bind two csv file in one file
Search found 11 matches
- Thu Dec 27, 2012 6:56 pm
- Forum: iMacros for Firefox
- Topic: How to bind a file in csv data source.
- Replies: 1
- Views: 604
- Thu Dec 27, 2012 6:49 pm
- Forum: iMacros for Firefox
- Topic: Need to know how to use proxy having password
- Replies: 6
- Views: 5887
Re: Need to know how to use proxy having password
thanks it is working
- Thu Dec 20, 2012 4:10 pm
- Forum: iMacros for Firefox
- Topic: Need to know how to use proxy having password
- Replies: 6
- Views: 5887
Need to know how to use proxy having password
Hi all,
I want to use proxy with user name password. Need to know how to add
I want to use proxy with user name password. Need to know how to add
- Wed Jan 05, 2011 1:53 pm
- Forum: iMacros for Firefox
- Topic: Have iMacros pickup where left off when starting script?
- Replies: 9
- Views: 3386
Re: Have iMacros pickup where left off when starting script?
SET !DATASOURCE_COLUMNS 1 SET !DATASOURCE_LINE 1 'If file does not exists, it will be created with initial value 0 SET !VAR1 0 'If file exists read and increment value. 'If its our first run we will start from 1st line at our file with data. SET !VAR1 {{!COL1}} ADD !VAR1 1 'Remove file and store in...
- Wed Jan 05, 2011 1:34 pm
- Forum: General Support & Discussions
- Topic: Need macro to start the loop where it stopped.
- Replies: 1
- Views: 635
Need macro to start the loop where it stopped.
I am running a macro from csv file around 5000 records. But due to bad internet connection it gets stopped very often and several time never noted the last loop. So I need to find where it got stopped. Is there any way I can have a macro to log the information what is the current loop
- Fri Dec 10, 2010 9:51 am
- Forum: iMacros for Firefox
- Topic: Have iMacros pickup where left off when starting script?
- Replies: 9
- Views: 3386
Re: Have iMacros pickup where left off when starting script?
'File which contains last loop value. Initial value "0" SET !ERRORIGNORE YES SET !DATASOURCE c:\LastLoop.csv SET !DATASOURCE_COLUMNS 1 SET !DATASOURCE_LINE 1 'If file does not exists, it will be created with initial value 0 SET !VAR1 0 'If file exists read and increment value. 'If its our first run...
- Sat Mar 07, 2009 4:51 pm
- Forum: General Support & Discussions
- Topic: Need to know to post html content from cvs loop
- Replies: 6
- Views: 2554
Re: Need to know to post html content from cvs loop
If I am not getting proper support about my quires how I can decide to buy this product. Any one from technical pls check this post and try to respond
- Mon Mar 02, 2009 7:20 pm
- Forum: General Support & Discussions
- Topic: Need to know to post html content from cvs loop
- Replies: 6
- Views: 2554
Re: Need to know to post html content from cvs loop
Any one has solution to post html content from cvs file. I need the macro to post html article in article directory.
I have 100 html type articles in test file that need to be posted by using loop. Pls provide me the code for that
I have 100 html type articles in test file that need to be posted by using loop. Pls provide me the code for that
- Wed Feb 11, 2009 10:04 am
- Forum: General Support & Discussions
- Topic: Need to know to post html content from cvs loop
- Replies: 6
- Views: 2554
Re: Need to know to post html content from cvs loop
Any one let me know what is the command to post this image tag in web forms <img src="http://my.info/pict/220354217995_0.jpg">. For me the normal command not working TAG POS=1 TYPE=TEXTAREA FORM=NAME:content ATTR=NAME:content CONTENT= FYI I have the image tag in cvs file. I will query the CVS file t...
- Tue Feb 10, 2009 2:52 pm
- Forum: General Support & Discussions
- Topic: Need to know to post html content from cvs loop
- Replies: 6
- Views: 2554
Re: Need to know to post html content from cvs loop
No in that cvs file there would 4 columns as mentioned below. Can you pls let me know how can post the html to my form. All columns are working fine only the html column is not positing. Because the macro unable to understand the html code.
1. test
2. test 2
3. Html content
4. test 3
1. test
2. test 2
3. Html content
4. test 3
- Tue Feb 10, 2009 2:16 am
- Forum: General Support & Discussions
- Topic: Need to know to post html content from cvs loop
- Replies: 6
- Views: 2554
Need to know to post html content from cvs loop
I have cvs file stored with html code. But when i i use cvs loop posting to forms it is not posting the full html contect. Pls let me know what is code for posting html content THis is the code i am using CMDLINE !DATASOURCE Address2.csv 'Number of columns in the CSV file. This must be accurate! SET...