Page 1 of 1

ADF.LY SKIPPER

Posted: Mon Mar 14, 2011 6:41 pm
by Codex
Hello and welcome to my tutorial which will show you how to skip ad.ly ads link.

Adf.ly is a site that shortens your urls and adds ads to them, but allows you to skip ads after 5 seconds.

Controls needed:
Webbrowser - webbrowser1
button - button1
textbox - textbox1

Code needed:
Code: Select all
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        WebBrowser1.Navigate(TextBox1.Text)
    End Sub

    Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
        TextBox1.Text = WebBrowser1.Url.ToString
        If WebBrowser1.Url.ToString.Contains("adf.ly") Then
            WebBrowser1.Navigate("javascript:showSkip()")
            WebBrowser1.Document.GetElementById("skip_ad_button").InvokeMember("click")
        End If
    End Sub
Now test it, and see that it works (confirmed working last 2011/03/14)
Don't forget to comment, rate, +rep

I made this 100% by myself, and i will show how to skip more ad sites.

Thanks
CodexVideos

Re: ADF.LY SKIPPER

Posted: Mon Mar 14, 2011 6:50 pm
by Axel
It would be definitely easyer if you used a bookmark with "javascript:showskip()" as destination
nice tut anyway

Re: ADF.LY SKIPPER

Posted: Mon Mar 14, 2011 7:17 pm
by Codex
Axel wrote:
It would be definitely easyer if you used a bookmark with "javascript:showskip()" as destination
nice tut anyway
But that would be for normal webbrowsers, this tutorial was aimed for vb.net users. And not only does this show the skip button, but it also presses it as soon as the page finishes loading.

Re: ADF.LY SKIPPER

Posted: Mon Mar 14, 2011 8:49 pm
by GoodGuy17
Can you do this for MegaUpload or RapidShare?

Re: ADF.LY SKIPPER

Posted: Mon Mar 14, 2011 8:49 pm
by Codex
I guess so but the code will be little different.

Re: ADF.LY SKIPPER

Posted: Mon Mar 14, 2011 8:52 pm
by GoodGuy17
Eh, difference in code doesn't matter to me. I would still like to see a tutorial for it though. :)

Re: ADF.LY SKIPPER

Posted: Mon Mar 14, 2011 9:57 pm
by Codex
I will try my best to see if it works, and if it does i will make tut + program, but i guess they change the method everytime to stop anti-waiting.