Could renaming export file stop videos from playing

I am puzzled as to why the videos embedded in a swf file play
okay within the swf file, but do not play okay on my website. I
have made sure that the swf file and respective flv files are all
uploaded to the server, but none of the videos play.
Pretty well much I followed this tutorial
http://multimedia.journalism.berkeley.edu/tutorials/flash/building-flash-templates/adding- video/
I put a FLVPlayback component on my Flash stage.
I encoded my videos in the CS3 video encoder and followed the
settings given in the above tutorial link. I did not resize or crop
the videos, I set the quality to medium and I gave my videos a name
prior to encoding it.
After encoding the film, I highlighted the FLVPlayback
Component and in the parameters found the content path and then
linked that to my encoded videos one by one. Then I saved my
worked, played it in the movie tester and then I exported my swf
file to my Dreamweaver folder, but I did rename my exported file
(it is not the same name as my Fla file). Could that make a
difference? I also put my Flv videos in the same folder as my swf
file and uploaded them to my server. I put the swf file on my html
page and then uploaded that to my server. My website shows the swf
file but the videos do not appear at all.
I would be grateful to know if you see anything wrong with my
working process here. Could the renaming of the exported file have
caused the problem? Or, if an avi video is encoded more than once
does that make a difference?
I have other swf files up on line that show video, so dont
quite understand why this time it is not working.
For those interested the problem file is at
http://www.marykingmedia.com/marykingmediafive/index.html
But a swf file with embedded video that plays fine online is
at
http://www.marykingmedia.com/marykingmediafour/index.html
Id be grateful for help here.
Thanking you.

A Web designer can code the page to "force" QuickTime (or its plug-in) to be associated to the file type.
If QuickTime can handle the format the page code will decide how the file is used.
The QuickTime Control panel offers the viewer some control over file types. Remove the check mark for .mp3 and relaunch your browser (for the change to take effect).
In theory the viewer should be able to choose which application or plug-in handles a file format. In practice it doesn't always work that way.

