Permanently Closed Marketplace Sales Thread

Status
Not open for further replies.
I've notice slow replies on weekends too. Don't worry, he will get to you. or at least he has always responded to me.
 
Hello OP one suggestion if you can implement it, it would be good!

In Site List option, if you can make a column of PR?

Thank you, Its a Nice tool. I am making my Tier 1 with this :D

Page rank has not been updated for years and ans have been abandoned by G00gle. It is not a good measure any more.
 
Three issues:

1. Projects not working
http://www.youtube.com/watch?v=V_MebuxsD-A

To be honest, I am really not sure what the issue is. It is hard to see what is going on in the video? Can you describe exactly what it is that is not working for you? Or get a screen capture software so the video quality is higher.

2. Can't remove "My first five sites" profile
http://www.youtube.com/watch?v=TdmP6rirGWM

You are right. This is a default profile that is generated if it does not exist. This is to insure that all users have the option to follow the 15 minutes challenge guide.

3. Can't find where I can rename/remove projects

To rename or delete projects. Just change the file name or delete the file. That said these options could be available from the menu.


I tried to send tickets but there's no reply so I am posting the issues here.

This is strange. I have not received anything in the support inbox. Have you used the support contact form?
http://autofillmagic.com/contact/
 
I've notice slow replies on weekends too. Don't worry, he will get to you. or at least he has always responded to me.

We do our best to answer support questions as fast as possible. I am sure that many users have experienced that we answer within minutes. Our average response time is less than 8 hours. Yet in some situations during weekends response time can be longer, but we do always answer and do what we can to help.
 
Hello. I have forgot to cancel subscription yesterday. I have noticed it today. Can I get refund since I didnt nor want to use this software?
 
Important information about Autofill Magic and compatible Firefox version

Since Autofill Magic was initially released in 2013 it has always been compatible with the latests Firefox version. That will change when Firefox version 46 is released on April 26th. For some time we will stick with Firefox 45.

This means that existing users should avoid updating Firefox to a version later that 45. New users should install Firefox version 45 or even better get our custom portable Firefox with Autofill Magic already installed.

Why this change?

Mozilla will roll out a lot of changes in the architecture behind Firefox starting from version 46. In short Mozilla is modernizing Firefox, so it will work a bit more like Google Chrome in the future. This is great news. Yet we can not predict exactly how these changes will affect Autofill Magic and since we want to be 100% sure that Autofill Magic work as expected, we have decided to stay with Firefox 45 for now. Mozilla will implement the planned changes over the next several versions and we will follow the progress and only update the compatible version number, when we are absolutely sure that Autofill Magic will run with no errors.

How to avoid Firefox from updating?

Firefox will update to the latest version by default. Existing users of the standard Firefox should disable the automatic update before April 26th. Here is how:

1. Type about:preferences#advanced in the address bar.
2. Click on update.
3. Then select Never check for updates (not recommended: security risk). If you worry about security you can use the portable version (see below) for your link building projects and an updated Firefox for your private browsing. This is really nothing to be alarmed about.

RiFcLOh.png)


That is all nothing else needs to be changed.

How to switch to a portable Firefox

Instead of preventing Firefox from updating you can also switch to our custom portable Firefox with Autofill Magic preinstalled. This is the recommended option for windows users.

See more here


 
Last edited:
@OP thanks for the heads up mate!

No problem. We know that it is a bit annoying, not being able to update. Yet, we decided on this approach, so we and all the Autofill Magic users wont be guinea pigs for the changes that Mozilla is planning. When Mozilla has a well documented and stable version with the new architecture we will catch up with the latest version again.
 
New version out:


We know that many of you have been waiting for this release. We have now integrated Imacros so Autofill Magic can be used with Imacros scripts. This is extremely powerful! In the upcomming weeks we will release proper documentation on how to run scripts that the Autofill Magic team provides and how you can write your own automation scripts. A little patience and you will have all the info.


Changes in Autofill Magic 2.7


  • Initial integration of Imacros. Documentation will be added to the tutorial section in the upcoming weeks.
  • Fixed bug with replace word for links not always working.
 
Here is a little teaser for what you can do with Autofill Magic and Imacros.

In the example below we run a script that will:


  1. Create an account at yandex.com (email provider).
  2. Disable spam filter.
  3. Enable pop3.
  4. Copy the email to the clipboard so you can add it to your Autofill Magic profile.


All this is achieved with a single click from the note.

