Search found 15 matches

by ThePoro
Sat Apr 13, 2019 8:33 am
Forum: iMacros for Firefox
Topic: Error with DATASOURCE_LINE. Please help!!
Replies: 1
Views: 1969

Error with DATASOURCE_LINE. Please help!!

Hello, I want to ask about this Error : RuntimeError: Invalid DATASOURCE_LINE value: 2, line 3 (Error code: -951) My code runs many times with no problem, It read lines in a csv file and check if a line exists or not. after a few minutes with infinity loop with no problem, iMacros appears this error...
by ThePoro
Thu Mar 14, 2019 11:54 am
Forum: iMacros for Firefox
Topic: How to click save password button in firefox with iMacros?
Replies: 8
Views: 5195

Re: How to click save password button in firefox with iMacros?

It work but not the way I want :lol: :lol: :lol: , But I searched, It's (A=B && C=D) :mrgreen:
by ThePoro
Thu Mar 14, 2019 3:33 am
Forum: iMacros for Firefox
Topic: How to click save password button in firefox with iMacros?
Replies: 8
Views: 5195

Re: How to click save password button in firefox with iMacros?

Can I ask you another thing?
I want to use If with 2 conditions so what should I write?

Code: Select all

If (A==B) (C==D) {

}
or

Code: Select all

If (A==B) & (C==D){

}
by ThePoro
Thu Mar 14, 2019 12:11 am
Forum: iMacros for Firefox
Topic: How to click save password button in firefox with iMacros?
Replies: 8
Views: 5195

Re: How to click save password button in firefox with iMacros?

I found press F6 2 times and press TAB 4 times and the control will be at save button. But I try EVENT with key 117 and It doesn't work. What can I do?
Or easier keypress is ALT+S, It will save password
by ThePoro
Wed Mar 13, 2019 10:20 am
Forum: iMacros for Firefox
Topic: How can I delete a specific line in a csv file with iMacros?
Replies: 10
Views: 6366

Re: How can I delete a specific line in a csv file with iMacros?

I've already known how to do that. This is js file. iimPlay("var1.iim"); var A = iimGetLastExtract(1) iimPlay("var2.iim"); var B = iimGetLastExtract(1) iimSet("var1",A); iimSet("var2",B); iimPlay("save-var.iim"); } var1.iim SET !REPLAYSPEED FAST SET ...
by ThePoro
Wed Mar 13, 2019 10:15 am
Forum: iMacros for Firefox
Topic: How to click save password button in firefox with iMacros?
Replies: 8
Views: 5195

How to click save password button in firefox with iMacros?

As the subject, I want to ask how to click save button when I fill some login information? Or is there any way to add username and password to firefox with iMacros?
Thank you :wink:

iMacros 8.9.7
Firefox 56
Windows 10
by ThePoro
Tue Mar 12, 2019 2:10 am
Forum: iMacros for Firefox
Topic: How can I delete a specific line in a csv file with iMacros?
Replies: 10
Views: 6366

Re: How can I delete a specific line in a csv file with iMacros?

My plan is I rewrite every time it accesses a website to another csv file. and then let it compare file 1 and file 2 if it coincides, the loop keeps running and read another line in file 1. Oh can you please tell me what is ugly typo? Hum, OK, that's a way to "do it" indeed... You could h...
by ThePoro
Tue Mar 12, 2019 12:55 am
Forum: iMacros for Firefox
Topic: How can I delete a specific line in a csv file with iMacros?
Replies: 10
Views: 6366

Re: How can I delete a specific line in a csv file with iMacros?

Oh I see what happened with my title, I've already corrected it.
by ThePoro
Mon Mar 11, 2019 3:36 pm
Forum: iMacros for Firefox
Topic: How can I delete a specific line in a csv file with iMacros?
Replies: 10
Views: 6366

Re: How can I delete a specific line in a csv file with iMacros?

My plan is I rewrite every time it accesses a website to another csv file. and then let it compare file 1 and file 2 if it coincides, the loop keeps running and read another line in file 1. Oh can you please tell me what is ugly typo? And may I ask you another question? How can I save as only var3 a...
by ThePoro
Mon Mar 11, 2019 2:51 pm
Forum: iMacros for Firefox
Topic: How can I delete a specific line in a csv file with iMacros?
Replies: 10
Views: 6366

Re: How can I delete a specific line in a csv file with iMacros?

Thank you for your help, but I already have another plan for my work. So thank you for helping me this situation.
by ThePoro
Mon Mar 11, 2019 1:13 pm
Forum: iMacros for Firefox
Topic: How can I click 1 button and 10 profile run imacros at the same time?
Replies: 2
Views: 2819

How can I click 1 button and 10 profile run imacros at the same time?

As the subject, I want to ask about how can I do that? I want multi firefox profile are opening after I run a batch file or any kind of code, they can run imacros file on these firefox windows
Thank you!

iMacros 8.9.7
Firefox 56
Windows 10
by ThePoro
Sat Mar 09, 2019 7:37 am
Forum: iMacros for Firefox
Topic: How can I delete a specific line in a csv file with iMacros?
Replies: 10
Views: 6366

How can I delete a specific line in a csv file with iMacros?

I already have a code to read csv file below and detect what profile is running to access the website. "profile1","google.com" "profile1","youtube.com" "profile2","facebook.com" They can read the file perfectly but my problem is I don't kno...