Tom's Hardware Forums » PDA » Multimedia » Embedd WMP 9 /10 in a Pocket IE Page
 

Embedd WMP 9 /10 in a Pocket IE Page




Word :   Username :  
 
Bottom
Author
 Thread : Embedd WMP 9 /10 in a Pocket IE Page
 
More Information

Archived from groups: microsoft.public.pocketpc.multimedia (More info?)

 

Hello all,

I try to embed the WMP Control 9 and 10 in a webpage of pocket IE for
playing videos and mp3s. I use html and css but nothing worked so far.

Is there an example or source code anywhere?
I googled around for a while, but found nothing.


Roland

Related Product

Register or log in to remove.

More Information

Archived from groups: microsoft.public.pocketpc.multimedia (More info?)

 

Ahh.. Embedding WMP in Pocket IE.

That would require The WMP activex control

Now - here is where it gets rather complicated - I can tell you what I
discovered as far as doing this in a smartphone.

MS released a redistributable package which included the activex
control for 2002, Withdrew it (for an unknown reason - it was buggy but
could be worked with) but didn't release a control for 2003 - Unless
you consider 2003SE with WMP10 - but The version of WMP that your phone
ships with is up to the phone manufacturer.

2005 AKA "Magneto" which ships with WMP10 will probably not have this
problem - but then again you are probably not going to see a decent
number of Magneto devices out there for a few years.

Welcome to my pain.

Roland Hochmann wrote:
> Hello all,
>
> I try to embed the WMP Control 9 and 10 in a webpage of pocket IE for
> playing videos and mp3s. I use html and css but nothing worked so far.
>
> Is there an example or source code anywhere?
> I googled around for a while, but found nothing.
>
>
> Roland

More Information

Archived from groups: microsoft.public.pocketpc.multimedia (More info?)

 

Hello drmiaow,

Thnks for the information.
Now I managed to embed videos for WMP 10. It would be ok if the user
has not WMP 10 in ROM to look for the ActiveX Control 6.4 or 7 or WMP
9 but how do I get the version information which WMP / Active X
control is installed?

greetings,

Roland

On 30 Jun 2005 21:14:03 -0700, drmiaow@gmail.com wrote:

>Ahh.. Embedding WMP in Pocket IE.
>
>That would require The WMP activex control
>
>Now - here is where it gets rather complicated - I can tell you what I
>discovered as far as doing this in a smartphone.
>
>MS released a redistributable package which included the activex
>control for 2002, Withdrew it (for an unknown reason - it was buggy but
>could be worked with) but didn't release a control for 2003 - Unless
>you consider 2003SE with WMP10 - but The version of WMP that your phone
>ships with is up to the phone manufacturer.
>
>2005 AKA "Magneto" which ships with WMP10 will probably not have this
>problem - but then again you are probably not going to see a decent
>number of Magneto devices out there for a few years.
>
>Welcome to my pain.
>
>Roland Hochmann wrote:
>> Hello all,
>>
>> I try to embed the WMP Control 9 and 10 in a webpage of pocket IE for
>> playing videos and mp3s. I use html and css but nothing worked so far.
>>
>> Is there an example or source code anywhere?
>> I googled around for a while, but found nothing.
>>
>>
>> Roland
>

More Information

Archived from groups: microsoft.public.pocketpc.multimedia (More info?)

 

Pocket IE has no method comparable to new
ActiveXObject(objectHandleID) so you wouldn't be able to test for it
without embedding the player.

The old OCX and the new WMP10 object use the player 6.4 and 10 object
models documented on msdn.microsoft.com, so you could load a page
which embeds both (hidden , width / height zero) and test in
javascript for a property of the object, say URL and FileName, which
is different between the object models.

Then just save that to a cookie and away you go, check it on each page
visit at your server and send the correct code for whichever version
is installed.

HTH
Cheers - Neil

On Fri, 01 Jul 2005 06:33:29 GMT, r.hochmann@mairdumont.com (Roland
Hochmann) wrote:

>Hello drmiaow,
>
>Thnks for the information.
>Now I managed to embed videos for WMP 10. It would be ok if the user
>has not WMP 10 in ROM to look for the ActiveX Control 6.4 or 7 or WMP
>9 but how do I get the version information which WMP / Active X
>control is installed?
>
>greetings,
>
>Roland
>
>On 30 Jun 2005 21:14:03 -0700, drmiaow@gmail.com wrote:
>
>>Ahh.. Embedding WMP in Pocket IE.
>>
>>That would require The WMP activex control
>>
>>Now - here is where it gets rather complicated - I can tell you what I
>>discovered as far as doing this in a smartphone.
>>
>>MS released a redistributable package which included the activex
>>control for 2002, Withdrew it (for an unknown reason - it was buggy but
>>could be worked with) but didn't release a control for 2003 - Unless
>>you consider 2003SE with WMP10 - but The version of WMP that your phone
>>ships with is up to the phone manufacturer.
>>
>>2005 AKA "Magneto" which ships with WMP10 will probably not have this
>>problem - but then again you are probably not going to see a decent
>>number of Magneto devices out there for a few years.
>>
>>Welcome to my pain.
>>
>>Roland Hochmann wrote:
>>> Hello all,
>>>
>>> I try to embed the WMP Control 9 and 10 in a webpage of pocket IE for
>>> playing videos and mp3s. I use html and css but nothing worked so far.
>>>
>>> Is there an example or source code anywhere?
>>> I googled around for a while, but found nothing.
>>>
>>>
>>> Roland
>>

