ADF.LY SKIPPER

Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
7 posts Page 1 of 1
Contributors
User avatar
Codex
Coding God
Coding God
Posts: 2028
Joined: Wed Mar 31, 2010 5:50 pm

ADF.LY SKIPPER
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
We shall let the revolution begin.. the revolution for freedom, freedom against censorship. We shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender
User avatar
Axel
Coding God
Coding God
Posts: 1928
Joined: Sun Jun 27, 2010 9:15 pm

Re: ADF.LY SKIPPER
Axel
It would be definitely easyer if you used a bookmark with "javascript:showskip()" as destination
nice tut anyway
http://vagex.com/?ref=25000
User avatar
Codex
Coding God
Coding God
Posts: 2028
Joined: Wed Mar 31, 2010 5:50 pm

Re: ADF.LY SKIPPER
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.
We shall let the revolution begin.. the revolution for freedom, freedom against censorship. We shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

Re: ADF.LY SKIPPER
GoodGuy17
Can you do this for MegaUpload or RapidShare?
User avatar
Codex
Coding God
Coding God
Posts: 2028
Joined: Wed Mar 31, 2010 5:50 pm

Re: ADF.LY SKIPPER
Codex
I guess so but the code will be little different.
We shall let the revolution begin.. the revolution for freedom, freedom against censorship. We shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

Re: ADF.LY SKIPPER
GoodGuy17
Eh, difference in code doesn't matter to me. I would still like to see a tutorial for it though. :)
User avatar
Codex
Coding God
Coding God
Posts: 2028
Joined: Wed Mar 31, 2010 5:50 pm

Re: ADF.LY SKIPPER
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.
We shall let the revolution begin.. the revolution for freedom, freedom against censorship. We shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender
7 posts Page 1 of 1
Return to “Tutorials”