Feature Requests & Bug Fix Requests. ADD YOURS!
Forum rules
Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
Please re-implement the '!NOW' command with format code to leave out leading zeros! - 'm' and 'd'!!!
Thanks!
http://forum.imacros.net/viewtopic.php?f= ... ero#p29760
Thanks!
http://forum.imacros.net/viewtopic.php?f= ... ero#p29760
Bad user interface
Excellent product with very bad interface.
When the users has created IIM scripts than 90% of time is spent with F8 > browse tree > click the IIM script.
Sad to say that there is no ergomy to use it. Specially big unresizable tool box (more than 50% iMacros space in netbook) and folded tree anytime F8 is pressed.
BIG TOOL BOX
When I want to list my IIM scripts e.g. pressing F8 I cannot resize | minimize | hide iMacros tool bar such as Play | Rec | Edit. In netbook with quite small resolution is this extreamly anoying. More than half of navigation bar contain this toolbox. Note that except scripts creating|editing is this toolbox unusable. Hope that next version will add feature to hide this toolbox.
FOLDING TREE
Also anytime I want to access my IIM scripts pressing F8 all tree is folded down. Keep the history would be extreamly helpfull. Especially when I have lot of categorized IIM scripts
Hope that in next version this ergonomy will be add | fixed
When the users has created IIM scripts than 90% of time is spent with F8 > browse tree > click the IIM script.
Sad to say that there is no ergomy to use it. Specially big unresizable tool box (more than 50% iMacros space in netbook) and folded tree anytime F8 is pressed.
BIG TOOL BOX
When I want to list my IIM scripts e.g. pressing F8 I cannot resize | minimize | hide iMacros tool bar such as Play | Rec | Edit. In netbook with quite small resolution is this extreamly anoying. More than half of navigation bar contain this toolbox. Note that except scripts creating|editing is this toolbox unusable. Hope that next version will add feature to hide this toolbox.
FOLDING TREE
Also anytime I want to access my IIM scripts pressing F8 all tree is folded down. Keep the history would be extreamly helpfull. Especially when I have lot of categorized IIM scripts
Hope that in next version this ergonomy will be add | fixed
-
- Posts: 3635
- Joined: Mon May 31, 2010 4:59 pm
Re: Bad user interface
You can create a bookmarklets for quickly accessing and playing your macros:cervenak wrote: When the users has created IIM scripts than 90% of time is spent with F8 > browse tree > click the IIM script.
http://wiki.imacros.net/iMacros_for_Firefox#Bookmarking
Good suggestions! I will make sure the development team sees these.BIG TOOL BOX
FOLDING TREE
Regards,
Tom, iMacros Support
Tom, iMacros Support
-
- Posts: 3635
- Joined: Mon May 31, 2010 4:59 pm
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
Can you elaborate, or link to a previous post?KathrineBench wrote:I like the idea of pre-filename !!
Regards,
Tom, iMacros Support
Tom, iMacros Support
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
To not refresh the image in the savepictureas command in firefox.
-
- Posts: 3635
- Joined: Mon May 31, 2010 4:59 pm
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
This should be fixed in the next release!tgrendo wrote:To not refresh the image in the savepictureas command in firefox.
Regards,
Tom, iMacros Support
Tom, iMacros Support
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
Sometimes excel saves csv file with a comma at the end of the lines. It happens when first line have more filled columns then the rest.
With imacros script
I always get this error
http://screencast.com/t/W7Qew1BvKBZA
Can this be fixed?
Code: Select all
Lines,Cells
line1,
line2,
line3,
Code: Select all
VERSION BUILD=7110302 RECORDER=FX
SET !DATASOURCE LastComma.csv
SET !DATASOURCE_COLUMNS 2
SET !LOOP 2
SET !DATASOURCE_LINE {{!LOOP}}
PROMPT {{!COL1}}
Code: Select all
RuntimeError: Invalid DATASOURCE_LINE value: 3, line: 4
Can this be fixed?
-
- Posts: 3635
- Joined: Mon May 31, 2010 4:59 pm
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
Hi siniy, this is a known issue that has not yet been resolved. Thank you for taking the time to report it here also!siniy wrote:Sometimes excel saves csv file with a comma at the end of the lines. It happens when first line have more filled columns then the rest...
I always get this errorhttp://screencast.com/t/W7Qew1BvKBZACode: Select all
RuntimeError: Invalid DATASOURCE_LINE value: 3, line: 4
Can this be fixed?
Regards,
Tom, iMacros Support
Tom, iMacros Support
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
the ADD command is not working and I cannot figure out why...
Using Firefox plug-in...
Code is:
SET !VAR1 {{!NOW:dd}}
ADD !VAR1 {{1}}
I should get tomorrows date, ie. if today is the 8th, hen var1 would produce 09
ideas?
Using Firefox plug-in...
Code is:
SET !VAR1 {{!NOW:dd}}
ADD !VAR1 {{1}}
I should get tomorrows date, ie. if today is the 8th, hen var1 would produce 09
ideas?
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
I get a "RuntimeError: Wrong format of CONTENT value" error when trying to select a value for a dropdown box using a csv file. The strange thing is it does work when I don't use the csv file.
This line works. It selects the second value in the dropbox.
This line doesn't.
{{!COL9}} = "2" in the csv file, so this looks like a bug.
This line does work, but I don't want to use it, since the values in de dropbox change regularly and the order isn't always clear. I have one box where the order is %-3, %-1, %-2, %-4, %-5 for example.
iMacros Version: 7200328
OS: Windows 2003 SP2
Browser: FF 3.6.10
Demo macros work ok
Code: Select all
TAG POS=1 TYPE=SELECT FORM=NAME:employeesProfileForm ATTR=ID:ID_DEPTID CONTENT=2
Code: Select all
TAG POS=1 TYPE=SELECT FORM=NAME:employeesProfileForm ATTR=ID:ID_DEPTID CONTENT={{!COL9}}
{{!COL9}} = "2" in the csv file, so this looks like a bug.
Code: Select all
TAG POS=1 TYPE=SELECT FORM=NAME:employeesProfileForm ATTR=ID:ID_DEPTID CONTENT=%-{{!COL9}}
iMacros Version: 7200328
OS: Windows 2003 SP2
Browser: FF 3.6.10
Demo macros work ok
-
- Posts: 3635
- Joined: Mon May 31, 2010 4:59 pm
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
Try using ADD !VAR1 1. You only use {{ }} around variables, not literal values.freeav8 wrote:the ADD command is not working and I cannot figure out why...
Using Firefox plug-in...
Code is:
SET !VAR1 {{!NOW:dd}}
ADD !VAR1 {{1}}
I should get tomorrows date, ie. if today is the 8th, hen var1 would produce 09
ideas?
Regards,
Tom, iMacros Support
Tom, iMacros Support
-
- Posts: 3635
- Joined: Mon May 31, 2010 4:59 pm
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
Thanks for reporting this Hennink. I have added this to the list of known issues and logged the issue for further investigation by the development team.Hennink wrote:I get a "RuntimeError: Wrong format of CONTENT value" error when trying to select a value for a dropdown box using a csv file. The strange thing is it does work when I don't use the csv file.
Regards,
Tom, iMacros Support
Tom, iMacros Support
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
There is a bug in the latest (V7.2.0.8 ) imacros for firefox release for run.imacros.net, as it fails on launching the script. v7.1 works just fine.
Here is a detailed post about it
http://forum.imacros.net/viewtopic.php?f=11&t=12688
to reproduce try this link in a html page
Here is a detailed post about it
http://forum.imacros.net/viewtopic.php?f=11&t=12688
to reproduce try this link in a html page
Code: Select all
<button onclick="top.window.location.href='http://run.imacros.net/?code=Q09ERTpVUkwgR09UTz1odHRwOi8vd3d3LmlvcHVzLmNvbS9pbWFjcm9zL2RlbW8vdjYvZjEvZm9ybS5hc3A=';" class='button'>RUN</button>
Share your imacros easily http://www.sharemacro.com/imacro-directory
Internet Marketing imacros http://www.sharemacro.com
Internet Marketing imacros http://www.sharemacro.com
-
- Posts: 1
- Joined: Tue Apr 19, 2011 12:33 pm
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
There seems to be a bug on version 7.2.0.08.
All my previous recorded "Run everywhere" macros were broken after last update.
I wonder if someone else is facing the same issue. Luckily I had another firefox installation with the previous add-on version and these macros are still working there.
I hope the fix come anytime soon.
Thanks!
All my previous recorded "Run everywhere" macros were broken after last update.
I wonder if someone else is facing the same issue. Luckily I had another firefox installation with the previous add-on version and these macros are still working there.
I hope the fix come anytime soon.
Thanks!
Re: Feature Requests & Bug Fix Requests. ADD YOURS!
BUG: when ajusting clock backward (manually or just time-syncro is on) macro stops running.