Software Development Network Logo
  • Windows Vista
  • Smart Devicet
  • SharePoint Products
  • IE Development
  • Visual Basic
  • Visual Studio
  • Visual FoxPro
  • Windows Forms
  • Audio and Video
  • Visual C++
  • Visual C#
  • Microsoft ISV
  • VS Team System
  • .NET Development
  • SQL Server

Software Development Network >> Audio and Video

Audio and Video

New Question

How can I hide picture in DIV?
IWMDMProgress
Starting Focus Stuck
adding a pause in script
track stream duration
Set Cursor Image
Authoring software
How Can I Write a File?
How to make ActiveX Callback functioning
File upload with Sidebar Gadget

Top Answerers

desy
Bapa
Dawa Tsering
lasa
Montana Jones
AsifHameed1
Nickeay
Nightmare_BE
varunsagii
Wicket
AEL Data
Only Title

Answer Questions

  • Tej62007 XPath Error

    I'm getting an error when using the xpath expression below. <par begin="id('BTN_MENU')[state:actioned()=true()] and id('MENU')[style:x()='-450px']" I want to evaluate the values of two different elements, but cannot get it working. Any help appreciated. Try this: <par begin="(id('BTN_MENU')[state:actioned()=1] and id('MENU')[style:x()='-450px'])" That worked - thanks! ...Show All

  • chubbysilk Problem with 'content ID' while creating directory in 'persistent storage'.

    Hello Everybody.... In the java script for creating a directory (FileIO_createDirectory), do we have to specify the content id also If we don't specify, whether the directory will be created or some exception will be thrown I am giving two examples below, please tell in each case what will happen. 1. FileIO.createDirectory("file:///required/app1",callback_createDirectory); 2. FileIO.createDirectory("file:///required/11111111-1111-1111-1111-111111111111/app1",callback_createDirectory); Another problem you'll have is encryption. Two different discs can have access to the same the file, but both must have the same title key available to them and set. Otherwise, you'll cause the player to crash. ...Show All

  • Jason Mueller Basic video encoding help

    i'm going to be doing my first video encoding so forgive the stupid questions... i've noticed that often i'll watch some site's wmv formatted videos that seem to have to wait until the entire file is downloaded before it starts playing and others that start immediately... is this due to a difference in how the file was encoded Try posting your question here: http://www.microsoft.com/windows/windowsmedia/community/newsgroups/WindowsMedia/default.mspx dg=microsoft.public.windowsmedia.encoder&lang=en&cr=US Off the top of my head, though, I would guess that this has more to do with the distribution mechanism for the content -- whether its is being streamed or downloaded, for instance. But try you ...Show All

  • m.shuhrat uncompressed YUV to EVR

    Hi, I am writing a simple YUV media source to take in .yuv bytestreams and send it to the EVR. I have modified the MFT_Grayscale to act as a dummy transform to copy the yuv samples to the EVR. I am also using the playbackFX sample for the player. I'm having a problem with the player just showing a black screen, as if no samples are being sent to the EVR. I have verified that the samples are being processed in the dummy transform with the correct image size and attributes for my given yuv sample. I have tried other yuv samples and all just display a black screen, but the samples are being processed for sure. Is there any way to debug this to see if the samples are being sent to the EVR Or does anyone have any clues why this is happeni ...Show All

  • dki How to disable default key handler?

    I have following problem: My HD-DVD App contains some buttons. By default I can move between buttons use arrow keys. I want make own key handler for moving between buttons. I want to use own algorithm for move. I make following code: addEventListener("controller_key_down", keyHandler, true); function keyHandler(evt) { var disableDefaultKeyHandler = true; switch (evt.key) { case 38: // VK_UP // My Key Handler break; ... default: disableDefaultKeyHandler = false; break; } if(disableDefaultKeyHandler) { evt.stopPropagation(); evt.preventDefault(); } } But sometimes default key handler is called and focus moves to incorrect button. I think that my key handler(keyHandler function) so ...Show All

  • Sam rezaii How to install a gadget

    I'm trying to pack a gadget into a product installation. After copy my gadget to programfiles/windows sidebar/shared gadgets/ , users can see the gadget in the gadgets panel, but how can i add my gadget to the sidebar automaticly Modify settings.ini I expect the window title is different. You'll have to change the AutoIT script to cater for multiple languages and recompile it. Having said that, I've not tried in on RTM. Your exe doesn't work on my computer (Vista Ultimate RTM simplified chinese version)... Just like Stanimir Stoyanov said. If it could run, a security dialog will popup, is it Is there anyway to install a gadget silently You can't auto add it to the Sidebar. MS would prefer t ...Show All

  • Surit Roy Gadget Remove issue

    Hi, I am trying to create a gadget which has a media player in it using the OBJECT tag. Is there any event which is raised when a user removes the Gadget from his Live page i need to write some code when the user removes the gadget by clicking on the close (x) button. but i am not able to find anything about this event.. There is an event named " onModuleRemovedEvent " but i am not sure how to use it.. Thanx for the help in advance.. Regards Bharat T. Motwani hi Todd, I used the dispose function but its not getting called when the gadget is removed from the page.. The dispose func. is being called when i browse to some other page or close the browser. But its not being called ...Show All

  • hancererkan Image PReview

    Hi, I need to know how to use an image preview script in the settings.html part of my gadget, because i added the ability to change backgrounds of the gadget it would be nice if i could use an image preview script to show the background before applying it to the gadget. please let me know guys!! TIA for all your help. GADGET.HTML <html> <head> <title>Image Preview</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style> body { width: 130px; height: 50px; margin:0px; background:url(images/blank.png) repeat; background-color: transparent; border: none; } </style> <script type="text/javascript" ...Show All

  • John12312 DOM and select object

    hi everybody, I have a lot of difficulties with the select option, to write all the option features in the drop-down list. In standart html, it works well : http://albidochon.free.fr/jeu3/test.html but can't resolve the dom code in js, it shows the select drop-down list, but it is empty. i found a lot of code to do this, but not in the dom way, and nothing in the msdn documentation. the problem seems to be in the js function : function tri(){ for (i=0; i< jeu(0).options.length; i++) fill and write the options fields......i miss this } I don't want to do iframe gadget or js innerhtml, so, so.... The js and css files are here http://albidochon.free.fr/jeu3/gadget.xml thank you for the he ...Show All

  • Duncan Stewart TextStream, writeline

    The writeline method writes a string and a new line char, right Why i "don't see" this new line I'm getting all in the same line! FileIO.openTextFile( "file:///required/score.txt" ,FileIO.FILE_IOMODE_WRITE, false , true , cbfnGetTextStream); And then... pTextStream.writeLine(score); FileIO.saveTextFile(pTextStream, cbfnSaveTextStream); And i'm getting all the scores in the same line... You may be using a text editor that does not recognize the EOL delimiter write line character output. If you are using notepad, try using wordpad. Also, there may be a write line escape character like "\n". this is a guess though as I am not currently using the FileIO object. Actually * ...Show All

  • huysmans This is not a valid gadget package!! grr!

    hey, So i finished creating my gadget, i use winzip to zip it up to mygadget.gadget and then double click to install... However it just says: This is not a valid gadget package The gadget works if i move the folder to the windows gadget directory! Does anyone know how to fix this problem Regards Hmmm, that is weird. Could you send the code from your XML and HTML Is indeed interesting... I have; /images/ ** Docked.PNG *** play.PNG *** stop.PNG /en-US/ * /css/ ** Radio.css * /js/ ** Radio.js * gadget.xml * Radio.html * Settings.html and then in the root directory i have three things, drag.PNG, icon.PNG and ...Show All

  • sqlhiker What is the best way to show changeble text?

    I need to show text that can be changed in script. What's the best way I mean, what's the best element to use in markup that allow you to change the text via script And document.element.state.value = "sometext"; is correct edit: I got it using <input> with the mode="display", now my question is how to make the input "unfocusable", i mean avoiding the input to get the focus when i move throw the bottons on the screen. edit2: style:navIndex = " none " on the input was the solution   I believe HDiSim has a bug where it still includes navIndex="none" elements in the implicit nav list. They never get the focus, but they use up a spot in the list. So you end up having to cursor over the phantom elemen ...Show All

  • tass_flint Can't get xml back from Amazon Web Service?

    I can put the feed url in the browser and all is well, but I can't seem to get a response using the code below function GetFeed() { var r = Web.Network.createRequest( Web.Network.Type.XML, m_feedUrl, {proxy:"generic", numItems:m_numItems}, OnFeedReceived); r.execute(); } Is the m_feedUrl just too long maybe http://webservices.amazon.com/onca/xml Service=AWSECommerceService&Version=2006-06-07&AWSAccessKeyId=1CE7SK4ZPTNDQZCWBP82&Operation=ListLookup&ListType=WishList&ListId=241KH7V8OZ7EQ&Sort=DateAdded&ResponseGroup=ListItems Any help would be greatly appreciated! sadly I can't figure out how to specify an xmnls namespace without using soap, or at ...Show All

  • Sambag Creating DVD using multi media

    Hi I would like to create a DVD similar to the PictureViz_II Plugin (obtainable via the internet) in Windows Media Player. Has anybody been able to do something similar I've tried using Windows Movie Maker, but it takes more than four hours to create a clip that is 30 minutes long. I have a whole bunch of pictures and would like to see a dvd with video transitions in between and some music in the background. Any ideas will be appreciated. Thanks Margherita First of all: i think you are in the wrong forum ;) Second: This plug-in has a quite a lot of different transistions , so which one If you don't search for a certain one just try Nero Vision. You can get it from http://w ...Show All

  • R.Tutus Is there any kind of "secured storage" implemented in HD DVD specification ?

    I mean if you safe any file on the permanent storage by using an HDi application (for example capture a frame of a movie and save it to the hard disc) can this file be loaded or modified by another disc or can one disc only reach a defiened part of the permanent storage thx mikeret PStorage can only be accessed by the particular title: one title cannot mess with anothers storage. If you want to share things, there is a Common area that anyone can get to. (This is for AACS titles only: non AACS titles cannot get to pstorage at all of course). You can prevent modification of the files (e.g. on a PC where users can maybe get to them) by MAC-ing the files: if modified they won't load any more as ...Show All

394041424344454647484950515253545556

©2008 Software Development Network

powered by phorum