Similar Messages

  • How to stop video from playing?

    Hi,
    i have a problem that i've already see that is pretty usual, the videoplayer that i have works fine but when i click in a button to go to another page the videoplayer doesn't stop,the audio continues playing even when i'm not on the videoplayer page.
    I've already found some solutions in the web but none of them worked,probably because i didn't put them in the right place
    The code is a little long:
    // ############# CONSTANTS
    // time to buffer for the video in sec.
    const BUFFER_TIME:Number                = 8;
    // start volume when initializing player
    const DEFAULT_VOLUME:Number                = 0.6;
    // update delay in milliseconds.
    const DISPLAY_TIMER_UPDATE_DELAY:int    = 10;
    // smoothing for video. may slow down old computers
    const SMOOTHING:Boolean                    = true;
    // ############# VARIABLES
    // flag for knowing if user hovers over description label
    var bolDescriptionHover:Boolean = false;
    // flag for knowing in which direction the description label is currently moving
    var bolDescriptionHoverForward:Boolean = true;
    // flag for knowing if flv has been loaded
    var bolLoaded:Boolean                    = false;
    // flag for volume scrubbing
    var bolVolumeScrub:Boolean                = false;
    // flag for progress scrubbing
    var bolProgressScrub:Boolean            = false;
    // holds the number of the active video
    var intActiveVid:int;
    // holds the last used volume, but never 0
    var intLastVolume:Number                = DEFAULT_VOLUME;
    // net connection object for net stream
    var ncConnection:NetConnection;
    // net stream object
    var nsStream:NetStream;
    // object holds all meta data
    var objInfo:Object;
    // shared object holding the player settings (currently only the volume)
    var shoVideoPlayerSettings:SharedObject = SharedObject.getLocal("playerSettings");
    // url to flv file
    var strSource:String                    = root.loaderInfo.parameters.playlist == null ? "playlist.xml" : root.loaderInfo.parameters.playlist;
    // timer for updating player (progress, volume...)
    var tmrDisplay:Timer;
    // loads the xml file
    var urlLoader:URLLoader;
    // holds the request for the loader
    var urlRequest:URLRequest;
    // playlist xml
    var xmlPlaylist:XML;
    // ############# STAGE SETTINGS
    stage.scaleMode    = StageScaleMode.NO_SCALE;
    stage.align        = StageAlign.TOP_LEFT;
    // ############# FUNCTIONS
    // sets up the player
    function initVideoPlayer():void {
        // hide video controls on initialisation
        mcVideoControls.visible = false;
        // hide buttons
        mcVideoControls.btnUnmute.visible            = false;
        mcVideoControls.btnPause.visible            = false;
        mcVideoControls.btnFullscreenOff.visible    = false;
        // set the progress/preload fill width to 1
        mcVideoControls.mcProgressFill.mcFillRed.width    = 1;
        mcVideoControls.mcProgressFill.mcFillGrey.width    = 1;
        // set time and duration label
        mcVideoControls.lblTimeDuration.htmlText        = "<font color='#ffffff'>00:00</font> / 00:00";
        // add global event listener when mouse is released
        stage.addEventListener(MouseEvent.MOUSE_UP, mouseReleased);
        // add fullscreen listener
        stage.addEventListener(FullScreenEvent.FULL_SCREEN, onFullscreen);
        // add event listeners to all buttons
        mcVideoControls.btnPause.addEventListener(MouseEvent.CLICK, pauseClicked);
        mcVideoControls.btnPlay.addEventListener(MouseEvent.CLICK, playClicked);
        mcVideoControls.btnStop.addEventListener(MouseEvent.CLICK, stopClicked);
        mcVideoControls.btnNext.addEventListener(MouseEvent.CLICK, playNext);
        mcVideoControls.btnPrevious.addEventListener(MouseEvent.CLICK, playPrevious);
        mcVideoControls.btnMute.addEventListener(MouseEvent.CLICK, muteClicked);
        mcVideoControls.btnUnmute.addEventListener(MouseEvent.CLICK, unmuteClicked);
        mcVideoControls.btnFullscreenOn.addEventListener(MouseEvent.CLICK, fullscreenOnClicked);
        mcVideoControls.btnFullscreenOff.addEventListener(MouseEvent.CLICK, fullscreenOffClicked);
        mcVideoControls.btnVolumeBar.addEventListener(MouseEvent.MOUSE_DOWN, volumeScrubberClicked);
        mcVideoControls.mcVolumeScrubber.btnVolumeScrubber.addEventListener(MouseEvent.MOUSE_DOWN , volumeScrubberClicked);
        mcVideoControls.btnProgressBar.addEventListener(MouseEvent.MOUSE_DOWN, progressScrubberClicked);
        mcVideoControls.mcProgressScrubber.btnProgressScrubber.addEventListener(MouseEvent.MOUSE_ DOWN, progressScrubberClicked);
        mcVideoControls.mcVideoDescription.btnDescription.addEventListener(MouseEvent.MOUSE_OVER, startDescriptionScroll);
        mcVideoControls.mcVideoDescription.btnDescription.addEventListener(MouseEvent.MOUSE_OUT, stopDescriptionScroll);
        // create timer for updating all visual parts of player and add
        // event listener
        tmrDisplay = new Timer(DISPLAY_TIMER_UPDATE_DELAY);
        tmrDisplay.addEventListener(TimerEvent.TIMER, updateDisplay);
        // create a new net connection, add event listener and connect
        // to null because we don't have a media server
        ncConnection = new NetConnection();
        ncConnection.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
        ncConnection.connect(null);
        // create a new netstream with the net connection, add event
        // listener, set client to this for handling meta data and
        // set the buffer time to the value from the constant
        nsStream = new NetStream(ncConnection);
        nsStream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
        nsStream.client = this;
        nsStream.bufferTime = BUFFER_TIME;
        // attach net stream to video object on the stage
        vidDisplay.attachNetStream(nsStream);
        // set the smoothing value from the constant
        vidDisplay.smoothing = SMOOTHING;
        // set default volume and get volume from shared object if available
        var tmpVolume:Number = DEFAULT_VOLUME;
        if(shoVideoPlayerSettings.data.playerVolume != undefined) {
            tmpVolume = shoVideoPlayerSettings.data.playerVolume;
            intLastVolume = tmpVolume;
        // update volume bar and set volume
        mcVideoControls.mcVolumeScrubber.x = (53 * tmpVolume) + 318;
        mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
        setVolume(tmpVolume);
        // create new request for loading the playlist xml, add an event listener
        // and load it
        urlRequest = new URLRequest(strSource);
        urlLoader = new URLLoader();
        urlLoader.addEventListener(Event.COMPLETE, playlistLoaded);
        urlLoader.load(urlRequest);
    function playClicked(e:MouseEvent):void {
        // check's, if the flv has already begun
        // to download. if so, resume playback, else
        // load the file
        if(!bolLoaded) {
            nsStream.play(strSource);
            bolLoaded = true;
        else{
            nsStream.resume();
        vidDisplay.visible = true;
        // switch play/pause visibility
        mcVideoControls.btnPause.visible    = true;
        mcVideoControls.btnPlay.visible        = false;
    function pauseClicked(e:MouseEvent):void {
        // pause video
        nsStream.pause();
        // switch play/pause visibility
        mcVideoControls.btnPause.visible    = false;
        mcVideoControls.btnPlay.visible        = true;
    function stopClicked(e:MouseEvent):void {
        // calls stop function
        stopVideoPlayer();
    function muteClicked(e:MouseEvent):void {
        // set volume to 0
        setVolume(0);
        // update scrubber and fill position/width
        mcVideoControls.mcVolumeScrubber.x                = 318;
        mcVideoControls.mcVolumeFill.mcFillRed.width    = 1;
    function unmuteClicked(e:MouseEvent):void {
        // set volume to last used value or DEFAULT_VOLUME if last volume is zero
        var tmpVolume:Number = intLastVolume == 0 ? DEFAULT_VOLUME : intLastVolume
        setVolume(tmpVolume);
        // update scrubber and fill position/width
        mcVideoControls.mcVolumeScrubber.x = (53 * tmpVolume) + 318;
        mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
    function volumeScrubberClicked(e:MouseEvent):void {
        // set volume scrub flag to true
        bolVolumeScrub = true;
        // start drag
        mcVideoControls.mcVolumeScrubber.startDrag(true, new Rectangle(318, 19, 53, 0)); // NOW TRUE
    function progressScrubberClicked(e:MouseEvent):void {
        // set progress scrub flag to true
        bolProgressScrub = true;
        // start drag
        mcVideoControls.mcProgressScrubber.startDrag(true, new Rectangle(0, 2, 432, 0)); // NOW TRUE
    function mouseReleased(e:MouseEvent):void {
        // set progress/volume scrub to false
        bolVolumeScrub        = false;
        bolProgressScrub    = false;
        // stop all dragging actions
        mcVideoControls.mcProgressScrubber.stopDrag();
        mcVideoControls.mcVolumeScrubber.stopDrag();
        // update progress/volume fill
        mcVideoControls.mcProgressFill.mcFillRed.width    = mcVideoControls.mcProgressScrubber.x + 5;
        mcVideoControls.mcVolumeFill.mcFillRed.width    = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
        // save the volume if it's greater than zero
        if((mcVideoControls.mcVolumeScrubber.x - 318) / 53 > 0)
            intLastVolume = (mcVideoControls.mcVolumeScrubber.x - 318) / 53;
    function updateDisplay(e:TimerEvent):void {
        // checks, if user is scrubbing. if so, seek in the video
        // if not, just update the position of the scrubber according
        // to the current time
        if(bolProgressScrub)
            nsStream.seek(Math.round(mcVideoControls.mcProgressScrubber.x * objInfo.duration / 432))
        else
            mcVideoControls.mcProgressScrubber.x = nsStream.time * 432 / objInfo.duration;
        // set time and duration label
        mcVideoControls.lblTimeDuration.htmlText        = "<font color='#ffffff'>" + formatTime(nsStream.time) + "</font> / " + formatTime(objInfo.duration);
        // update the width from the progress bar. the grey one displays
        // the loading progress
        mcVideoControls.mcProgressFill.mcFillRed.width    = mcVideoControls.mcProgressScrubber.x + 5;
        mcVideoControls.mcProgressFill.mcFillGrey.width    = nsStream.bytesLoaded * 438 / nsStream.bytesTotal;
        // update volume and the red fill width when user is scrubbing
        if(bolVolumeScrub) {
            setVolume((mcVideoControls.mcVolumeScrubber.x - 318) / 53);
            mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
        // chech if user is currently hovering over description label
        if(bolDescriptionHover) {
            // check in which direction we're currently moving
            if(bolDescriptionHoverForward) {
                // move to the left and check if we've shown everthing
                mcVideoControls.mcVideoDescription.lblDescription.x -= 0.1;
                if(mcVideoControls.mcVideoDescription.lblDescription.textWidth - 133 <= Math.abs(mcVideoControls.mcVideoDescription.lblDescription.x))
                    bolDescriptionHoverForward = false;
            } else {
                // move to the right and check if we're back to normal
                mcVideoControls.mcVideoDescription.lblDescription.x += 0.1;
                if(mcVideoControls.mcVideoDescription.lblDescription.x >= 0)
                    bolDescriptionHoverForward = true;
        } else {
            // reset label position and direction variable
            mcVideoControls.mcVideoDescription.lblDescription.x = 0;
            bolDescriptionHoverForward = true;
    function onMetaData(info:Object):void {
        // stores meta data in a object
        objInfo = info;
        // now we can start the timer because
        // we have all the neccesary data
        if(!tmrDisplay.running)
            tmrDisplay.start();
    function netStatusHandler(event:NetStatusEvent):void {
        // handles net status events
        switch (event.info.code) {
            // trace a messeage when the stream is not found
            case "NetStream.Play.StreamNotFound":
                trace("Stream not found: " + strSource);
            break;
            // when the video reaches its end, we check if there are
            // more video left or stop the player
            case "NetStream.Play.Stop":
                if(intActiveVid + 1 < xmlPlaylist..vid.length())
                    playNext();
                else
                    stopVideoPlayer();
            break;
    function stopVideoPlayer():void {
        // pause netstream, set time position to zero
        nsStream.pause();
        nsStream.seek(0);
        // in order to clear the display, we need to
        // set the visibility to false since the clear
        // function has a bug
        vidDisplay.visible                    = false;
        // switch play/pause button visibility
        mcVideoControls.btnPause.visible    = false;
        mcVideoControls.btnPlay.visible        = true;
    function setVolume(intVolume:Number = 0):void {
        // create soundtransform object with the volume from
        // the parameter
        var sndTransform        = new SoundTransform(intVolume);
        // assign object to netstream sound transform object
        nsStream.soundTransform    = sndTransform;
        // hides/shows mute and unmute button according to the
        // volume
        if(intVolume > 0) {
            mcVideoControls.btnMute.visible        = true;
            mcVideoControls.btnUnmute.visible    = false;
        } else {
            mcVideoControls.btnMute.visible        = false;
            mcVideoControls.btnUnmute.visible    = true;
        // store the volume in the flash cookie
        shoVideoPlayerSettings.data.playerVolume = intVolume;
        shoVideoPlayerSettings.flush();
    function formatTime(t:int):String {
        // returns the minutes and seconds with leading zeros
        // for example: 70 returns 01:10
        var s:int = Math.round(t);
        var m:int = 0;
        if (s > 0) {
            while (s > 59) {
                m++; s -= 60;
            return String((m < 10 ? "0" : "") + m + ":" + (s < 10 ? "0" : "") + s);
        } else {
            return "00:00";
    function fullscreenOnClicked(e:MouseEvent):void {
        // go to fullscreen mode
        stage.displayState = StageDisplayState.FULL_SCREEN;
    function fullscreenOffClicked(e:MouseEvent):void {
        // go to back to normal mode
        stage.displayState = StageDisplayState.NORMAL;
    function onFullscreen(e:FullScreenEvent):void {
        // check if we're entering or leaving fullscreen mode
        if (e.fullScreen) {
            // switch fullscreen buttons
            mcVideoControls.btnFullscreenOn.visible = false;
            mcVideoControls.btnFullscreenOff.visible = true;
            // bottom center align controls
            mcVideoControls.x = (Capabilities.screenResolutionX - 440) / 2;
            mcVideoControls.y = (Capabilities.screenResolutionY - 33);
            // size up video display
            vidDisplay.height     = (Capabilities.screenResolutionY - 33);
            vidDisplay.width     = vidDisplay.height * 4 / 3;
            vidDisplay.x        = (Capabilities.screenResolutionX - vidDisplay.width) / 2;
        } else {
            // switch fullscreen buttons
            mcVideoControls.btnFullscreenOn.visible = true;
            mcVideoControls.btnFullscreenOff.visible = false;
            // reset controls position
            mcVideoControls.x = 0;
            mcVideoControls.y = 330;
            // reset video display
            vidDisplay.y = 0;
            vidDisplay.x = 0;
            vidDisplay.width = 440;
            vidDisplay.height = 241;
    function playlistLoaded(e:Event):void {
        // create new xml with loaded data from loader
        xmlPlaylist = new XML(urlLoader.data);
        // set source of the first video but don't play it
        playVid(0, true)
        // show controls
        mcVideoControls.visible = true;
    function playVid(intVid:int = 0, bolPlay = true):void {
        if(bolPlay) {
            // stop timer
            tmrDisplay.stop();
            // play requested video
            nsStream.play(String(xmlPlaylist..vid[intVid].@src));
            // switch button visibility
            mcVideoControls.btnPause.visible    = true;
            mcVideoControls.btnPlay.visible        = false;
        } else {
            strSource = xmlPlaylist..vid[intVid].@src;
        // show video display
        vidDisplay.visible                    = true;
        // reset description label position and assign new description
        mcVideoControls.mcVideoDescription.lblDescription.x = 0;
        mcVideoControls.mcVideoDescription.lblDescription.htmlText = (intVid + 1) + ". <font color='#ffffff'>" + String(xmlPlaylist..vid[intVid].@desc) + "</font>";
        // update active video number
        intActiveVid = intVid;
    function playNext(e:MouseEvent = null):void {
        // check if there are video left to play and play them
        if(intActiveVid + 1 < xmlPlaylist..vid.length())
            playVid(intActiveVid + 1);
    function playPrevious(e:MouseEvent = null):void {
        // check if we're not and the beginning of the playlist and go back
        if(intActiveVid - 1 >= 0)
            playVid(intActiveVid - 1);
    function startDescriptionScroll(e:MouseEvent):void {
        // check if description label is too long and we need to enable scrolling
        if(mcVideoControls.mcVideoDescription.lblDescription.textWidth > 138)
            bolDescriptionHover = true;
    function stopDescriptionScroll(e:MouseEvent):void {
        // disable scrolling
        bolDescriptionHover = false;
    // ############# INIT PLAYER
    initVideoPlayer();

    No,im not using flvplayback component (i think).
    Heres the video player that i'm using:
    http://www.thetechlabs.com/tutorials/xml/expanding-the-as3-videoplayer/

  • How can I stop videos from playing in a slideshow?

    I only want to see a slideshow of the photos in an event but iPhoto 09 is showing all the videos as well. Is there a way for me to stop this without having to remove all the videos from every event?

    To add some to Terence's suggestion you can create a Smart album with the criteria:
    1 - Album is "then album you want to use"
    2 - File name does not contain ".mov". OR File Name ends with .jpg.
    This will give you a smart album that will only contain your image files. You can change the album to any other album you want to view as a slideshow.

  • How can I Stop Video from Playing? (not just mute or pause)

    I have a page for playing a video. Below it I have a 'return to previous page' button. If the video is playing and I click this button to return I can still hear the video playing in the background. I know how to mute or pause the video when clicking this button but I would like to know how to completely stop the video so that if I go back to the video page - the playhead is at the start and I can see its thumbnail image again.
    Anyone help?

    do you mean:
    sym.$("Video01")[0].currentTime = 0;
    I tried this but it didn't work (just resets and plays in background). Also, I have several videos on one page and a navigation bar at the top. I would like (when I click the Nav Bar to go to another page) any video to stop and reset to its Poster.
    If you like, I could send over a very simplified project.

  • How to stop video from playing while working on menu

    I have some menus with a bunch of moving video clips in drop zones in them. After some fiddling around with preferences, the clips are playing while working on the menus rather than just showing still images. I havent seen this behavior before.
    Anyway, its making it excruciatingly, hair pullingly, jump out the windowly, eventually the app does not respondly slow to do any work in the app. Anyone know what stupid setting we must have changed?
    thx

    Thx for the speedy reply. I'm not sure what was happening, but thankfully the app was so overwhelmed that I had to force quit it. Aside from losing my recent changes (aarrggh why no autosave in dvdsp) it was a blessing because on opening the app again, problem gone. Didnt have to jump afterall. I'll try some experiments with those keystrokes once the app is done rendering these menus.

  • How do I stop Firefox from playing video after I navigate from the page or leave Firefox?

    Simple and annoying. . Extremely frustrating issue with Firefox for Android. ..
    I watch a YouTube video or any flash video. . And after I hit play, the ONLY way to stop it is to hit pause or let it play to the end or close the tab. .
    It will NOT automatically stop if I open another tab. or if I navigate from Firefox. .
    I feel this is a very basic feature. Did I set something up that was wrong?
    Can I ask two questions?
    I have another extremely annoying and frustrating problem with Firefox for Android.
    The "top" (if you pull down the tabs) search bar DOES NOT allow my stock Samsung keyboard to auto space. . Thus instead of typing
    "How do I stop Firefox from playing video after I navigate from the page or leave Firefox?"
    I'll type in
    "HowdoIstopFirefoxfromplayingvideoafterInavigatefromthepageorleaveFirefox?"
    Unless I manually got the space bar.
    Using a recently factory data reset Samsung Galaxy s4 active.. android 4.2.2 and stock Samsung keyboard ... Firefox 34.0.1
    Thanks in advanced.
    Ps
    I was a hardcore xscope user for years and just recently gave in to Firefox when i lost all my bookmarks due to a forced factory data reset. .

    I'm using a different keyboard which works fine in the most top search bar...
    I cannot believe that it's not a feature.
    What if I was watching a video and wanted to shut it off quickly? I'll have to hit back? Wait for the previous screen to load then hit the power button?
    Please tell me that feature ids soon to come

  • How do you stop multiple Youtube videos from playing at the same time?

    As of a few days ago, when I click on a youtube video, as the commercial begins to play, you can begin to hear multiple/different commercials playing at the same time. After the commercials, the same issue occurs with the main video--multiple videos are being played at the same time and are not in sync. I've updated all my plug ins and have tried the suggestion posted in the forum provided in the link below in which someone else has expressed the same issue, but nothing has worked so far. Does anyone know what can be done?
    http://productforums.google.com/forum/#!topic/youtube/5Lnikma4UqM

    Are you loading those videos as Flash or HTML5? It is possible to prevent videos from playing until you click something with Flashblock for Flash or Stop Tube HTML5 for HTML5. You can also stop the commercials with Adblock Plus with an Easylist subscription.
    * https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/
    * https://addons.mozilla.org/en-US/firefox/addon/flashblock/
    * https://addons.mozilla.org/en-US/firefox/addon/stop-tube/

  • OS X Mavericks/Safari: How do I Stop Video Auto-Play?

    Using Mavericks 10.9.2/Safari on very recent MBP. How do I stop video auto-play when visiting various web sites?

    You're welcome.
    If you are complete with this thread please mark it as "answered" so others know your question has been addressed to your satisfaction.
    Aloha from Big Island.

  • Stop Video from loading automatically...

    Hi Everyone,
    I have a VideoDisplay control that I want to play some video,
    however I want to control when the video to be played should load.
    At the moment, video is automatically loaded even though autoplay
    has been set to false. Stopping the video from playing doesn't seem
    to stop it from loading. Can I stop the video from loading at all?
    Thanks for your help,
    - Tony

    Clark_Kent101 wrote:
    > Hi Everyone,
    >
    > I have a VideoDisplay control that I want to play some
    video, however I want
    > to control when the video to be played should load. At
    the moment, video is
    > automatically loaded even though autoplay has been set
    to false. Stopping the
    > video from playing doesn't seem to stop it from loading.
    Can I stop the video
    > from loading at all?
    >
    > Thanks for your help,
    >
    > - Tony
    >
    Have you tried Enabled="false"
    Mark

  • Hi, I can not delete files Film / video from the desktop it wants my password I write but Ando I can not float to Trash

    Hi, I can not delete files Film / video from the desktop it wants my password I write but Ando I can not float to Trash

    This topic has a fix for that problem: Desktop to Trash Problem: "Finder wants...: Apple Support Communities
    OT

  • Stop videos from automatically playing

    When I navigate to any number of sites, videos sometimes up to 8 of them will all begin playing.  It's crazy.  I've lost control of my browser.  Is there a way to prevent videos, flash or otherwise from automatically playing.  I've already installed click to flash, but that only accounts for half the content being pushed at me.

    Hello,
    I am not sure which widget you are using but you can try the suggestions in the steps below to add videos to a muse site.
    Also make sure you have mp4 or webm file format.
    To import video in Muse you can use following steps.
    1. Import Video to Asset tab
    Go to File > Add Files to upload and select the file that you want to import. This will copy the file in asset tab in muse.
    2. Insert HTML code :
         a. Go to the page on which you want to place the video.
         b. Go to Object > Insert HTMl
         c. Paste the code mentioned below and update the <filename> with your file name
    <video width="320" height="240" controls>
       <source src="assets/<Filename>.mp4" type="video/mp4">
    </video>
    Hope this will help you what you desire to achieve.
    Regards
    Vivek

  • How to stop youtube videos from playing after restart

    every time I restart firefox (currently 24.1.1 or 14.0.1) any tabs with youtube videos start playing and I have to wait until after restart is complete before I can find it/them.
    is there a way to stop this?

    I don't know of a way to stop auto-play on restart only. There are some extensions that can stop auto-play in general (i.e., all the time). I haven't tried any of them myself, but it looks as though these might help:
    * [https://addons.mozilla.org/En-us/firefox/addon/smartvideo-for-youtube-mytube/ SmartVideo For YouTube]
    * [https://addons.mozilla.org/En-us/firefox/addon/stop-youtube-autoplay/ Stop YouTube Autoplay] (updated version not yet reviewed)

  • I want to remove what Skype identifies as "Tell you friends what you are feeling . . . ."  One person on the Skype community said I could rename a file, but he thought I was on a PC.  I am using OS10.7.4, and Skype is functioning OK.

    One person on the Skype community suggested: 
    Re: disable mood history
    17-09-2011   02:04                 
    Actually it is possible to delete your own mood message updates but it requires an unsupported ”fix”.
    You need to delete the keyval.db database file. In order to be on the safe side, it’s best just to rename this file, so you can always get it back if something went wrong.
    You can find this file by entering %appdata%\skype in the Start Run/Search box. This will open the Skype User folder. Locate there the folder with your Skype Account name and the keyval.db file will be there. You must stop Skype from running on your computer before deleting/renaming this file. Next time you start Skype a new version of this file will be recreated and all mood message updates will be removed from the home page.
    However, this guy didn't know I was on a Mac.  I phoned Apple to see if they could show me how to get into the Skype file apparently on my computer, and they couldn't find it. 
    Anyone out there have any ideas?  It doesn't seem as if I have any Skype files on my computer.  If I need to make file changes via "the terminal," can someone tell me how to do this?
    Gretchen

    Hello,
    I had the same problem with finding this file.
    There's no such file in Mac OS X version of Skype. But there's a directory for your Skype user account in /Users/%current_user_name%/Library/Application Support/Skype/
    try:
    quitting Skype
    renaming old folder
    signing into the Skype

  • How do I stop sound from playing when I leave frame?

    I have designed a website for an advertising agency using
    Flash and ActionScript 3. In the portfolio page, I have several TV
    commercials that are available to play. What I need is 1) when the
    user leaves the TV ad page, I want the tv commercial to quit
    playing (right now, it continues even though the user has moved on
    to other pages). and 2) If the user selects a different TV
    commercial without first stopping the original one, the sound for
    both of the them plays at the same time. I am using the flv
    playback component. The video appears to stop, but the sound
    doesn't. My TV commercials are external flv files.
    I have also made a page for radio ads and I just used play,
    pause and stop buttons to control the sound. This page does the
    same thing. The sound continues when you move on to another page in
    the site. My sound files are also all external sound files.
    All of my pages are just individual frames in a main
    timeline. Each page has a frame label.
    If this is not clear, here is the link to my site:
    http://www.hammockads.com
    I would appreciate any help anyone can give me with this. I
    have tried for weeks now, to solve this problem and I just don't
    know enough actionscript or flash to figure it out. I've only been
    working with this for a few months.

    I have my website set up so that the portfolio page occupies
    one frame of my timeline. Inside that frame, I have a movie clip
    which contains the additional pages of the portfolio section. The
    additional pages show examples of the print ads, radio ads, tv ads,
    web sites that my client has created. Each of these additional
    pages is also one frame of the timeline (this time inside the
    portfolio movie clip). When the user clicks a link in the website,
    it just takes them to another frame on my timeline.
    The entire website is one swf file and each of the pages is
    located on one frame of the timeline (either on the main timeline
    or inside a movie clip timeline.)
    In the tv ads page, I have a button for each of the tv
    commercials. When the user selects a specific commercial, then the
    actionscript calls that particular ad from an external flv file.
    The problem is that when the user clicks another button (to view
    another ad or chooses to go to another page in the website (which
    involves leaving the current frame in the timeline) the video or
    radio ad doesn't automatically stop playing.
    I can't really post code, because I'm not sure what code to
    post. The TV ads are currently set up using the FLV playback
    feature. The radio ads are set up with play, stop, pause and volume
    control buttons. When a user here selects a new radio ad, the one
    currently playing stops and the new one starts, but when the user
    chooses to go to another page without first stopping the ad from
    playing, it continues to play.
    On the TV ads page, nothing is really working except that the
    ad plays and stops when it comes to the end. I'm thinking that I
    may need to go back and re-code the TV ads to play without using
    the flv playback option.
    Any thoughts? I hope this is a little bit clearer.

  • Exporting 7 min. video from Aperture and received error.  How can I get the original back?

    I uploaded a video from my iphone 5 into Aperture and then I tried to export it to my desktop.  After I clicked on Export, it attempted to export for a while but then gave me an error message saying that 0 of 1 videos was exported and it couldn't export.  Now it shows the video in the album in Aperture, but it won't play and I can't do anything with it.  I have tried to recall the original but it says there is no original and it says there are no referenced files when I try to reference the files.  The clip also shows an arrow pointing to the right with a yellow triangle by it.  This is located in the bottom right of the image, right next to the video icon.  My concern is that I tried to export the original.  Any ideas on how I can fix this and get the video back?

    The clip also shows an arrow pointing to the right with a yellow triangle by it.  This is located in the bottom right of the image, right next to the video icon.
    Is that the badge you are seeing? Then Aperture has lost the connection to the original video file.
    Now it shows the video in the album in Aperture, but it won't play and I can't do anything with it.  I have tried to recall the original but it says there is no original and it says there are no referenced files when I try to reference the files. 
    You tried to reconenct and locate the referenced file? Then you probably imported the video as "Managed" and then the commands for referenced files do not work.
    Look directly into your Aperture library package, if the video is still there:
    Select the Aperture Library in the Finder and ctrl-click(or right click) it.
    Then select "Show Package Contents" from the pop-up.
    In the Finder window that opens scroll down to the "Masters" folder and open its subfolder "2013" and then go to the month and day, when you imported your video. Do you see your video there, or any imports at all?
    If you see the video in your library package, copy it to the Desktop, ad check, if you camn play it.
    What do you see?
    Regards
    Léonie

Maybe you are looking for

  • I'm having trouble finding firefox sync on my desktop and to download to my ipad2 for schoolwork!

    I'm having trouble finding firefox sync on my desktop AND getting it over to my ipad2. I've been through all the support and still can't find it. Please help! I need it for my schoolwork!

  • HT1368 free apps wish list

    When will we be able to add free apps to this list? More like a favorite option.

  • Generating one sheet from another.

    I am using iWork'09 and am wondering if I can do the following. I would like to create a spreadsheet of various items related to all projects. I would then like to create separate spreadsheets/tables based on the data in one row of spreadsheet #1. Th

  • Oracle 8i Installation with Windows XP - Urgent

    Hi!! I wanted to know if anyone can help me. I have Oracle 8i and I want to install it on Windows XP professionl version, The installation goes fine and the database is installed and runs fine until Once I restart the computer, The database service f

  • SAP-ISU consultant details

    Hi friends, can any halp me to know SAP-ISU consultant details, what are all things i have in that SAP-ISU, whether it's having any programming part like ABAP,