More Information

Archived from groups: microsoft.public.pocketpc.multimedia (More info?)

 

i have the setup for wmp for PIE (6.4 object model)

and to check whether the activex is installed ive checked thru searching for
the dll files related to WMP 6.4 for pie.

if u want the setup for the older version let me know thru email.

--

--
Thanks,

Arvind

----------------------------------------------------------------------------
-------------------------
"eRiva Systems" - Where Technology Meets Life, Every Minute.

e-Mail : arvindr@erivasystems.com

Web Site: www.erivasystems.com

Yahoo Messenger : arvish27

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Roland Hochmann" <r.hochmann@mairdumont.com> wrote in message
news:42c4e285.1117453@news.microsoft.com...
> Hello drmiaow,
>
> Thnks for the information.
> Now I managed to embed videos for WMP 10. It would be ok if the user
> has not WMP 10 in ROM to look for the ActiveX Control 6.4 or 7 or WMP
> 9 but how do I get the version information which WMP / Active X
> control is installed?
>
> greetings,
>
> Roland
>
> On 30 Jun 2005 21:14:03 -0700, drmiaow@gmail.com wrote:
>
> >Ahh.. Embedding WMP in Pocket IE.
> >
> >That would require The WMP activex control
> >
> >Now - here is where it gets rather complicated - I can tell you what I
> >discovered as far as doing this in a smartphone.
> >
> >MS released a redistributable package which included the activex
> >control for 2002, Withdrew it (for an unknown reason - it was buggy but
> >could be worked with) but didn't release a control for 2003 - Unless
> >you consider 2003SE with WMP10 - but The version of WMP that your phone
> >ships with is up to the phone manufacturer.
> >
> >2005 AKA "Magneto" which ships with WMP10 will probably not have this
> >problem - but then again you are probably not going to see a decent
> >number of Magneto devices out there for a few years.
> >
> >Welcome to my pain.
> >
> >Roland Hochmann wrote:
> >> Hello all,
> >>
> >> I try to embed the WMP Control 9 and 10 in a webpage of pocket IE for
> >> playing videos and mp3s. I use html and css but nothing worked so far.
> >>
> >> Is there an example or source code anywhere?
> >> I googled around for a while, but found nothing.
> >>
> >>
> >> Roland
> >
>


Go to:
 
  Tom's Hardware Forums » PDA » Multimedia » Embedd WMP 9 /10 in a Pocket IE Page

Google Ads
Ad
News

Seagate ships 5 GByte pocket drive

Published on October 25, 2004

Seagate announced availability of its pocket harddrive drive for users who want to carry their digital data in a small form factor device. The company also has begun shipping a 2.5" portable harddrive with 100 GByte capacity. Read more

Microsoft Patents Page Up & Down Keys

Published on September 02, 2008

Microsoft recently applied for and received Patent #7,415,666. Microsoft has just patented two keys that are on every keyboard that is manufactured on this planet – Page Up & Page Down. Seriously. This patent was originally filed in March 4, 2005 and wa Read more

Google Page Creator automatically builds mobile sites

Published on November 20, 2006

Google has expanded the feature set of its free WYSIWIG HTML editor. The Page Creator now can handle up to five different pages on up to five different .googlepages.com URLs. The tool now also comes with a basic image editor as well as a feature that automatically generates a mobile version of each site. Read more

MySpace gets political with new "Impact" page

Published on March 20, 2007

MySpace is getting political with a new section dedicated to president candidates. The "Impact" page can be reached at impact.myspace.com and has profiles, statements and videos about the presidential candidates in the upcoming 2008 United States election. Read more

Latest Reviews & Articles

Stalker: Clear Sky--Is Your System Ready?

Published on September 30, 2008

Thinking about picking up the latest update to Stalker, but not sure if your graphics subsystem can handle it? Hang on as we take you through a performance tour and demonstrate how the game has been prettied up. Read more

Part 4: Avivo HD vs. PureVideo HD

Published on September 29, 2008

The 780G chipset/Radeon HD 3200 and the MCP78S chipset/GeForce 8200 provide the first integrated graphics solutions that can accelerate Blu-ray playback. We dig deep into how well they work with high-quality Blu-ray 1080p video playback. Read more

Four GeForce 9600 GT Cards Compared

Published on September 26, 2008

Manufacturers really love the first Geforce 9. The graphic chip is fast, the cards are inexpensive, and some retailers offer more than ten variations. Read more

Maxtor's Shared Storage Does NAS At Home

Published on September 25, 2008

What do you do with all the data you collect at home? Network attached storage is the solution. We test Maxtor's Shared Storage II and find that it is also suitable for use in small businesses. Read more