What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Hey, a great idea but how do you do it?

Pages: (2): « First [ 1 ] 2 » Last »
Hey, a great idea but how do you do it?
Author: Message:
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
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
Profile PM Web Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
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" :zippy:
12-01-2006 01:50 AM
Profile PM Find Quote Report
Voldemort
Veteran Member
*****

Avatar

Posts: 3504
Reputation: 49
– / – / Flag
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!
[Image: ico-mollytrix16.gif]
12-01-2006 01:50 AM
Profile E-Mail PM Find Quote Report
Baggins
Full Member
***

Avatar
B000ALFAZO

Posts: 387
Reputation: 13
29 / Male / Flag
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
Profile E-Mail PM Web Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
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" :zippy:
12-01-2006 01:55 AM
Profile PM Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
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
Profile PM Web Find Quote Report
alexp2_ad
Scripting Contest Winner
****

Avatar
Who love the chocolate?

Posts: 691
Reputation: 26
36 / Male / –
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
Profile E-Mail PM Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
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
Profile PM Web Find Quote Report
deAd
Scripting Contest Winner
*****

Avatar

Posts: 1060
Reputation: 28
– / Male / Flag
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
Profile PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
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
Profile PM Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On