Search found 65 matches
- Wed Nov 07, 2018 7:24 am
- Forum: iMacros for Firefox
- Topic: SCREENSHOT inconsistency
- Replies: 5
- Views: 1480
Re: SCREENSHOT inconsistency
Hum, nice Quality in your Post... Compliment...! :D Thank you so much for the compliment. I had read a few posts before so I thought I should make my questions precise :p (You could use the ']CODE[' Forum Meta-Tags btw to improve the "Readability" yet... :idea: ) I was not aware of that. I will def...
- Mon Nov 05, 2018 7:30 am
- Forum: iMacros for Firefox
- Topic: SCREENSHOT inconsistency
- Replies: 5
- Views: 1480
SCREENSHOT inconsistency
Configuration Firefox V. 52 iMacros for Firefox v. 8.9.7 Windows 7 Problem Statement I have created a script that reads URLs from a .csv file. It goes to that URL and takes a screenshot of the page and saves it in the specified folder. I run this script on a daily basis on a database that has 100 U...
- Sun Nov 04, 2018 1:14 pm
- Forum: General Support & Discussions
- Topic: HELP: Script for Wetransfer in Firefox 62.0.3 (64-bit)
- Replies: 1
- Views: 962
Re: HELP: Script for Wetransfer in Firefox 62.0.3 (64-bit)
I have tested your script on Firefox v. 52 and iMacros Version 8.9.7 and it seems to be working perfectly. Here is the complete code that I used to write email address in both fields and upload an image and then transfer it. var code="CODE:"; code+="URL GOTO=www.wetransfer.com\n"; code+="TAG POS=1 T...
- Sun Nov 04, 2018 1:03 pm
- Forum: General Support & Discussions
- Topic: Voting Macro with different IP addresses
- Replies: 3
- Views: 1303
Re: Voting Macro with different IP addresses
There are multiple ways of doing it with iMacros 

- Sun Nov 04, 2018 12:58 pm
- Forum: General Support & Discussions
- Topic: obfuscate imacro script
- Replies: 8
- Views: 1937
Re: obfuscate imacro script
I use the following online service to obfuscate my products along with one other service. You can ward off non tech-savvy people from seeing your source code. https://www.daftlogic.com/projects-online-javascript-obfuscator.htm However, the output from services like this can easily be defeat simply b...
- Sun Nov 04, 2018 12:41 pm
- Forum: iMacros for Firefox
- Topic: Replay if error ?
- Replies: 2
- Views: 4227
Re: Replay if error ?
I think the following is what you are trying to do: - var executed=true; while(executed) { var code="CODE:SET !ERRORIGNORE YES\n"; code+="YOUR CODE THAT YOU WANT TO RUN"\n; code+="YOUR CODE THAT YOU WANT TO RUN"\n; . . . code+="YOUR CODE THAT YOU WANT TO RUN"\n; if(iimPlay(code)<0) execute=false; } ...
- Sun Nov 04, 2018 12:37 pm
- Forum: iMacros for Firefox
- Topic: If this is possible and how
- Replies: 1
- Views: 4725
Re: If this is possible and how
It is possible to check if a website has Disqus commenting system, but I don't believe it is possible to know if the link moderation is on. If you could share a few links of sites, it might be possible to verify that assumption. Also, no one is going to just help you develop an entire long script fo...
- Sun Nov 04, 2018 12:29 pm
- Forum: iMacros for Firefox
- Topic: find text in different url's
- Replies: 1
- Views: 3528
Re: find text in different url's
The question is extremely vague, but I will try to answer it according to my understanding of the same. I am assuming you want a command that will help you to get the text of a link on a page. To do that, you can use the following: - iimPlayCode("TAG POS=1 TYPE=A ATTR=* EXTRACT=TXT"); // Get the tex...
- Sun Nov 04, 2018 11:57 am
- Forum: iMacros for Firefox
- Topic: need help?
- Replies: 2
- Views: 1609
Re: need help?
After spending about 20 minutes to find a way to Retweet a tweet, I came up with the following:-
TAG POS=1 TYPE=BUTTON ATTR=data-modal:ProfileTweet-retweet
As of today, this is working correctly. If however, there is a change in the UI in the future, the above command might not be supported.
TAG POS=1 TYPE=BUTTON ATTR=data-modal:ProfileTweet-retweet
As of today, this is working correctly. If however, there is a change in the UI in the future, the above command might not be supported.
- Sun Nov 04, 2018 11:36 am
- Forum: General Support & Discussions
- Topic: Input script for Web WhatsApp conversations
- Replies: 3
- Views: 2218
Re: Input script for Web WhatsApp conversations
You can download a Bulk Whatsapp Message sender using iMacros from :- bit.ly/WhatsappTrial
- Sun Nov 04, 2018 11:35 am
- Forum: iMacros for Firefox
- Topic: Datasource iMacro using %userprofile%
- Replies: 1
- Views: 1500
Re: Datasource iMacro using %userprofile%
You have to put your username for that to work.
- Sun Nov 04, 2018 11:32 am
- Forum: iMacros for Firefox
- Topic: hi guy, I have a question, please help me?
- Replies: 1
- Views: 1503
Re: hi guy, I have a question, please help me?
Copy and paste the code of all the 25 macros into one file :-p
- Sun Nov 04, 2018 11:31 am
- Forum: iMacros for Firefox
- Topic: opens a new window
- Replies: 1
- Views: 949
Re: opens a new window
You can simply open the sidebar once and it will remain open till you close it manually.
- Sun Nov 04, 2018 11:12 am
- Forum: iMacros for Firefox
- Topic: Select Multiple Files
- Replies: 2
- Views: 1171
Re: Select Multiple Files
I am pretty sure that iMacros does not support uploading multiple files for the specification that you provided.
- Sun Nov 04, 2018 10:59 am
- Forum: iMacros for Firefox
- Topic: Delete Numbers
- Replies: 3
- Views: 1215
Re: Delete Numbers
You can get the extracted value in a variable and replace the variables using a regular expression as such. Assuming that you have the value extracted in the !EXTRACT variable, you can do something like the following. var temp = iimGetLastExtract(); // Storing the value of the last extract in a temp...