Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8284251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T11:02:24+00:00 2026-06-08T11:02:24+00:00

I have an embedded silverlight video player on our site, which is loaded in

  • 0

I have an embedded silverlight video player on our site, which is loaded in via an iframe (hosted on Azure).

On our site, the top navigation is somewhat long and it actually appears BEHIND the silverlight player you can’t see the menu.

I’ve looked at a few options to solve this, it looks like setting the windowless=true property should work ( http://msdn.microsoft.com/en-us/library/cc838156(v=vs.95).aspx ).. That solutions seems to work in IE, but in Chrome and Firefox if the windowless is set to true it attempts to download the page. Any ideas, thoughts?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T11:02:26+00:00Added an answer on June 8, 2026 at 11:02 am

    After a lot of attempts we finally were able to get this to work in: IE, Firefox, and Chrome.


    In the object data set the following tags:

           <param name="background" value="transparent">
           <param name="windowless" value="true">
    

    Also set autoload and autoplay to be true in the initprams.

           <AutoLoad>true</AutoLoad>
           <AutoPlay>true</AutoPlay>
    

    This is what our working full html looks like:


           <object data="data:application/x-silverlight," type="application/x-silverlight" width="100%" height="100%">
            <param name="source" value="MediaPlayerTemplate.xap"/>
            <param name="background" value="transparent" />
            <param name="windowless" value="true" />
            <param name="onerror" value="onSilverlightError" />
            <param name="autoUpgrade" value="true" />
            <param name="minRuntimeVersion" value="3.0.40624.0" />            
            <param name="enableHtmlAccess" value="true" />
            <param name="enableGPUAcceleration" value="true" />
            <param name="initparams" value='playerSettings = 
                        <Playlist>
                            <AutoLoad>true</AutoLoad>
                            <AutoPlay>true</AutoPlay>
                            <DisplayTimeCode>false</DisplayTimeCode>
                            <EnableCachedComposition>true</EnableCachedComposition>
                            <EnableCaptions>true</EnableCaptions>
                            <EnableOffline>true</EnableOffline>
                            <EnablePopOut>true</EnablePopOut>
                            <StartMuted>false</StartMuted>
                            <StretchMode>None</StretchMode>
                            <Items>
                                <PlaylistItem>
                                    <AudioCodec>WmaProfessional</AudioCodec>
                                    <Description></Description>
                                    <FileSize>90818591</FileSize>
                                    <FrameRate>5</FrameRate>
                                    <Height>384</Height>
                                    <IsAdaptiveStreaming>false</IsAdaptiveStreaming>
                                    <MediaSource>i201700-1.wmv</MediaSource>
                                    <ThumbSource>201700-1_Thumb.jpg</ThumbSource>
                                    <Title>201700-1</Title>
                                    <VideoCodec>VC1</VideoCodec>
                                    <Width>512</Width>
                                </PlaylistItem>
                            </Items>
                        </Playlist>'/>       
            <!--  unused valid silverlight init parameters
            <param name="enableFrameRateCounter" value="bool" />
            <param name="enableRedrawRegions" value="bool" />
            <param name="maxFrameRate" value="int" />
            <param name="allowHtmlPopupWindow" value="bool"/>
            <param name="background" value="colorValue"/>
            <param name="splashScreenSource" value="uri"/>
            <param name="fullScreen" value="bool"/>
            <param name="onFullScreenChanged" value="functionname"/>
            <param name="onResize" value="functionname"/>
            <param name="onSourceDownloadComplete" value="functionname"/>
            <param name="onSourceDownloadProgressChanged" value="functionname"/>
            <param name="windowLess" value="bool"/>
             --> 
    
             <div onmouseover="highlightDownloadArea(true)" onmouseout="highlightDownloadArea(false)">
                    <img src="700-1_Thumb.jpg" style="position:absolute;width:100%;height:100%;border-style:none;" onerror="this.style.display='none'"/>
                    <img src="Preview.png" style="position:absolute;width:100%;height:100%;border-style:none;" onerror="this.style.display='none'"/>                                            
                    <div id="overlay" class="fadeLots" style="position:absolute;width:100%;height:100%;border-style:none;background-color:white;"/></div>
                    <table width="100%" height="100%" style="position:absolute;"><tr><td align="center" valign="middle">                       
                    <img src="http://go2.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight"> 
                    </td></tr></table>                   
                    <a href="http://go2.microsoft.com/fwlink/?LinkID=124807">
                        <img src="" class="fadeCompletely" style="position:absolute;width:100%;height:100%;border-style:none;" alt="Get Microsoft Silverlight"/>
                    </a>                   
             </div>             
        </object>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have embedded a youtube video into a website via a drupal module (I'm
I have a silverlight app embedded in an IFRAME in Dynamics CRM... calls after
I have a Silverlight 4 application which is hosted in asp.net website as ClientBin
I have embedded flowplayer in my site but the flowplayer is not playing video
I have created a web application with a Silverlight project embedded in it, using
In my Java code I have embedded a SQL query which fetches data from
I have an application that is built using ASP.NET, with an embedded Silverlight Object
I have embedded 3 'TABS' on top of a form. Each tab has a
I have a C# Silverlight app that lets the user select which spreadsheet they
I have embedded Yakov thin fonts with CSS via @font-face but the fonts are

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.