Traits for Audio elements?

I am trying to create a very simple player example that responds to the type of media being loaded.
I can get it to display a play button for video, and not display it for a JPG. However, I can't seem to get it to work for audio; none of the traits you'd expect are being detected on the element when I specify an MP3 file (e.g. play trait, audio trait, time trait).
Below is my code for the player. I thought maybe the file wasn't loaded completely before I was trying to get its traits, so I tried an if statement -- but that's not the case for the other media types, and the if statement didn't seem to make a difference. Can you see a problem with my code below? Am I missing a step here?
TIA,
// Lisa
package
    import flash.display.Sprite;
    import org.osmf.containers.MediaContainer;
    import org.osmf.media.DefaultMediaFactory;
    import org.osmf.media.MediaElement;
    import org.osmf.media.MediaPlayer;
    import org.osmf.media.URLResource;
   import org.osmf.utils.URL;
    import org.osmf.traits.*;
    import flash.display.Graphics;
   import flash.display.Sprite;
   import flash.events.MouseEvent;
   import org.osmf.events.PlayEvent;
   import org.osmf.layout.LayoutUtils;
     * The metadata sets the SWF size to match that of the video.
    [SWF(width="640", height="480")]
    public class HelloPlayButton extends Sprite
        public function HelloPlayButton()
            // Create the container class that displays the media.
             var container:MediaContainer = new MediaContainer();
            addChild(container);
            // Create URL
            //var mediaURL:URL = new URL("../images/swing.jpg");
            var mediaURL:URL = new URL("../audio/train_1500.mp3");
            //var mediaURL:URL = new URL("../videos/S0004_VP6_1Mbps.flv");
            // Create the resource to play
            var resource:URLResource = new URLResource(mediaURL);
            // Create a mediafactory instance
            var mediaFactory:DefaultMediaFactory = new DefaultMediaFactory();
            // Create the MediaElement and add it to our container class.
            var myMediaElement:MediaElement =  mediaFactory.createMediaElement(resource);
            container.addMediaElement(myMediaElement);
            // Create a media player
            var mediaPlayer:MediaPlayer = new MediaPlayer();
            // Stop from autoplaying
            mediaPlayer.autoPlay = false;
            // Then assign the media
            mediaPlayer.media = myMediaElement;
            var playButton:Sprite = constructPlayButton();
            // Add event listeners
            playButton.addEventListener(MouseEvent.CLICK, function():void {
                               mediaPlayer.play();
            mediaPlayer.addEventListener(PlayEvent.PLAY_STATE_CHANGE, function():void {
               playButton.visible = !mediaPlayer.playing;
//tried this...
            if (myMediaElement.hasTrait(MediaTraitType.AUDIO)) {
                    var audio:AudioTrait = myMediaElement.getTrait(MediaTraitType.AUDIO) as AudioTrait;
                    trace("has audio trait");
// and also this...
            var loadable:LoadTrait = myMediaElement.getTrait(MediaTraitType.LOAD) as LoadTrait;
            var playable:PlayTrait = myMediaElement.getTrait(MediaTraitType.PLAY) as PlayTrait;
            if (loadable != null) {
                trace("This mediaElement is loadable!");
            if (playable !=null) {
                trace("This mediaElement is playable!");
                addChild(playButton);
            if (audio !=null) {
                trace("This mediaElement has an audio track!");
                addChild(playButton);
            function constructPlayButton():Sprite {
            var size = 100;
                var x = 330;
                var y = 225;
                var f = 1.2;
                var result:Sprite = new Sprite();
            var buttonArt:Graphics = result.graphics;
            buttonArt.lineStyle(1, 0, 0.5);
            buttonArt.beginFill(0xA0A0A0, 0.5);
            buttonArt.moveTo(x - size / f, y - size);
            buttonArt.lineTo(x + size / f, y);
            buttonArt.lineTo(x - size / f, y + size);
            buttonArt.lineTo(x - size / f, y - size);
            buttonArt.endFill();
            return result;

Current code, with comments...
package
    import flash.display.Sprite;
    import org.osmf.containers.MediaContainer;
    import org.osmf.media.DefaultMediaFactory;
    import org.osmf.media.MediaElement;
    import org.osmf.media.MediaPlayer;
    import org.osmf.media.URLResource;
    import org.osmf.utils.URL;
    import org.osmf.traits.*;
    import flash.display.Graphics;
    import flash.display.Sprite;
    import flash.events.MouseEvent;
    import org.osmf.containers.*;
    import org.osmf.elements.*;
    import org.osmf.events.*;
    import org.osmf.layout.*;
    import org.osmf.media.*;
    import org.osmf.metadata.*;
    import org.osmf.net.*;
    import org.osmf.net.dvr.*;
    import org.osmf.net.httpstreaming.*;
    import org.osmf.net.rtmpstreaming.*;
    import org.osmf.traits.*;
    import org.osmf.utils.*;
     * The metadata sets the SWF size to match that of the video.
    [SWF(width="640", height="480")]
    public class HelloPlayButton extends Sprite {
        public function HelloPlayButton() {
            // Create the container class that displays the media.
            var container:MediaContainer = new MediaContainer();
            addChild(container);
            // Create URL
            //var mediaURL:URL = new URL("../videos/S0004_VP6_1Mbps.flv");
            var mediaURL:URL = new URL("../images/swing.jpg");
            //var mediaURL:URL = new URL("../audio/train_1500.mp3");
//**THIS THROWS AN ERROR
            //var mediaURL:String = "../videos/S0004_VP6_1Mbps.flv";
            // Create the resource to play
            var resource:URLResource = new URLResource(mediaURL);
            // Create a mediafactory instance
            var mediaFactory:DefaultMediaFactory = new DefaultMediaFactory();
            // Create the MediaElement and add it to our container class.
            var myMediaElement:MediaElement =  mediaFactory.createMediaElement(resource);
            container.addMediaElement(myMediaElement);
            // Create a media player
            var mediaPlayer:MediaPlayer = new MediaPlayer();
            // Stop from autoplaying
            mediaPlayer.autoPlay = false;
            // Then assign the media
            mediaPlayer.media = myMediaElement;
            var playButton:Sprite = constructPlayButton();
            addChild(playButton);
            playButton.visible = false;
            // Add event listeners
         playButton.addEventListener(MouseEvent.CLICK, function():void {mediaPlayer.play();});
            mediaPlayer.addEventListener(PlayEvent.PLAY_STATE_CHANGE, function():void {playButton.visible = !mediaPlayer.playing; });
            mediaPlayer.addEventListener(MediaPlayerStateChangeEvent.MEDIA_PLAYER_STATE_CHANGE, mediaPlayerStateChanged);
            function mediaPlayerStateChanged(evt:MediaPlayerStateChangeEvent):void {
//***THIS DOESN'T FIRE FOR FLV, ONLY MP3 AND JPG
                    if (evt.state==MediaPlayerState.READY) {
                        trace("MediaPlayerState -- READY!");
                        registerTraits();
            function registerTraits() {
                trace("register traits");
                if (myMediaElement.hasTrait(MediaTraitType.LOAD)) {
                    var loadable:LoadTrait = myMediaElement.getTrait(MediaTraitType.LOAD) as LoadTrait;
                    trace("This mediaElement is loadable!");
                if (myMediaElement.hasTrait(MediaTraitType.PLAY)) {
                    var playable:PlayTrait = myMediaElement.getTrait(MediaTraitType.PLAY) as PlayTrait;
                    trace("This mediaElement is playable!");
                    addChild(playButton);
                    playButton.visible=true;
                if (myMediaElement.hasTrait(MediaTraitType.AUDIO)) {
                    var audio:AudioTrait = myMediaElement.getTrait(MediaTraitType.AUDIO) as AudioTrait;
                    trace("This mediaElement has an audio track!");
                    addChild(playButton);
                    playButton.visible=true;
//**IF I USE THIS SWITCH STATEMENT INSTEAD OF BASING ON TRAITS (ABOVE)
//**I GET A COMPILER ERROR
//**Error #1065: Variable org.osmf.elements::VideoElement is not defined.
                    /*switch (true) {
                        case myMediaElement is VideoElement :
                        trace("This is a VideoElement");
                        playButton.visible=true;
                    break;
                        case mediaPlayer.media is ImageElement :
                    break;
                        case mediaPlayer.media is AudioElement :
                        playButton.visible=true;
                    break;
                        case mediaPlayer.media is SWFElement :
                        playButton.visible=true;
                    break;
             function constructPlayButton():Sprite {
            var size = 100;
                var x = 330;
                var y = 225;
                var f = 1.2;
                var result:Sprite = new Sprite();
            var buttonArt:Graphics = result.graphics;
            buttonArt.lineStyle(1, 0, 0.5);
            buttonArt.beginFill(0xA0A0A0, 0.5);
            buttonArt.moveTo(x - size / f, y - size);
            buttonArt.lineTo(x + size / f, y);
            buttonArt.lineTo(x - size / f, y + size);
            buttonArt.lineTo(x - size / f, y - size);
            buttonArt.endFill();
            return result;

Similar Messages

  • [svn:osmf:] 11205: Fix bug FM-169: Trait support for data transfer sample doesn' t display bytes loaded and bytes total for SWF element

    Revision: 11205
    Author:   [email protected]
    Date:     2009-10-27 15:04:26 -0700 (Tue, 27 Oct 2009)
    Log Message:
    Fix bug FM-169: Trait support for data transfer sample doesn't display bytes loaded and bytes total for SWF element
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-169
    Modified Paths:
        osmf/trunk/apps/samples/framework/PluginSample/src/PluginSample.mxml
        osmf/trunk/apps/samples/framework/PluginSample/src/org/osmf/model/Model.as

    The bug is known, and a patch has been submitted: https://bugs.freedesktop.org/show_bug.cgi?id=80151. There's been no update since friday, so I wonder what the current status is, or if it's up for review at all.
    Does anyone know how we can be notified when this patch hits the kernel?

  • How to change the source file of audio elements

    Hi,
    I am using adobe edge version 3 to add audio to a website.I use both .ogg and .mp3 files.
    Inside the _edge.js file the audio element has 2 sources (one for .ogg and one for .mp3)
                    id: 'audio_element_id',
                    type: 'audio',
                    tag: 'audio',
                    rect: ['0', '0','320px','45px','auto', 'auto'],
                    source: ['source_file.mp3','source_file4.ogg']
    I want to change the source file of the audio_element programatically......
    So i am using the following code inside edgeActions.js to change the source
    sym.$("audio_element_id")[0].src="new_source_file.mp3";
    But this will change the source of both(.mp3 and .ogg ) to  new_source_file.mp3
    I want to change the source induvidually. What should i do??
    Also I wanted to know what " [0] " stands for in " sym.$("my_audio_element")[0].play(); "
    Please give me an example of a situation wherein i have to change the value of [0].
    Thank you
    Nithin

    you should create a different directory for each dvd on your hard drive and put the files where they belong eg: dvd1, dvd2, dvd3
    then create 3 bins in your project manager called dvd1, dvd2, dvd3 and put the relevant files into the bins ( can import whole folders into each respective bin )
    OR rename your files using something like " renamer" before importing to premiere
    otherwise youll have a mess of a time trying to figure out whats what...maybe someone else has a better solution

  • Re-enable video for audio only clips in sequence

    Hi all,
    I've been an editor for quite sometime now, but I'm new to Premiere Pro CS5.
    I have a dozen or so clips in my sequence that I used only the audio from a video/audio source file.
    I now want to re-enable the video for these clips.
    If I double click on them in the sequence it only opens up the audio element in the source window and I cannot re-enable the video to pull it down onto the sequence.
    How can I bring the video back without having to go back to the original clip in the bin and re-marking the in and out points and overlaying it?
    Many thanks in advance

    Make sure the track that contains the clip you want is targetted; that means clicking the Audio buttons in the track headers. Park the CTI at the beginning of the clip you want, and hit the "M" key; this will match frame the original clip and load it into the Source Monitor. From there, you can add/refine your in and out points, and then drag or insert the video into the sequence. Finally, you can relink the video and the audio; be sure to unlink the audio tracks first, then select the audio and video and relink. That will keep the video and audio as a single element.

  • Any better text presets available for Premiere Elements

    Hi all,
    I tried doing a google search and a forum search and came up empty. The presets that come with elements are nice, but really basic when compared to the competition (corel for example). I was wondering if there are more presets available from adobe, fellow forum members, or freeware websites. Any one else have any suggestions?
    Thanks!

    Thanks for the reply!
    I'd like the letters to "explode" away. As in each letter individually flies into the screen as if there was an explosion behind it.
    I'd also like the letters to roll in on screen then roll out.
    It would be super nice if there was a true way to edit the text. Heck there might even be and I'm just missing it.
    It would be nice if there was a section on adobe's website that offered downloadable text animation presets, audio, and video effects. I see a lot for photoshop elements but none for premiere elements (unless I happen to be looking in the wrong place).

  • .3GP codec needed for Premiere Elements 13

    How can I play back .3GP files in Premiere Elements 13? It says I need to install a codec first to play. Where can I download a compatible codec for Premiere Elements 13?

    5
    For the following 3gp file I am getting playback of video and audio in Premiere Elements 13 Editor and only video playback in the Elements Organizer 13.
    http://support.apple.com/en-us/HT201549
    See if you get the same results with it.
    Note: This particular 3gp file uses MPEG-4 Video (mp4v) video compression and samr: AMR Narrowband audio compression.
    Also, please look at the following scenarios and then let me know if it makes any difference in the results obtained....
    1. This 3gp file is not in Elements Organizer to start.
    2. Open Premiere Elements 13 Editor project to its Expert workspace and import the 3gp file using Add Media/Files and Folders.
    Then drag the file from Project Assets to the Timeline (Video Track 1/Audio Track 1). Does the file play back with video and audio there?.
    3. Open the Elements Organizer 13. When you imported the file into the Premiere Elements 13 Editor, a copy of the file was automatically
    placed in the Elements Organizer 13.
    a. If you right click the file's thumbnail in Elements Organizer 13, do you see a video image in the thumbnail?
    b. If you double click the thumbnail do you get play back of video and audio?
    4. If you repeat the same thing with a DVD video file (VTS_01_1.VOB),
    a. video and sound in Premiere Elements 13 Editor?
    b. video and sound in Elements Organizer 13?
    In the case of the VOB, my results were
    Premiere Elements 13 Editor...playback video and audio
    Elements Organizer 13...playback of video but no audio
    This file uses MPEG2 video compression and Dolby Digital audio.
    Can you confirm the video and audio compression used by your 3gp files...please see GSpot codec utility.
    http://www.headbands.com/gspot/
    Thanks.
    ATR

  • Iphone html 5 and audio element

    Will the Iphone Safari browser play the html 5 <audio> element. Will it display a button or player to click on?
    I want to make an app for iphone that is basically a web wite with pages that have a audio button on them. Is possible? Where is good discussion group for iphone apps.
    Thanks

    I woud prefer to use the HTML 5 settings for YouTubes but the great point is that it's all HTML 5 video. YouTube was an example. Additionally, the issue would still remain for Quicklook as well.
    Any other ideas or links to threads. I've looked but have not found anything helpful.
    Thanks

  • Is there volume fade or volume control for audio?

    Is there volume fade or volume control for audio? If for example you wanted to use an audio clip and adjust the volume.

    Cabbagepatchkid
    Premiere Elements 12 Mac
    You should be able to right click your audio and select Fade, followed by Fade In Audio or Fade Out Audio.
    Please refer to my blog post on Fades
    ATR Premiere Elements Troubleshooting: PE11: Timeline Fade Out Shortcuts and Time Stretched/Time Remapped Video
    As mentioned I am strictly an Elements Windows user, so I am assuming that the Premiere Elements Windows and Mac
    are the same on this feature.
    Please let us know if you need clarification on the above.
    Thank you.
    ATR

  • Is there a user manual for Premier Elements 11?

    Can't find a manual for Premier Elements 11 but I can find the one for ver 12 easily. Can anyone tell me whether there is one for ver 11 and, if so, provide a link?
    thanks much for helping!

    BillyDBrown
    I saw your thread
    http://forums.adobe.com/message/5850138#5850138
    and was going to dig into it, but then got detoured.  It looked like more than I am used to.
    We can continue this discussion in the other thread, so I will just mentioned details that I was going to ask about (just in case I get detoured again.)
    a. Are you saying that you have a live feed of video and audio going into Premiere Elements? If so,
    what did you set as the project preset beforehand so that it would match the properties of your source media.
    b. What are those properties of your source media?
    c. I do not know if I can do a live feed of video and audio from camera into Premiere Elements, but I could give it a try. What is the connection type and what do the connections look like?
    If I am correct in my understanding of what you are doing, can you get the video and audio in sync if you import the video and audio files after recording.
    I suspect most of what you are seeking is advanced and are less likely to be found in the typical books available. So, if possible, you might want to preview books before purchase. There are not inexpensive.
    More later.
    Thanks.
    ATR

  • KB15N_No adjustment account found for cost element Message no. K5112

    When I am trying to post Manual Cost Allocation through TC KB15N with the following input data I am getting the following error message and the same could not be posted.  Kindly advise.
    Screen Variant used: 01 SAP Cost Center
    Input Type: List Entry
    Item No.1
    Sender Cost Center : 3402100942
    Cost Element: 6200001
    Amount : 62,201.56
    Receiving Cost Center: 3405100945
    First four digits represent profit center code.  If first four digits are equal the above error is not coming. But posting is needed with different profit centers.
    No adjustment account found for cost element
    Message no. K5112
    Diagnosis
    Neither standard account determination nor the enhanced function found an adjustment account for the reconciliation posting.
    System Response
    No adjustment account could be determined for cost element  in company code SCCL.
    Procedure
    Maintain the standard or enhanced account determination for transaction KAMV. Information on maintenance can be found in the program documentation.
    Execute

    Hi all,
    I face the issue like this but with transaction KOAP - Plan settlement
    But, the problem is that, I do not active reconciliation ledger, so I do not maintain any thing relate to reconciation ledger or adjustment posting? I can do transaction "actual settlement"  without error
    So, How this error come to me?
    And how I can fix it?
    Thanks all!

  • No Adjustment account found for cost element

    Dear Gurus,
    I am getting Three errors  msg "No Adjustment account found for cost element" when i try to run the conformation of production order create  ( T Code : C015 )"  and I am not able to save the record . like
    1 ).No adjustment account found for cost element
    Message no. K5112
    Diagnosis
    Neither standard account determination nor the enhanced function found an adjustment account for the reconciliation posting.
    System Response
    No adjustment account could be determined for cost element  in company code XXXX
    Procedure
    Maintain the standard or enhanced account determination. Information on maintenance can be found in the program documentation.
    Execute
    2) . No adjustment account found for cost element XXXXXXXX
    Message no. K5112
    Diagnosis
    Neither standard account determination nor the enhanced function found an adjustment account for the reconciliation posting.
    System Response
    No adjustment account could be determined for cost element XXXXXXX in company code XXXX.
    Procedure
    Maintain the standard or enhanced account determination. Information on maintenance can be found in the program documentation.
    Execute
    3 ) No account is specified in item 0000000002
    Message no. F5670
    Diagnosis
    No account was specified for account type "S" in item "0000000002" of the FI/CO document.
    System Response
    The Financial Accounting program cannot process the document.
    Procedure
    A system error has probably occurred in the application you called up. Check the data transferred to item "0000000002" of the FI/CO document.
    Could anyone please help me with this.
    Regards
    SAP CO

    Hi,
    iam not able to understand of this  SAP Notes: 531606 and 1027645
    Could you pl give me full details for come out this problem.
    Regards
    SAP CO

  • Unable to select 'Use Phone for audio calls' on Cisco Jabber Client 9.6 for Windows

    Hi,
    I have recently deployed Cisco Presence Server and integrated with Call Manager 9.1.2. I have successfully deplyed 6700 users on IM & Presence. Some of the users requested for Cisco Jabber with phone control.
    I have added CFS client on the Call Manager and associated it with the same extension numbers from their desk phones. I am currently able to make audio and video calls for these specific users. I am currently using Cisco Jabber Client 9.6 for windows. I have users both daisy chained to their desk phones and who are not. Can you please confirm if it does make any difference.
    Problem Faced -
    I am not able to use to option use phone for audio calls. The phone comes down with a cross sign on it. At the same time Cisco Jabber by default uses the client and it works as expected.
    Can you please let me know if any of you guys have faced a similar issue.
    Please let me know if you need any information regading the configuration used.
    Looking forward for your valuable comments.
    Thank you.
    Regards,
    Joseph Chirayath.

    Hi Will,
    I am attaching the screen shot for the END USER on CUCM 9.X that has been configured on Cisco Jabber.
    Please do let me know if you need any further information.
    Thank you.

  • New macbook Pro setback for Audio Production.

    the new macbook pro don't come with a Firewire 400 port anymore.
    everybody knows that usb is too slow for audio transfer and Firewire 800 is usual.
    audio interfaces that use firewire 400 can't be used and with only one firewire 800 port there's no room left 'cause we need that to connect the external drives with audio files.
    most interfaces need to be connected directly to the computer.
    Any Ideas????

    I, too, have an issue with the port configuration on MBPs -- too many USB2.0 ports, not enough FW800 ports. Nevertheless, please note that:
    1. Bilingual FW800 FW400 cables (really good ones) are available for less than $20.
    2. You can daisy chain external FW HDDs (even heterogeneously, i.e. you can cable your computer to a FW800 device using a FW800 cable and then use a FW400 cable to connect the first drive to a FW400 HDD, etc.). This capability is dependent on having redundant or multi-protocol drive enclosures (that is, you will need drives that have at least two FW ports, such as two FW800 ports or a FW800 port plus a FW400 port, not just a single USB2.0 port).
    3. You can go hog wild and purchase a full-on FW800 hub/repeater like the NitroAV Professional Firewire/1394b 8-Port device (google it). I use this device to connect five external HDDs to my MBP (four FW800 drives and one FW400 drive). This hub will set you back $150 -- not trivial, but an elegant solution if you use multiple drives, and it comes with the AC power adapter (believe it or not, some hub manufacturers require you to purchase the AC adapter separately). In my configuration, six ports are used -- five for the drives and the sixth to connect the MBP via a FW800 cable. The hub has the additional advantage of eliminating several of the cables that would otherwise connect directly to my computer, which is, after all, a laptop; the fewer things I have to connect/disconnect when I move my MBP around, the better. You can think of this as a do-it yourself version of the docking station that Apple forgot to give us, at least as far as drive connectivity is concerned!
    As an aside, my MBP (see model notes below) does in fact have both a FW800 and a FW400 port. I wish Apple configured unibody MBPs to include two USB2.0 ports and two FW800 ports -- but the above tips make the world right.
    Finally, I just don't get the gripe about cabling costs. The unibody MBPs are high end laptops -- most purchasers will have invested well over $3K in their machines. There are a thousand usage patterns; I would much rather buy what I need for my applications without incurring the expense of purchasing bundled stuff that I don't need and which winds up in a (bursting at the seams) cable/doodad drawer.

  • Having installed an upgrade for Photoshop Elements 13, I cannot open the application. I get an error message saying "Adobe Photoshop Elements Editor cannot be opened because of a problem. Check with the developer to make sure Adobe Photoshop Elements Edit

    Having installed an upgrade for Photoshop Elements 13, I cannot open the application. I get an error message saying "Adobe Photoshop Elements Editor cannot be opened because of a problem. Check with the developer to make sure Adobe Photoshop Elements Editor works with this version of OS X. You may need to reinstall the application. Be sure to install any available updates for the application and OS X".
    I have since uninstalled and reinstalled the app, but get the same error message.

    Which version of OS X do you have? It's not clear from your post whether "installed an upgrade" means you just installed PSE 13 as an upgrade or you installed an update to PSE 13, like ACR 9 or 13.1. Please clarify.

  • How can I make Apple Earphones be the Input and Output for Audio

    I have some older headphones and they aren't compatible with a Mid 2010 (Intel Core i3) 21.5 Inch iMac
    Is there some way to make Apple Earphones be the Input and Output for Audio in the iMac
    This is a problem for me personally as when I am talking to someone on Skype the iMac picks up the In-built Microphone audio, and yes the headphones I'm using do work straight from the iMac as audio output
    Any help is appreciated

    you can connect the headset to something like this
    http://www.ebay.com/itm/NEW-MaelineA-3-5mm-Female-to-2-Male-Gold-Plated-Headphon e-Mic-Audio-Y-Splitter-/381100440348
    and then connect the mic to the input and the headset to the headset port

Maybe you are looking for

  • Report miss match error

    hi guys, Can anyone tell me what is the easiest way to find out Report miss match error of  bi with r3 report especially in fi. thanks in advance, regards, Bunty.

  • Windows Media Player and audio engine behavior

    I have made one LFX and one GFX module both residing in the same dll. I have noticed some strange behavior with windows media player which I don't understand. When playing back audio with WMP there are always two processes (image names) that loads my

  • 101 GR/IR wrong values

    Dear all. PO rate: 159.00 [Not changed since PO creation] GR done in June having GR/IR = according to 162.64 In table MBEWH Year    Period      MAP 2009      01         159.00 2009      02         159.00 2009      03         162.64 For current period

  • I don't know how to download movies need help

    How do I download movies on my iPad pls?

  • My iphone 4 will not open pptx file.

    It will open the same file if I convert it to ppt first.  The file size of the pptx file is less than 700k.  After converting to ppt it is a little over 1 meg and it will open fine.  How do I fix this?  Manually converting each time is not an option.