ADF.LY SKIPPER
Posted: Mon Mar 14, 2011 6:41 pm
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:
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
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
Now test it, and see that it works (confirmed working last 2011/03/14) 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
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