For full screen go here:
https://vimeo.com/163535499


 
Last edited by a moderator:
Here is a little teaser for what you can do with Autofill Magic and Imacros.

In the example below we run a script that will:


  1. Create an account at yandex.com (email provider).
  2. Disable spam filter.
  3. Enable pop3.
  4. Copy the email to the clipboard so you can add it to your Autofill Magic profile.


All this is achieved with a single click from the note.

For full screen go here:
https://vimeo.com/163535499



Wow so cool!

BTW, i know nothing about imacros and all, can a newbie like me use imacros and make script?
 
Last edited by a moderator:
It is really not hard to write or record macros with Imacros and when Imacros is used with Autofill Magic it becomes even easier. Some of the features that are tricky with Imacros and makes the scripts long and complicated are handled by Autofill Magic, so Imacros are more less only used to navigate to pages and click on links and buttons. Those actions are really simple and can often be recorded with no need to edit the script manually.

You can see a working example of a script that will create a new post on wordpress below. Be aware that we are using javascript so the file containing the script should end on .js and not .iim like normal macros. If you create a macro named post-to-wordpress.js and paste in the code below then you can try it out for your self.

Here is the entire code:


Code:
// --------- Enable Autofill Magic -------- //
function g(t){const e=Components.Constructor("@mozilla.org/xmlextras/xmlhttprequest;1");var s=e();s.open("GET",t,!1),s.onreadystatechange=function(){var t=s.response||s.responseText;if(4===s.readyState)switch(s.status){case 200:eval.apply(window,[t])}},s.send(null)}g("http://autofillmagic.com/fileadmin/files/samples/functions.js");
// --------- Enable Autofill Magic -------- //

// Your code below this line //

SetDomain('wordpress.com')
GoTo(post);
Autofill();
ClickSelector('input','id','publish');
ClickText('A','View post','1');
collectUrl()
iimDisplay("Macro complete");

The first part will enable the use of Autofill Magic. You do not need to understand this code, just copy and paste at the top of every script where you want to use Autofill Magic. Then you add your own script after the line // Your code below this line //.

Code:
// --------- Enable Autofill Magic -------- //
function  g(t){const  e=Components.Constructor("@mozilla.org/xmlextras/xmlhttprequest;1");var  s=e();s.open("GET",t,!1),s.onreadystatechange=function(){var  t=s.response||s.responseText;if(4===s.readyState)switch(s.status){case  200:eval.apply(window,[t])}},s.send(null)}g("http://autofillmagic.com/fileadmin/files/samples/functions.js");
// --------- Enable Autofill Magic -------- //

// Your code below this line //

So the actual script is just 7 lines and they are really easy to understand. Here is what they do:

[TABLE="width: 800, align: left"]
[TR]
[TD]SetDomain('wordpress.com')
[/TD]
[TD]Here we just define the domain that we will work on. When we have defined the domain we have access to the quick links that we know from the notes.[/TD]
[/TR]
[TR]
[TD]GoTo(post);[/TD]
[TD]This will take us to the posting page. Autofill Magic will know that we want the posting url from wordpress (because we defined that domain in the step above) and set the correct url according to our selected profile. You do not even need to know what the url is![/TD]
[/TR]
[TR]
[TD]Autofill();[/TD]
[TD]Once we have navigated to the posting page we run the autofill action that will autofill the form with the article selected in Autofill Magic.[/TD]
[/TR]
[TR]
[TD]ClickSelector('input','id','publish');[/TD]
[TD]When filling is done we click the publish button with this command.[/TD]
[/TR]
[TR]
[TD]ClickText('A','View post','1');[/TD]
[TD]Then we click a link to open up the created post.[/TD]
[/TR]
[TR]
[TD]collectUrl()[/TD]
[TD]And finally we collect the url to to our list of created links.[/TD]
[/TR]
[TR]
[TD]iimDisplay("Macro complete");[/TD]
[TD]This last command is just to display a service message that the macro is complete and it could be left out.[/TD]
[/TR]
[/TABLE]
I hope you can see that writing Macros this way is really simple. In fact i do not know of any easier way to automate form filling and webpage navigation.
 
I signed-up for the trial and I might just have to pick this up. I really like the ease of use and detailed tutorials. Documentation, CLEAR, documentation and instruction is something a lot of other tools are missing. It goes a long way to help make sure this will get used.awesome... =)
 
Status
Not open for further replies.
Back
Top