Embed Media Player from Myspace

I am trying to embed media player from my myspace page onto
my other website but the 'open player in new window' link doesn't
seem to work on my second website. It works fine on my myspace page
and I have copied the code from there. Does anyone know how I can
get the player to open in a new window?
I have attached the code I used.
Thanks in advance for your help.

FLV = Video
MP3 = Audio
Try Wimpy MP3 Player
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com

Similar Messages

  • Win Media Player from JMF...

    Hi,
    I am new to JMF. I am currently developing a p2p based video streaming project and would like to invoke Win Media Player or Flash Movie Playre from the Java app..
    Pleasen help / advice / suggest...
    Thank you.
    Salil.Siddhaye

    this code may help it is sun sample code
    * @(#)SimplePlayerApplet.java     1.2 01/03/13
    * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved.
    * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
    * modify and redistribute this software in source and binary code form,
    * provided that i) this copyright notice and license appear on all copies of
    * the software; and ii) Licensee does not utilize the software in a manner
    * which is disparaging to Sun.
    * This software is provided "AS IS," without a warranty of any kind. ALL
    * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
    * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
    * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
    * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
    * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
    * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
    * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
    * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
    * POSSIBILITY OF SUCH DAMAGES.
    * This software is not designed or intended for use in on-line control of
    * aircraft, air traffic, aircraft navigation or aircraft communications; or in
    * the design, construction, operation or maintenance of any nuclear
    * facility. Licensee represents and warrants that it will not use or
    * redistribute the Software for such purposes.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.String;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.io.IOException;
    import java.util.Properties;
    import javax.media.*;
    //import com.sun.media.util.JMFSecurity;
    * This is a Java Applet that demonstrates how to create a simple
    * media player with a media event listener. It will play the
    * media clip right away and continuously loop.
    * <!-- Sample HTML
    * <applet code=SimplePlayerApplet width=320 height=300>
    * <param name=file value="sun.avi">
    * </applet>
    * -->
    public class SimplePlayerApplet extends Applet implements ControllerListener {
    // media Player
    Player player = null;
    // component in which video is playing
    Component visualComponent = null;
    // controls gain, position, start, stop
    Component controlComponent = null;
    // displays progress during download
    Component progressBar = null;
    boolean firstTime = true;
    long CachingSize = 0L;
    Panel panel = null;
    int controlPanelHeight = 0;
    int videoWidth = 0;
    int videoHeight = 0;
    * Read the applet file parameter and create the media
    * player.
    public void init() {
         //$ System.out.println("Applet.init() is called");
         setLayout(null);
         setBackground(Color.white);
         panel = new Panel();
         panel.setLayout( null );
         add(panel);
         panel.setBounds(0, 0, 320, 240);
         // input file name from html param
         String mediaFile = "The Departed CD1.avi";
         // URL for our media file
         MediaLocator mrl = null;
         URL url = null;
         // Get the media filename info.
         // The applet tag should contain the path to the
         // source media file, relative to the html page.
         if ((mediaFile = getParameter("FILE")) == null)
         Fatal("Invalid media file parameter");
         try {
         url = new URL(getDocumentBase(), mediaFile);
         mediaFile = url.toExternalForm();
         } catch (MalformedURLException mue) {
         try {
         // Create a media locator from the file name
         if ((mrl = new MediaLocator(mediaFile)) == null)
              Fatal("Can't build URL for " + mediaFile);
         try {
              JMFSecurity.enablePrivilege.invoke(JMFSecurity.privilegeManager,
                                  JMFSecurity.writePropArgs);
              JMFSecurity.enablePrivilege.invoke(JMFSecurity.privilegeManager,
                                  JMFSecurity.readPropArgs);
              JMFSecurity.enablePrivilege.invoke(JMFSecurity.privilegeManager,
                                  JMFSecurity.connectArgs);
         } catch (Exception e) {}
         // Create an instance of a player for this media
         try {
              player = Manager.createPlayer(mrl);
         } catch (NoPlayerException e) {
              System.out.println(e);
              Fatal("Could not create player for " + mrl);
         // Add ourselves as a listener for a player's events
         player.addControllerListener(this);
         } catch (MalformedURLException e) {
         Fatal("Invalid media file URL!");
         } catch (IOException e) {
         Fatal("IO exception creating player for " + mrl);
         // This applet assumes that its start() calls
         // player.start(). This causes the player to become
         // realized. Once realized, the applet will get
         // the visual and control panel components and add
         // them to the Applet. These components are not added
         // during init() because they are long operations that
         // would make us appear unresposive to the user.
    * Start media file playback. This function is called the
    * first time that the Applet runs and every
    * time the user re-enters the page.
    public void start() {
         //$ System.out.println("Applet.start() is called");
    // Call start() to prefetch and start the player.
    if (player != null)
         player.start();
    * Stop media file playback and release resource before
    * leaving the page.
    public void stop() {
         //$ System.out.println("Applet.stop() is called");
    if (player != null) {
    player.stop();
    player.deallocate();
    public void destroy() {
         //$ System.out.println("Applet.destroy() is called");
         player.close();
    * This controllerUpdate function must be defined in order to
    * implement a ControllerListener interface. This
    * function will be called whenever there is a media event
    public synchronized void controllerUpdate(ControllerEvent event) {
         // If we're getting messages from a dead player,
         // just leave
         if (player == null)
         return;
         // When the player is Realized, get the visual
         // and control components and add them to the Applet
         if (event instanceof RealizeCompleteEvent) {
         if (progressBar != null) {
              panel.remove(progressBar);
              progressBar = null;
         int width = 320;
         int height = 0;
         if (controlComponent == null)
              if (( controlComponent =
              player.getControlPanelComponent()) != null) {
              controlPanelHeight = controlComponent.getPreferredSize().height;
              panel.add(controlComponent);
              height += controlPanelHeight;
         if (visualComponent == null)
              if (( visualComponent =
              player.getVisualComponent())!= null) {
              panel.add(visualComponent);
              Dimension videoSize = visualComponent.getPreferredSize();
              videoWidth = videoSize.width;
              videoHeight = videoSize.height;
              width = videoWidth;
              height += videoHeight;
              visualComponent.setBounds(0, 0, videoWidth, videoHeight);
         panel.setBounds(0, 0, width, height);
         if (controlComponent != null) {
              controlComponent.setBounds(0, videoHeight,
                             width, controlPanelHeight);
              controlComponent.invalidate();
         } else if (event instanceof CachingControlEvent) {
         if (player.getState() > Controller.Realizing)
              return;
         // Put a progress bar up when downloading starts,
         // take it down when downloading ends.
         CachingControlEvent e = (CachingControlEvent) event;
         CachingControl cc = e.getCachingControl();
         // Add the bar if not already there ...
         if (progressBar == null) {
         if ((progressBar = cc.getControlComponent()) != null) {
              panel.add(progressBar);
              panel.setSize(progressBar.getPreferredSize());
              validate();
         } else if (event instanceof EndOfMediaEvent) {
         // We've reached the end of the media; rewind and
         // start over
         player.setMediaTime(new Time(0));
         player.start();
         } else if (event instanceof ControllerErrorEvent) {
         // Tell TypicalPlayerApplet.start() to call it a day
         player = null;
         Fatal(((ControllerErrorEvent)event).getMessage());
    } else if (event instanceof ControllerClosedEvent) {
         panel.removeAll();
    void Fatal (String s) {
         // Applications will make various choices about what
         // to do here. We print a message
         System.err.println("FATAL ERROR: " + s);
         throw new Error(s); // Invoke the uncaught exception
                   // handler System.exit() is another
                   // choice.
    take care add the video to the same path where the code is saved
    hope that will help you

  • Launch windows media player from organizer

    when I play a movie file from the organizer, the player which appears is very poor quality compared to windows media player, in terms of full-screen abiltiy, slow motion etc.
    So, how can I have organizer play the file in windows media player?
    TIA

    There is no such option to launch Windows Media Player fom Organizer...

  • How to use the windows phone default media player from my app

    hello every one,
    I build a windows phone 8 app , and i used this code, to play a video in the phone media player (didn't want to use MediaElement)
    using Microsoft.Phone.Tasks;MediaPlayerLauncher mediaPlayerLauncher = new MediaPlayerLauncher();
    i just see that in windows phone 8.1 i can't use this namespace and a lot of others, (I didn't understand why...)
    and i want to lunch a video in the phone media player instead using a MediaElment
    how can i do it?
    thanks,
    Or

    Hi Or,
    Using
    Launcher class is fine (not sure if you are playing with 8.1 Silverlight or runtime), you can launcher default system app by following code:
    var success = await Windows.System.Launcher.LaunchFileAsync(file);
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can't play videos on Windows Media Player from Xperia z3

    I have recorded som videos and while trying to load them onto my computer via USB some show up and others just play the sound without the video?
    Can anyone help with this problem?

    Hi Gearld, welcome to the community!
    I would advise transferring the files through PC Companion using the Media Go app like Phy has suggested & also playing the videos through VLC player rather than Windows Media Player as this VLC player can read a large number of formats and is most likely to play your videos smoothly. 
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • How can I remove Windows media Player from my mac?!

    There's no uninstaller, and I can't remove it since it's locked! Any ideas?
    2GHz MacBook   Mac OS X (10.4.7)  

    Drag the Windows Media Player application's folder to the Trash, and then hold down the Option and Shift keys while emptying it.
    (14811)

  • Launch Windows Media Player - from a HTML snippet

    Hi Guys
    anyone got the HTML code to launch WMP from an iWeb Snippet, I can launch QT as a seperate player and play my media (movies etc) from a Snippet, but I'm having problems tracking down the code to launch WMPlayer - I'm developing a local intranet site, and most if not all have PC's - shame as QT is far superior to WMP and just works - it does what it says on the tin -
    thanks for ya help

    Roddy has some tips on that: convert to flash or use an html snippet to add the QT file. Why, the snippet I don't know. You can peruse his site here for his tips:
    http://www.iwebformusicians.com/MusicPlayers/Players.html
    http://roddymckay.com/VisualMedia/FlashVideo.html
    http://www.iwebformusicians.com/WebMusic/iWebandInternetExplorer.html
    http://discussions.apple.com/thread.jspa?threadID=2021995&tstart=0
    Some of these links go to the same site, different pages.
    OT

  • Embed media player to play selected audio

    I have a list of music and would like one of the tracks to play when clicked and appear in a player on the same page as the song list. I have tried Media Encoder but I can't get the file to save as a flv, it always saves as a f4v and "insert media" in Dreamweaver does not see those files. Any ideas out there, a visulization for the music in the player would be ideal.
    Thanks

    FLV = Video
    MP3 = Audio
    Try Wimpy MP3 Player
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Using VLC media player from iTunes

    Is there any way to set VLC as my default video player in iTunes instead of Quicktime? I much prefer using VLC to watch videos, but I like the organization of the iTunes library. I'd love it if it was possible to have VLC automatically open whenever I double-click on a video file in my iTunes library.

    iTunes is set up to play videos in iTunes. It does not have an option to choose an external player. If you want to use an external player, you can control-click on the video, choose "Show song File", control-click on the file, and then choose VLC Player. Or, you can change the default app of the videos by highlighting a video in Finder, pressing Command-I to get the Get Info Box, changing "Open With" to VLC Player and clicking on "Change All". now you can go to the file in the Finder, double click on it, and it will open in VLC Player. Note that any video purchased through the iTunes Music Store can only be played in iTunes because they are copy-protected files.

  • Installing Windows Media Player from the .bin format

    I am trying to download WMP. I just downloaded it through the apple site but when I downloaded it the file was in the .bin format, titled "WindowsMediaInstaller.bin". I then tried to open this file with stuffit, and this produced another file titled "Windows Media.sitx". I am unsure about how to open this file to complete the installation.
    Thanks!!!

    You're Welcome cushie2!
    If your issue has been sufficiently addressed, perhaps you would take a moment to mark your topic as Answered, and any of the replies that may have been helpfuL with solving the problem, appropriately.
    Info here What are question answers?.
    And Thank You, for extending the <i.courtesy</i>, of awarding stars in Discussions,
    ali b

  • Quantum Media Player from MoveNetworks

    ABC is offering LOST episodes using a new plugin as named in the subject. It doesn't work on my MacBook, although it does appear in the plugins list in Safari. It does work on my G5
    Anyone else (all Intel Macs?) have this problem? Any fix?
    PS: Running Safari under Rosetta enables the plugin. Must not be Intel compatible.
    PPS: Restarting Safari cured all problems. D'oh!!

    Restart required after plugin installation. that's all

  • Is there a way to move files from Windows Media player to Itunes?

    I have a lot of files in windows media player from Walmart.com. Is there any way to move these into my itunes library to sync onto the Nano?

    Do you know what format the video is in and if its protected? most likely you will need to convert it, there quite a few converters out there. (i can't remember any)

  • I can't transfer unprotected music from my Windows Media Player library

    I'm tryng to transfer my unprotected wma file to itunes library. I tried importing and add file or folder from "file" in I tunes. I tried placing " My Music " file on the desktop and then drag it to itunes . I transfered the WMP library once , but lost it when consolidating libraries in itunes. It converted the files and I downloaded them to ipod nano, then lost them again. Anyway to do this without burning to CD would be great. Thanks

    What format was the music in? It would be either MP3, WAV, or WMA, it could in theory but in your case unlikely be also in AAC or Apple Lossless. iTunes does not support artwork in WAV files.
    When music is added to Windows Media Player from a CD, typically the album artwork is not put in the music files itself but is instead stored as separate JPEG files in the folder the music file is in, this might explain things. I have not tried WMP12 but with older versions the quality of the album artwork was very poor so getting new artwork from the iTune Store as described by zsnow would be a better choice anyway as the iTunes Store has artwork at 600x600 pixels which is (was) three times as good as WMP.
    If the iTunes Store does not do all the tracks and you still need to do some, you can either look for the JPEG files I mentioned and use those, or use Google to search for images and copy and paste them in to iTunes.

  • Bug & Conflict w/ Palm Destop 6 & Windows Media Player

    I am a long time Palm user but my T2 was not getting much use considering I was already carrying Two cell phones. But I was excited to get an upgrade to a Centro for one of my phones. Now I am dealing with the differences between PalmDesktop4 (PD4) and PD6 on Windows XP SP3.
    I found what appears to be a critical bug in the installation of PD6 in that it has some very undesirable interactions with Windows Media Player (WMP) 10 & 11. Let me preface by saying that I am not using WMP or PocketTunes for any syncing or transferring any media to my Centro. My Centro is only used for calendar, contacts, calculators, and Docs2Go.
    I have installed PD6 and the PD6 user data to a removable drive for personal privacy on a work computer. The error is that when ever the drive is not mounted and wmplayer.exe is started, Windows searches for the Palm Access Installation package on my removable drive and attempts to start a installation of PD6. Of course it does not find the .msi and the only thing that happens is my computer locks up till I close WMP and then the ACCESS installer goes away. If the removable drive is mounted with the PD6 application directory and the PD6 user data, WMP loads quickly and appears to work fine.
    Why is WMP trying to connect to applications or support files in the PD6 application directory?
    I can only assume that the new PD6 media tab now is hooked into some windows media services. PD6 must be registered as a client/helper app to windows media and WMP is trying to load or locate the registered resources.
    The big problem with this is that my user data path gets over written with PD6 installation defaults in the Windows Registry and I have to manually reset all the PalmDesktop registry data to point PD6 at my really user path on the V: drive.
    This should not be installed this way. The association between the two applications appears to be an error in the ACCESS installation package for PD6.
    I used Palm.com “Chat” support four or five time for some very basic support in getting my new Centro setup. The Palm.com “Chat” support was great. For this issue they were absolutely useless. One support person affirmed that I should be able to use the removable drive, the next just had me do reinstalls for PD6 (that I had already done) and then told me I would have to use the defaults for C:\Program Files and D:\Documents and Settings\username... They recommended that I use the Palm.com phone support number.
    I did this and it had to be one of the worse support calls I have made in a while (case number 1-51474282949). Why is it impossible to get any computer software or hardware company to support the desktop software they putout? I got the same tech support baby talk about “reinstalling the application”, “use the default installation path”, “its not our application” and “you will have to contact Microsoft for support on your operating system”. Ahhhhh!
    I was not even able to speak with a “Level 2” tech support person. I demanded that I be connected to a technical person a not just fed the same FAQ crap that I could find on the website. The “Level 2” person would not take my call but just passed the message to the “Level 1” Person that I would have to contact Microsoft.
    So I am posting this message here to the Palm fourm in hope that the software engineering team will see this and be able to either patch their software or give me the .reg key to break the association between WMP and PD6. Below I have posted a long list of my Chat support that explains the issues in further technical details, and also details the lack of detailed skilled support available at Palm.com.
    Help? Direction?
    I have my palm application directory installed to V:\PalmDesktop6App and the user data files installed to V:\jcollyer-files\PalmDataV6_001 This is a removable drive that I install on my work computer. I remove this drive and take it home with me. Doing this allows me the ability to keep my palm data secure but I can still use my computer at work to manage my palm data.
    If the V:\ drive is not mounted when I run palm desktop, Palm desktop messes up the "Path" regestry key:
    [HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop\Core]
    "DesktopPath"="V:\\PalmDesktop6App\\"
    "HotSyncPath"="V:\\PalmDesktop6App\\Hotsync.exe"
    "Path"="V:\\jcollyer-files\\PalmDataV6_001"
    "UserConduitFolder"="C:\\Documents and Settings\\jcollyer\\Application Data\\HotSync\\Conduits"
    "PIMVersion"="6.1.0"
    "DesktopExe"="Palm.exe"
    @=""
    "Desktop Language"="ENG"
    "INSTALLDIR"="V:\\PalmDesktop6App\\"
    "VM_Username"="John Collyer"
    When the key gets messed up it defaults to the standard palm desktop path:
    "C:\Documents and Settings\jcollyer\My Documents\Palm OS Desktop"
    I found this out because every time Windows Media player starts it tries to start Palm Desktop or the Palm Desktop install/remove program. I get a pop up window and progress bar that says “Palm Desktop by Access”. The only way to get rid of this pop up window is to shut down windows media player. So if my V: drive is not mounted just starting windows media player corrupts the user “Path” registry settings. It just so happens our work voicemail uses media player on the computer.
    Dan(Sun Oct 19 2008 16:04:52 GMT-0400 (Eastern Daylight Time))>
    1. Click on Start.
    2. Click on Run.
    3. Type "regedit" and click Ok.
    4. Then Registry Editor window will open.
    5. Double click on HKEY_CURRENT_USER.
    6. Then click on +sign beside Software.
    7. Now delete all the folders which start with Palm.
    8. Also delete the folder called US robotics.
    9. Now Double click on HKEY_LOCAL_MACHINE.
    10. Then click on +sign beside Software.
    11. Now delete all the folders which start with Palm.
    LiveAssist Transcript
    [Print] Print [Copy] Copy [Email] Email [Close] Close
    chat id: 7f2a7664-50e8-40fb-8933-f82278d33b6d
    Problem: Palm Deskto & Windows Media Player?
    John_Collyer > I have my palm application directory installed to V:\PalmDesktop6App and the user data files installed to V:\jcollyer-files\PalmDataV6_001 This is a removable drive that I install on my work computer. I remove this drive and take it home with me. Doing this allows me the ability to keep my palm data secure but I can still use my computer at work to manage my palm data.
    If the V:\ drive is not mounted when I run palm desktop, Palm desktop messes up the "Path" regestry key:
    [HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop\Core]
    "DesktopPath"="V:\\PalmDesktop6App\\"
    "HotSyncPath"="V:\\PalmDesktop6App\\Hotsync.exe"
    "Path"="V:\\jcollyer-files\\PalmDataV6_001"
    "UserConduitFolder"="C:\\Documents and Settings\\jcollyer\\Application Data\\HotSync\\Conduits"
    "PIMVersion"="6.1.0"
    "DesktopExe"="Palm.exe"
    @=""
    "Desktop Language"="ENG"
    "INSTALLDIR"="V:\\PalmDesktop6App\\"
    "VM_Username"="John Collyer"
    Dan > Hello John_Collyer, Thank you for contacting Palm Technical Support. My name is Dan. How may I help you?
    John_Collyer > When the key gets messed up it defaults to the standard palm desktop path:
    "C:\Documents and Settings\jcollyer\My Documents\Palm OS Desktop"
    I found this out because every time Windows Media player starts it tries to start Palm Desktop or the Palm Desktop install/remove program. I get a pop up window and progress bar that says “Palm Desktop by Access”. The only way to get rid of this pop up window is to shut down windows media player. So if my V: drive is not mounted just starting windows media player corrupts the user “Path” registry settings. It just so happens our work voicemail uses media player on the computer. I am using window media player 11.
    What the heck is going on? How can I stop Windows Media Player from triggering the palm desktop application? Better yet why does it even try?
    It does this when I simply open windows media player, even without a file. Just opening the Windows Media player application by it’s self causes this behavior.
    Dan > Please let me go through the information you have provided.
    John_Collyer > Ok standing by...
    Dan > I understand that you have issue with the Palm Desktop and windows Media player getting messed up .
    Dan > Sure I will guide with the issue .
    Dan > May I know since when you are facing the issue ?
    Dan > Please let me know the Operating System you are using. Is it Windows 95/98/ME/NT/2000/XP/Vista or MAC?
    John_Collyer > I had this problem from the first install about two weeks. I use PalmDesktop 4 with my T2 for years on a removable drive never had an issue. PD6 only allows me to set the user path during installation. So I have been having issues with the reg keys getting messed up for a while. I though just creating a .reg file to fix the problems was going to be simple till I found windows media player was trying to autostart palm software???
    John_Collyer > Windows XP SP3
    John_Collyer > I am a new owner of the Palm Centro not using the T2 with PD6
    Dan > Thank you for information .
    Dan > I got the issue .
    Dan > There are more than one version of the Palm software in the computer .
    John_Collyer > No only PD6 now
    Dan > That's reason the Drivers in the Registry are messing up and causing the issue .
    Dan > Okay .
    Dan > Do you have any data in the Palm Desktop ?
    John_Collyer > Yes, when the V: drive is mounted everything works great, perfect. Windows Media player even load without a hitch. I would even deal with the .reg fix work around I made to over write the registry. I still don't understand why the application tries to load when it is installed on the V: drive if the v: drive is not present. It has to be the install/uninstall .msi file that runs the Add/Remove programs feature in widows control panel. Why does any of this change the user path?
    Dan > I will explain you .
    Dan > The reason for change of the path is with the corrupted applications and computer settings .
    John_Collyer > Sorry, Why would the .msi file run if Windows Media is started?
    Dan > .MSI file is the supporting file for Windows Media player .
    Dan > That's reason for executing of .msi file during the windows media player .
    Dan > To fix the issue we must perform clean uninstall and reinstall so that you will not have any further issue .
    Dan > Let me know if you are comfortable with the clean uninstall and reinstall if the Palm software .
    John_Collyer > I've uninstalled PD6 and reinstalled it like 12 times. If the V: drive is missing it really messes up the PD6 software. To keep me from doing this by launching PD6 from the C: drive I installed it to V:. No .exe no launchy. It works fine. What is hooking into windows media player. A .msi is a Microsoft install package, not a media file. We can do a clean install but why would running windows media player start the palm install/uninstall .msi file? I have not heard why?
    John_Collyer > All my installs have worked fine. Unless there is a deeper cleaning process you can help me with other than running the remove program, is it worth trying AGAIN?
    Dan > Did you perform clean uninstall and reinstall >
    John_Collyer > Clean = remove program, reinstall, and sync to a new user folder? Then Yes. Other options?
    Dan > No we need top perform few other steps .
    John_Collyer > Ok shall I "Remove Program"?
    Dan > No please wait .
    Dan > First please let me know if you have any data in the Palm Desktop in the computer .
    John_Collyer > Yes, but it is also going to be kept in the phone correct? It will survive if we create a new user folder right?
    Dan > Yes .
    Dan > Please let me know the user name given during the Sync .
    John_Collyer > Well then I think it is safe, I have recently hotsynced so the data should be a match?
    John_Collyer > John Collyer
    Dan > Cool .
    Dan > Thank you for information .
    Dan > In the computer open My documents -->Palm OS Desktop-->locate folder called CoolyJ .
    Dan > In the computer open My documents -->Palm OS Desktop-->locate folder called CoolyJ .
    John_Collyer > No user folder there.... It's on the V: drive V:\jcollyer-files\PalmDataV6_001\CollyeJ Yes?
    Dan > Please wait .
    Dan > Please right click on the Palm Desktop and then click on Properties .
    John_Collyer > the .exe in V:\PalmDesktop6App or the shortcut in start menu?
    John_Collyer > start menu= V:\PalmDesktop6App\Palm.exe
    Dan > You will have the Palm Desktop icon on the computer desktop .
    Dan > Okay .
    Dan > Thank you for information .
    Dan > Please take the back of the Palm Desktop data in the computer .
    John_Collyer > Destop target = V:\PalmDesktop6App\Palm.exe tpp
    John_Collyer > ??? Please take the back of the Palm Desktop data in the computer
    Dan > I mean to tell you that we must save all data of the Palm Desktop in different location .
    Dan > I will assist you .
    Dan > In the computer open V:drive-->locate Palm folder .
    Dan > Open Palm folder and check if you have folder called CoolyJ .
    John_Collyer > V:\jcollyer-files\PalmDataV6_001\CollyeJ
    John_Collyer > No CoolyJ
    Dan > Okay .
    Dan > In the computer open Vrive-->Collerfiles-->Copy Palm folder and paste on the computer desktop .
    John_Collyer > done
    Dan > Okay .
    Dan > Do not delete the Pal folder that was copied to computer desktop .
    John_Collyer > ok
    Dan > First go to Start-->Control Panel-->Add/Remove Programs. There Palm or PalmOne or Palm Desktop will be listed. Click Remove against it.
    Let me know once you are done with unistallation process.
    John_Collyer > starting
    John_Collyer > done, next
    Dan > Now in the computer open V:drive-->Collerfiles-->Rename Palm folder to Palmold .
    John_Collyer > already there
    Dan > Okay .
    Dan > Now we need to perform Registry Clean up .
    Dan > Please perform the steps provided .
    Dan > 1. Click on Start.
    2. Click on Run.
    3. Type "regedit" and click Ok.
    4. Then Registry Editor window will open.
    5. Double click on HKEY_CURRENT_USER.
    6. Then click on +sign beside Software.
    7. Now delete all the folders which start with Palm.
    8. Also delete the folder called US robotics.
    9. Now Double click on HKEY_LOCAL_MACHINE.
    10. Then click on +sign beside Software.
    11. Now delete all the folders which start with Palm.
    John_Collyer > still working
    Dan > Please take your time .
    Dan > I will be with you .
    John_Collyer > done
    Dan > Cool .
    Dan > You are pretty fast .
    Dan > Now clean uninstall of the Palm software is done .
    John_Collyer > I was already deep in the registry look at this all thats how I found the "Path"
    John_Collyer > Now we reinstall? Can I still use the V: drive for application files and user data?
    Dan > Yes .
    Dan > You can use V:drive .
    Dan > After you install the Palm software perform Sync and make sure that Sync is success .
    Dan > And you will not have sny issue with the Windows media player messing up .
    John_Collyer > Ok I will start the PD6 install now
    Dan > Please go a head .
    Dan > Thank you for all the cooperation and patience in the chat session .,
    John_Collyer > working almost done
    Dan > Awesome .
    Dan > But after installation is complete we need to restart the computer .
    Dan > We must restart the computer for necessary changes to take place .
    John_Collyer > how do I get back to you in support?
    Dan > I assure that you will not have any further issue ,
    Dan > However if you do have any further issue .
    Dan > Please login with the same user name and email address .
    John_Collyer > Palm Support can find me after that?
    Dan > Yes .
    Dan > I will have Our chat session in Our Data Base .
    John_Collyer > Ok then it is time for a restart?
    Dan > So that once you re contact us we will check with the required information and pull the chat session already we have done with .
    Dan > And proceed with the further steps .
    Dan > Please go ahead .
    John_Collyer > Till then, good bye...
    Dan > Please let me know if I can be of any further help .
    Dan > Analyst has closed chat and left the room
    Did all this above. Still have Windows Media Player trying to launch the ACCESS .msi installer which creates these processes:
    IDriver.exe (x5)
    IdriverT.exe (x1)
    MSIexec.exe (x3)
    I have let windows media player and windows installer run a bit longer and I get a second window titled "windows installer" with the text:
    The feature you are trying to use is on a network resource that is unavailable.
    Click OK to try again, or enter and alternate path to a folder containing the installation package 'Palm Desktop by ACCESS.msi' in the box below.
    [C:\DOCUME~1\jcollyer\LOCALS~1\Temp\_is4\]
    this is the default text.
    I browsed my way to C:\WINDOWS\Installer and found a new .msi for PD6 called C:\WINDOWS\Installer\45599.msi and renamed it to C:\WINDOWS\Installer\45599_PalmNeedsBetterSoftware​_msi
    Still have the same issues from above. I thought if the .msi failed to be found then the error might just get passed over. So I do not know where IDriver.exe or other MS Installer applications is getting the values for 'Palm Desktop by ACCESS.msi'?
    Again it is very odd that the ACCESS installer it trying to run when windows media player is launched (even with out any media, app only). Please do not tell me to do another "Clean Install" that is just BABY-TALK tech support at this point!!! I need to know why the PalmDesktop ACCESS installer is hooking into Windows Media Player. There is no doubt something odd is going on. As long as the V: drive where my Palm Desktop applications and user data is stored there is no problem. As soon as the V: drive is off line I have all these issues.
    I noticed that PalmDesktop now has advanced media tools to "Make Video" in the media tab of Palm Desktop. This is where you can export a .mpg slide show of all you photos from your palm photos.
    I would bet you a free year of Verizon's wireless data plan that the new Palm Desktop is registered as some type of client application to windows media service. When windows media player loads it tries to register all the clients and the Palm media client application is not available so some how MS Windows tries to start the PalmDesktop installer to fix the client media application.
    Please note that I am not using Pocket Tunes at all, not trying to sync pTunes with Windows media or Rhapsody or any other media junk. Right now I want my palm to just be a extra smart contact and calendar manager, that’s all.
    PALM NEEDS TO PATCH THIS. Palm Desktop should call Windows Media when it needs it, not have Palm Desktop registered as a client application to Windows Media by default!
    PLEASE TELL ME THERE IS A SIMPLE FAQ FIX FOR ALL NONSENSE???
    Post relates to: Centro (Verizon)

    Thank you so much for replying.
    Yes I have removed and reinstalled WMP.
    I had good results with the PD6 application installed on the default path onto the C: drive with the one exception that if the application was launched by accident and the user data path was not available, the PD6 application would blow away my custom user path registry settings. Now that I know what they are I have made a .reg file to repair my registry to my desired user data paths.
    Installing the application on the removable drive appeared to help prevent me from launching the application by accident and overwriting my registry with default user paths.
    So which is the less of the two evils?
    If the application directory is not available, windows media player still tries to launch the .msi for installing PD6.
    If I install the application to the C: drive but the user data to the removable drive, launching the PD6 application without the user data drive will still corrupt my registry settings for a user data path.
    Both these issues seem like a logical (if not easy) fix that should be done in the PD6 application and installation package. I mean really, cannot anyone tell me why windows media player is checking the PD6 application directory? Why in PD4 did we have an option control for setting the user data path from the PD4 application? Why is this option not in the PD6 application, just the installer?
    I am given a choice during installation to move the user data to another non default location. Why else would this be provided if not to accommodate my kind of request to store the user data into an alternate location other than “My Document”. Certainly Palm is not trying to force the users on how to protect and store their personal data?
    Post relates to: Centro (Verizon)

  • Windows Media Player for Mac.  How do I install?

    I just bought a Mac (switching from Windows based machine). If I go to a website that has video, it keeps telling me that I don't have the proper plug-ins and directs me to the Microsoft site. When I try to download the Windows Media player from that site, it keeps telling me NO (in so many words, of course). Can someone please teach me how to get Windows Media Player on my new iMac?
    Thanks. By the way, if anyone is nice enough to help me, please speak to me as you would a third grader. I am not good with computers.
    Thanks.

    http://www.versiontracker.com/php/dlpage.php?id=13112&db=mac&pid=37681&kind=&lnk =http%3A%2F%2Fdownload.microsoft.com%2Fdownload%2F0%2Ff%2F3%2F0f347443-f1ff-4830 -9b20-65da2c6bf111%2FWindowsMediaInstaller.bin
    Try that.

Maybe you are looking for