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
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
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
It would be definitely easyer if you used a bookmark with "javascript:showskip()" as destination
nice tut anyway
nice tut anyway
Axel wrote:It would be definitely easyer if you used a bookmark with "javascript:showskip()" as destinationBut 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.
nice tut anyway
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
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
Eh, difference in code doesn't matter to me. I would still like to see a tutorial for it though. 

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
Copyright Information
Copyright © Codenstuff.com 2020 - 2023