LithiumLi Posted January 13, 2009 Posted January 13, 2009 (edited) I finally get to share my simple script with everyone here on Autoit. This is not much but it was a start for me All you do is go to youtube find a video 18+ and enter the link in here no need for registration. $Link = InputBox("YouTube Age Bypass." , "Bypass YouTube Age Checker." , "" , "" , 250 , 30) If Not $Link = "" Then $ChopLink = StringReplace($Link , "youtube.com/watch?v=" , "youtube.com/watch/v/") ShellExecute($ChopLink) EndIf Edited January 13, 2009 by LithiumLi
madflame991 Posted January 13, 2009 Posted January 13, 2009 Use ShellExecute('http://blabla.com') instead of _IECreate()... it opens the site with the default browser, not IE Game Game Gadget! - read about indie games, gadgets, chiptunes and demoscenesAssembly-like language interpreter and custom machine emulatorSuper Mario Screen Mate - official website or autoit forum pageCogut - Puzzle Game + Editor like sokoban and others
gseller Posted January 13, 2009 Posted January 13, 2009 Use ShellExecute('http://blabla.com') instead of _IECreate()... it opens the site with the default browser, not IE@ madflame991 - That is a good lil tidbit of info.. I didn't think of using that.. Thanks@ LithiumLi - Nice start, I don't use the 18+ area as a Christian but can still learn from you script. Thank You for sharing...
LithiumLi Posted January 13, 2009 Author Posted January 13, 2009 (edited) Use ShellExecute('http://blabla.com') instead of _IECreate()... it opens the site with the default browser, not IE I wanted to use the Run command instead of IE functions but had problems ill take a look at shellexecute Thanks. @ madflame991 - That is a good lil tidbit of info.. I didn't think of using that.. Thanks @ LithiumLi - Nice start, I don't use the 18+ area as a Christian but can still learn from you script. Thank You for sharing... lol Thanks but I didn't make this script to watch adult content but there are some people who flag videos as 18+ because of language or violence and do that so the video doesn't get banned. Edited January 13, 2009 by LithiumLi
gseller Posted January 13, 2009 Posted January 13, 2009 Oh, I apologize.. I am not judging.. Just commending the code..
Thamiel Posted April 10, 2009 Posted April 10, 2009 (edited) Just a bit of a tweak gets you $Link = InputBox('YouTube Age Bypass.' , 'Bypass YouTube Age Checker.' , ClipGet() , ' M' , 250 , 30) If StringInStr($Link, 'http://www.youtube.com/watch?v=') <> 0 Then $FixedLink = StringReplace($Link, 'http://www.youtube.com/watch?v=', 'http://www.youtube.com/watch/v/') Else $FixedLink = 'http://www.youtube.com/watch/v/' & StringRight($Link, 11) EndIf ShellExecute($FixedLink) Of course for most it seems no matter what the link after you've clicked it ends up being, when right click and choose to copy link it is always in the format 'http://www.youtube.com/watch?v=' Edited April 10, 2009 by Thamiel
JRowe Posted April 10, 2009 Posted April 10, 2009 Can access any content via google video, even though their interface sucks. imo. [center]However, like ninjas, cyber warriors operate in silence.AutoIt Chat Engine (+Chatbot) , Link Grammar for AutoIt , Simple Speech RecognitionArtificial Neural Networks UDF , Bayesian Networks UDF , Pattern Matching UDFTransparent PNG GUI Elements , Au3Irrlicht 2Advanced Mouse Events MonitorGrammar Database GeneratorTransitions & Tweening UDFPoker Hand Evaluator[/center]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now