|  Hey, a great idea but how do you do it? | 
| Author: | 
Message: | 
roflmao456 
Skinning Contest Winner 
    
  
  
 
Posts: 955 Reputation: 24 
31 /   /   
Joined: Nov 2006
 
Status: Away
 
 | 
| 
O.P.  Hey, a great idea but how do you do it?
 is it possible to add Youtube videos (flash embedded) on an interface window? 
[quote]  
Ultimatess6: What a noob mod  
 |   
 | 
| 12-01-2006 01:32 AM | 
 | 
  | 
Spunky 
Former Super Mod 
     
  
  
 
Posts: 3656 Reputation: 61 
37 /   /   
Joined: Aug 2006 
 | 
| 
 RE: Hey, a great idea but how do you do it?
 No. There is no control for this. 
<Eljay> "Problems encountered: shit blew up"    
 |   
 | 
| 12-01-2006 01:50 AM | 
 | 
  | 
Voldemort 
Veteran Member 
     
  
  
 
Posts: 3502 Reputation: 49 
– / – /   
Joined: Jul 2005
 
Status: Away
 
 | 
| 
 RE: Hey, a great idea but how do you do it?
 Launching google player from a script xD 
 
 *All posts are a purely speculative hypothesis based on abstract reasoning.  
Not my daughter, you bitch!
  
 
 |   
 | 
| 12-01-2006 01:50 AM | 
 | 
  | 
Baggins 
Full Member 
   
  
  
B000ALFAZO
  
Posts: 387 Reputation: 13 
30 /   /   
Joined: Oct 2006 
 | 
| 
 RE: Hey, a great idea but how do you do it?
 Not with the built in interface window, but if you had a dll you could create one.  Not worth the effort for most scripts though 
 |   
 | 
| 12-01-2006 01:52 AM | 
 | 
  | 
Spunky 
Former Super Mod 
     
  
  
 
Posts: 3656 Reputation: 61 
37 /   /   
Joined: Aug 2006 
 | 
 RE: Hey, a great idea but how do you do it?
Why not use  code:
  
var IE = new ActiveXObject("InternetExplorer.Application"); 
  
Then remove the address bar/toolbars etc and goto the videos url in that?  
 This post was edited on 12-01-2006 at 01:56 AM by Spunky.
<Eljay> "Problems encountered: shit blew up"    
 |   
 | 
| 12-01-2006 01:55 AM | 
 | 
  | 
roflmao456 
Skinning Contest Winner 
    
  
  
 
Posts: 955 Reputation: 24 
31 /   /   
Joined: Nov 2006
 
Status: Away
 
 | 
O.P.  RE: Hey, a great idea but how do you do it?
quote: Originally posted by SpunkyLoveMuff 
Why not use code:
  
var IE = new ActiveXObject("InternetExplorer.Application"); 
   
Then remove the address bar/toolbars etc and goto the videos url in that?
  
example please i dont know how to use that kind of activexobject
  
[quote]  
Ultimatess6: What a noob mod  
 |   
 | 
| 12-01-2006 02:04 AM | 
 | 
  | 
alexp2_ad 
Scripting Contest Winner 
    
  
  
Who love the chocolate?
  
Posts: 691 Reputation: 26 
38 /   / – 
Joined: May 2004
 
Status: Away
 
 | 
 RE: RE: Hey, a great idea but how do you do it?
quote: Originally posted by roflmao456 
 
example please i dont know how to use that kind of activexobject 
 
  code:
  
var IE = new ActiveXObject("InternetExplorer.Application"); 
IE.toolbar = false; 
IE.menubar = false; 
IE.addressbar = false; 
IE.visible = true; 
IE.navigate("http://www.youtube.com/"); 
  
EDIT:  [insert generic "learn to use google" comment here]  
 This post was edited on 12-01-2006 at 02:08 AM by alexp2_ad.
 |   
 | 
| 12-01-2006 02:07 AM | 
 | 
  | 
roflmao456 
Skinning Contest Winner 
    
  
  
 
Posts: 955 Reputation: 24 
31 /   /   
Joined: Nov 2006
 
Status: Away
 
 | 
O.P.  RE: Hey, a great idea but how do you do it?
thanks but i also need to know like say to get the URL after the 
http://youtube.com/v/
like
 http://www.youtube.com/v/YzWSSp9s6BY
the "YzWSSp9s6BY" is what im aiming for.. like to exclude everything except the url.
  
[quote]  
Ultimatess6: What a noob mod  
 |   
 | 
| 12-01-2006 02:16 AM | 
 | 
  | 
deAd 
Scripting Contest Winner 
     
  
  
 
Posts: 1060 Reputation: 28 
– /   /   
Joined: Jan 2006 
 | 
| 
 RE: Hey, a great idea but how do you do it?
 It may be possible using the Browser control, but I know that's hard if not impossible from a script...otherwise you can't implement it into a Plus! window. you'd have to use external applications (IE, firefox, a video player, etc) 
 |   
 | 
| 12-01-2006 02:34 AM | 
 | 
  | 
CookieRevised 
Elite Member 
     
  
  
 
Posts: 15494 Reputation: 173 
– /   /   
Joined: Jul 2003
 
Status: Away
 
 | 
 RE: Hey, a great idea but how do you do it?
quote: Originally posted by roflmao456 
thanks but i also need to know like say to get the URL after the 
 
http://youtube.com/v/ 
 
like 
 
http://www.youtube.com/v/YzWSSp9s6BY 
 
the "YzWSSp9s6BY" is what im aiming for.. like to exclude everything except the url.
  that's pure string manipulation. Doesn't even have anything todo with URLs or whatever.
 
string is " http://www.youtube.com/p.swf?video_id=YzWSSp9s6BY&eurl=http%3A//msghelp.net/showblahblahblahblahblah", so search for " video_id=" within that string and get everything after that until the next " &" character.
 
Then stick that found substring after a new string " http://youtube.com/v/".  
 This post was edited on 12-01-2006 at 02:55 AM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.  
 |   
 | 
| 12-01-2006 02:42 AM | 
 | 
  | 
| 
Pages: (2): 
« First
  
 [ 1 ]
 2
 
»
 
Last »
 | 
| 
 |