Build ANY Application Yourself In Minutes!

the problem i have w/this is that i can't be using my computer for anything while the macro is running...

and like the conditions have to be *perfect* so if i have the wrong window active or something the macro won't run.
 
thank you jonny , this opened my eyes

I know another handy software that practically do this. it's called autoit, I used it for other purposes but never tried to create account with however I found a nice script for creating youtube account (of course I'm gonna share :rolleyes:)
I really recommend it as it's very easy

PS: take a look at tutorials the help file it's very handy
don't forget to share if you make something interesting with it

hxxp://3w.autoitscript.com/autoit3/downloads.shtml
hxxp://3w.zshare.net/download/628105021087f495/
regards,
-yoozy
 
Last edited:
One application i really want to build.A character on my site that will talk and welcome my customer everytime they enter my page.Is it possible to do it?
 
One application i really want to build.A character on my site that will talk and welcome my customer everytime they enter my page.Is it possible to do it?

that's can't be made with this maybe you need "sitepal" it's ready to use talking character for your website just google it you'll find out

~Yoozy
 
I was using macro express but winautomation is much better.

Thx
 
Thank you jonny110,
I do so much of the same stuff everyday that this is a big turning point for me. I have 1-3 computers lying around depending on who is using what (wife and 3 kids), that all 3 computers could be working for me in some capacity.

All night I have been thinking of all the repetive things that could be automated.

Thank you very much,
Dennis
 
I just don't know how to make macros which read urls from a file and open them in the browser.

Can somebody help me, please?
 
Hey.

I'm just wondering how your automating Gm@il accounts with the phone verification now? I am assuming you are mass creating?
 
anyone share it on rapidshare or media fire again its reached the 10 download limit
 
I just don't know how to make macros which read urls from a file and open them in the browser.

Can somebody help me, please?

1. Make a text file with the urls in, each one on a seperate line.
2. Use the files > read file function (read as a list)
3. Make a list
4. Save the list as a variable, ie. %list%
5. Move mouse to address bar
6. Send keys %list%{enter}

Jobs a gud un!

Hey.

I'm just wondering how your automating Gm@il accounts with the phone verification now? I am assuming you are mass creating?

Mmmm haven't come across phone verification. I rotate ips every account and am in UK if this makes a difference i dont know.

Thank you jonny110,
I do so much of the same stuff everyday that this is a big turning point for me. I have 1-3 computers lying around depending on who is using what (wife and 3 kids), that all 3 computers could be working for me in some capacity.

All night I have been thinking of all the repetive things that could be automated.

Thank you very much,
Dennis

No worries dennis. Glad to be a help!
 
Still messing with it. I have a lot to learn with it.
I have noticed that if you need to push a button sometimes it is just better to get the source code and enter that into the url bar.

I wish there was some more tutorials. The ones on the winautomation site are easy to breeze through but they are not exactly the tougher tasks.


Gotta keep on going. Lots more to automate. :)


Thank you again jonny110


Dennis
 
If you let me know aht you are getting stuck with perhaps i could help?
 
Thanks

Right now I am just feeling my way through the program.

However, I might be making mistakes that could be slowing the process down.

Example

I am going to auto post to a bulletin board so I set up these steps.

I read text from a file (this is my first blob of spam content)
I create a variable called FirstContent

I then read text from a file (this is my list of bb urls)
I create a variable called Links

I read text from a file (this is my second blog of spam content)
I create a variable called SecondContent

-----------------------
The whole purpose of above is to put my links in between some auto generated content. The goal is to see if I can loop it so the FirstContent and SecondContent increments to read from different content files. Plus I will try to add the newly created forum post back into the links file so then the next post will now have a link to it.
------------------------

I have not even tackled that part yet. The issue right now is I read from the files and then I use send keys to send all the info.
Regrettfully it seems to type it all out character by character. So it takes 3 minutes for the post to submit.

The command looks like this
%ContentFirst%{Enter}%ForumLinks%{Enter}%ContentSecond%



Is there a way to speed up the send keys process or do I need to rethink this and actually open up each file and copy and paste. That to me seems like it would lead to errors with trying to go back to the forum post and finding the end of the text to paste the next part.


Any help would be appreciated. I think I just need to realize the most effecient way to do things.


Thank you,
Dennis
 
Any1 got an idea on how to copy a url from the adress bar and save it on a txt file. So that i can use this url for another win automation software which requires this url.
 
Jus my 2 cents, where Macro's are good, actual programming is always betetr as you can do all sorts of these things in all sorts of ways. but, pick the right hammer for the job for sure
 
Jus my 2 cents, where Macro's are good, actual programming is always betetr as you can do all sorts of these things in all sorts of ways. but, pick the right hammer for the job for sure

I don't doubt it. However, I am in a situation where it is very hard for me to focus on learning new stuff with three kids a wife, and still doing my day to day business to provide money. I would love to learn programming but quiet time is very hard to come by in my house.

So this type of program I can actually start putting things into practice within a day that cuts down on some of my current tasks. Within more time I can probably replace most of my daily repetitive tasks and even develop somethings a little more advanced.

I can easily seeing using this program for link wheels and such. A few days of struggling to get things together and that program will only need to be modified when the web 2.0 property switches things up.

It might never be as good as a programmer but if I can accomplish more than I was before it is a good start for me.
 
Hello jonny110,
Was able to get the first half solved.

Had to rethink how to do things. Started out by putting the text files I was reading into a temp.txt file. Launch temp.txt
Then control A and control C to put it into memory.

Then I go through the rest of the macro and when it is time to insert I do a control V.

Now onto grabbing the URL and putting it into BB code format into a link file that appends plus putting everything into a loop.

Should keep me busy for just a bit. :)
 
Any1 got an idea on how to copy a url from the adress bar and save it on a txt file. So that i can use this url for another win automation software which requires this url.

Mind you this is just my second day using it but the basics are
Use the record macro to get the active page info and then take the mouse to the url bar. This will give you the coordinates that you need. Stop the recording. Convert to actions and then go in and modify. It should look like this basically.


1. Send mouse click
Send a left mouse button down event at 507, 131 (Relative to Active Window) ******* Coordinates for my url bar yours will be a little different

2. Send Keys
Enter the following into the text box. {LControlKey}({C})
3 Get Clipboard Text
Here You will need to set a variable . Like CurrentLinkUrl
4. Write Text To File
Browse to a file on your system where you want the url info placed. In the text area put the variable. If you used the one from above it would be %CurrentLinkUrl%

If you are trying to create a list remember to select append instead of replace.

That should do it.
 
Hey,

Nice post. I'm just wondering I have automate 6 enterprise do you know if it will do the same as winautomation or will I need that one.
I am new to this app building so I'm not sure if I can make it .exe when app is complete.

It looks like it will be great once I get passed the learning curve.

Any comparison on the two programs would be greatly appreicated.

Cheers
 
Back
Top