SWF works fine but breaks when embedded online - very odd!

Hello,
I encountered a really strange Flash problem and appreciate any help or insight you could share.
As you can see on http://knowledge.allianz.com/en/media/ecards/50/blind/62.html the last part of the Flash movie seems to be broken. Oddly enough, when I take the embedded SWF and view it seperately:http://knowledge.allianz.com/nopi_downloads/swfs/Allianz_ecard_holland_2_1.swf - everything seems to be fine!
I'm not a flash expert, I don't know what can go wrong with embedding etc. but the actual FLA file seems to be ok, the map layer that is coming through randomly at the end shouldn't even be there! The frames at this point of the timeline on this layer are actually empty.
Has anyone ever come across a similar issue and can point me in the right direction?
Any help is greatly appreciated.
Thanks,
Paz

Yes, I resolved the problem. It had nothing to do with layer visibility or masking. The FLA I provided had all layers visible. I downloaded it myself and checked it again and there are definitely no crossed out layers.
The issue was a completely different one. As so often the weirdest problems have the simplest solutions. The SWF was embedded with wmode='transparent' which caused a screenshot that the client put as background of the div containing the Flash to show through a part of the SWF that didn't have a background. That's why it looked like a random part of the flash movie suddenly appears at this point, when in reality it was only an image on the site (if they had used yellow smileys as placeholders I would have noticed it a lot sooner). I didn't notice the transparent bit in the SWF because I only tested it on a white background. I have now put a white background in and everything seems to be fine.  Thanks for having a look anyway.
take care,
Paz

Similar Messages

  • Swf works solo, but not when loaded in another swf

    if u wanna see for yourself how it works, create and export a font named "Century" and create an .as file that gets and sets a textfield. Anyways the first issue is, it sometimes doesn't handle it's event listeners when I test the movie, then if i retest it, it works fine. Second I tried loading this swf file into my main file but i get
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at MethodInfo-90()
    at MethodInfo-82()
    even if the menu file works fine on its own
    here's the menu file
    import com.greensock.TweenLite;
    import com.greensock.easing.*;
    import getSet;
    var getter:getSet = new getSet();
    var menu:Sprite;
    init();
    function init():void {
    menu = initMenu();
    addChild(menu);
    menu.addEventListener(Event.ENTER_FRAME,float,false,0,true);
    menu.x = stage.stageWidth - 61;
    menu.y = stage.stageWidth/2 + menu.height/1.75;
    function initMenu():Sprite {
    var menuStart:Boolean = false;
    var homeL:Sprite = homeLink();
    var workL:Sprite = workLink();
    var resumeL:Sprite = resumeLink();
    var contactL:Sprite = contactLink();
    var flashL:Sprite = flashLink();
    var j:int = 0;
    menu = new Sprite();
    menu.addChild(homeL);
    menu.addChild(workL);
    menu.addChild(resumeL);
    menu.addChild(contactL);
    menu.addChild(flashL);
    workL.y = homeL.y - 60;
    resumeL.y = workL.y - 60;
    contactL.y = resumeL.y - 60;
    flashL.y = contactL.y - 60;
    var homeDist:Number = homeL.y;
    var workDist:Number = workL.y;
    var resumeDist:Number = resumeL.y;
    var contactDist:Number = contactL.y;
    var flashDist:Number = flashL.y;
    homeL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
    workL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
    resumeL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
    contactL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
    flashL.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
    function menuRollOver(e:MouseEvent):void {
    var that:Object = e.target;
    e.target.graphics.lineStyle(1,0xEEEEEE);
    e.target.graphics.beginFill(0xEEEEEE);
    e.target.graphics.drawRect(0,0,60,60);
    e.target.graphics.endFill();
    if (menuStart == false) {
    if (e.target.name == "instance12" && menuStart != false) {
    var menuTimer2:Timer = new Timer(501,1);
    menuTimer2.addEventListener("timer",startContact,false,0,true);
    menuTimer2.start();
    function startContact(e:TimerEvent):void {
    menuTimer2.stop();
    showTarget(that);
    that.addEventListener(Event.ENTER_FRAME,showLink,false,0,true);
    that.addEventListener(MouseEvent.ROLL_OUT,menuRollOut,false,0,true);
    that.removeEventListener(MouseEvent.ROLL_OVER,menuRollOver);
    menuTimer2.removeEventListener("timer",startContact);
    } else {
    showTarget(e.target);
    e.target.addEventListener(Event.ENTER_FRAME,showLink,false,0,true);
    e.target.addEventListener(MouseEvent.ROLL_OUT,menuRollOut,false,0,true);
    e.target.removeEventListener(MouseEvent.ROLL_OVER,menuRollOver);
    } else {
    var menuTimer:Timer = new Timer(200);
    menuTimer.addEventListener("timer",checkMenu,false,0,true);
    menuTimer.start();
    function checkMenu(e:TimerEvent):void {
    if (menuStart == false) {
    menuTimer.stop();
    showTarget(that);
    that.addEventListener(Event.ENTER_FRAME,showLink,false,0,true);
    that.addEventListener(MouseEvent.ROLL_OUT,menuRollOut,false,0,true);
    that.removeEventListener(MouseEvent.ROLL_OVER,menuRollOver);
    menuTimer.removeEventListener("timer",checkMenu);
    function menuRollOut(e:MouseEvent):void {
    if (e.target.name == "instance15") {
    fadeObj(e.target);
    hideTarget(e.target);
    var menuStartTimer:Timer = new Timer(50,1);
    menuStartTimer.addEventListener("timer",equalsTrue,false,0,true);
    menuStartTimer.start();
    function equalsTrue(e:TimerEvent):void {
    menuStart = false;
    menuStartTimer.removeEventListener("timer",equalsTrue);
    e.target.graphics.lineStyle(1,0xEEEEEE);
    e.target.graphics.beginFill(0xFFFFFF);
    e.target.graphics.drawRect(0,0,60,60);
    e.target.graphics.endFill();
    e.target.addEventListener(MouseEvent.ROLL_OVER,menuRollOver,false,0,true);
    e.target.removeEventListener(MouseEvent.ROLL_OUT,menuRollOut);
    e.target.removeEventListener(Event.ENTER_FRAME,showLink);
    e.target.addEventListener(Event.ENTER_FRAME,hideLink,false,0,true);
    function showLink(e:Event):void {
    var amount:Number = getAmount(e.target);
    var i:int = getTarget(e.target);
    var curFlash:Number = flashL.y;
    menuStart = true;
    if (e.target.name == "instance15") {
    e.target.removeEventListener(Event.ENTER_FRAME,showLink);
    for (i; i < menu.numChildren; i++) {
    if (menu.getChildAt(i) == e.target) {
    } else {
    if (curFlash >= flashDist - amount) {
    menu.getChildAt(i).y -= 7;
    } else {
    e.target.removeEventListener(Event.ENTER_FRAME,showLink);
    function hideLink(e:Event):void {
    var i:int = getTarget(e.target);
    var curFlash:Number = flashL.y;
    var curContact:Number = contactL.y;
    var curResume:Number = resumeL.y;
    var curWork:Number = workL.y;
    menuStart = true;
    fadeObj(e.target);
    if (e.target.name == "instance15") {
    e.target.removeEventListener(Event.ENTER_FRAME,hideLink);
    for (i; i < menu.numChildren; i++) {
    if (menu.getChildAt(i) == e.target) {
    } else {
    if (curFlash <= flashDist) {
    menu.getChildAt(i).y += 7;
    if (curFlash > flashDist || curContact > contactDist || curResume > resumeDist ||
    curWork > workDist) {
    setDistance();
    hideTarget(e.target);
    e.target.removeEventListener(Event.ENTER_FRAME,hideLink);
    menuStart = false;
    } else if (curFlash == flashDist) {
    setDistance();
    hideTarget(e.target);
    e.target.removeEventListener(Event.ENTER_FRAME,hideLink);
    menuStart = false;
    function getAmount(obj:Object):Number {
    if (obj.name == "instance3") {
    //trace("home");
    return 94;
    } else if (obj.name == "instance6") {
    //trace("work");
    return 63;
    } else if (obj.name == "instance9") {
    //trace("resume");
    return 134;
    } else if (obj.name == "instance12") {
    //trace("contact");
    return 135;
    } else if (obj.name == "instance15") {
    //trace("flash");
    return 80;
    return 4;
    function getTarget(obj:Object):int {
    for (var i:int = 0; i < menu.numChildren; i++) {
    if (menu.getChildAt(i) == obj) {
    return i;
    return 8;
    function setDistance():void {
    homeL.y = homeDist;
    workL.y = workDist;
    resumeL.y = resumeDist;
    contactL.y = contactDist;
    flashL.y = flashDist;
    function showTarget(obj:Object):void {
    var i:int = getTarget(obj);
    var restMenu:TextField;
    var that:Object;
    //if (menuStart = false
    if (i == 0) {
    restMenu = getRest("ome");//shows the rest of menu
    } else if (i == 1) {
    restMenu = getRest("ork");
    } else if (i == 2) {
    restMenu = getRest("esume");
    } else if (i == 3) {
    restMenu = getRest("ontact");
    } else if (i == 4) {
    restMenu = getRest("lash");
    getter.menuObject = restMenu;
    getter.menuObject.alpha = 0;
    if (i != 3) {
    TweenLite.to(getter.menuObject,1,{alpha:1});
    } else {
    TweenLite.to(getter.menuObject,1,{alpha:1, delay:.5, overwrite:false});
    if (restMenu != null) {
    if (i == 0) {
    that = menu.getChildByName("instance3");
    that.addChild(getter.menuObject);
    } else if (i == 1) {
    that = menu.getChildByName("instance6");
    that.addChild(getter.menuObject);
    } else if (i == 2) {
    that = menu.getChildByName("instance9");
    that.addChild(getter.menuObject);
    } else if (i == 3) {
    that = menu.getChildByName("instance12");
    that.addChild(getter.menuObject);
    } else if (i == 4) {
    that = menu.getChildByName("instance15");
    that.addChild(getter.menuObject);
    function hideTarget(obj:Object):void {
    var that:Object;
    j++
    if (getter.menuObject != null && obj.name == "instance3" && j == 4) {
    that = menu.getChildByName("instance3");
    that.removeChild(getter.menuObject);
    j = 0;
    } else if (getter.menuObject != null && obj.name == "instance6" && j == 3) {
    that = menu.getChildByName("instance6");
    that.removeChild(getter.menuObject);
    j = 0;
    } else if (getter.menuObject != null && obj.name == "instance9" && j == 2) {
    that = menu.getChildByName("instance9");
    that.removeChild(getter.menuObject);
    j = 0;
    } else if (getter.menuObject != null && obj.name == "instance12" && j == 1) {
    that = menu.getChildByName("instance12");
    that.removeChild(getter.menuObject);
    j = 0;
    } else if (getter.menuObject != null && obj.name == "instance15") {
    that = menu.getChildByName("instance15");
    that.removeChild(getter.menuObject);
    j = 0;
    function fadeObj(obj:Object):void {
    TweenLite.to(getter.menuObject,.5,{alpha:0});
    return menu;
    function homeLink():Sprite {
    var homeField:TextField = menuF("H");
    var clickable:Sprite = mClickable();
    var _home = new Sprite();
    _home.graphics.lineStyle(1,0xEEEEEE);
    _home.graphics.beginFill(0xFFFFFF);
    _home.graphics.drawRect(0,0,60,60);
    _home.graphics.endFill();
    homeField.rotation -= 90;
    _home.addChild(homeField);
    homeField.y += 48;
    homeField.x -= 3;
    _home.buttonMode = true;
    _home.addChild(clickable);
    return _home;
    function workLink():Sprite {
    var workField:TextField = menuF("W");
    var clickable:Sprite = mClickable();//square ontop of letters to be clickable
    var _work = new Sprite();
    _work.graphics.lineStyle(1,0xEEEEEE);
    _work.graphics.beginFill(0xFFFFFF);
    _work.graphics.drawRect(0,0,60,60);
    _work.graphics.endFill();
    workField.rotation -= 90;
    _work.addChild(workField);
    workField.y += 55;
    workField.x -= 3;
    _work.buttonMode = true;
    _work.addChild(clickable);
    return _work;
    function resumeLink():Sprite {
    var resumeField:TextField = menuF("R");
    var clickable:Sprite = mClickable();
    var _resume = new Sprite();
    _resume.graphics.lineStyle(1,0xEEEEEE);
    _resume.graphics.beginFill(0xFFFFFF);
    _resume.graphics.drawRect(0,0,60,60);
    _resume.graphics.endFill();
    resumeField.rotation -= 90;
    _resume.addChild(resumeField);
    resumeField.y += 46.5;
    resumeField.x -= 3;
    _resume.buttonMode = true;
    _resume.addChild(clickable);
    return _resume;
    function contactLink():Sprite {
    var contactField:TextField = menuF("C");
    var clickable:Sprite = mClickable();
    var _contact = new Sprite();
    _contact.graphics.lineStyle(1,0xEEEEEE);
    _contact.graphics.beginFill(0xFFFFFF);
    _contact.graphics.drawRect(0,0,60,60);
    _contact.graphics.endFill();
    contactField.rotation -= 90;
    _contact.addChild(contactField);
    contactField.y += 53;
    contactField.x -= 3;
    _contact.buttonMode = true;
    _contact.addChild(clickable);
    return _contact;
    function flashLink():Sprite {
    var flashField:TextField = menuF("F");
    var clickable:Sprite = mClickable();
    var _flash = new Sprite();
    _flash.graphics.lineStyle(1,0xEEEEEE);
    _flash.graphics.beginFill(0xFFFFFF);
    _flash.graphics.drawRect(0,0,60,60);
    _flash.graphics.endFill();
    flashField.rotation -= 90;
    _flash.addChild(flashField);
    flashField.y += 44;
    flashField.x -= 3;
    _flash.buttonMode = true;
    _flash.addChild(clickable);
    return _flash;
    function menuF(letter:String):TextField {
    var mFont = new Century();
    var menuFormat:TextFormat = new TextFormat();
    menuFormat.font = mFont.fontName;
    menuFormat.size = 50;
    var menuField:TextField = new TextField();
    menuField.defaultTextFormat = menuFormat;
    menuField.text = letter;
    menuField.height = menuField.width = 59;
    menuField.embedFonts = true;
    menuField.antiAliasType = AntiAliasType.ADVANCED;
    menuField.selectable = false;
    menuField.cacheAsBitmap = true;
    return menuField;
    function getRest(letter:String):TextField {
    var mFont = new Century();
    var menuFormat:TextFormat = new TextFormat();
    menuFormat.font = mFont.fontName;
    menuFormat.size = 40;
    menuFormat.color = 0xFF0000;
    var menuField:TextField = new TextField();
    menuField.defaultTextFormat = menuFormat;
    menuField.text = letter;
    menuField.embedFonts = true;
    menuField.antiAliasType = AntiAliasType.ADVANCED;
    menuField.selectable = false;
    menuField.cacheAsBitmap = true;
    menuField.width = 200;
    menuField.rotation -= 90;
    return menuField;
    function mClickable():Sprite {
    var clicker:Sprite = new Sprite();
    clicker.graphics.beginFill(0xFFFFFF,0);
    clicker.graphics.drawRect(1,1,58,58);
    clicker.graphics.endFill();
    return clicker;
    function float(e:Event):void {
    var mouseClamped:Number = this.mouseY;
    if (e.target.y  <= 400) {
    e.target.y = 400;
    } else if (e.target.y >= 480) {
    e.target.y = 480;
    e.target.y += (.1 * (mouseClamped/8 - e.target.y/8));

    You should not nest named functions... a source of problems waiting to happen.  You should go into your Publish settings and select the Permit Debugging option in the Flash section.  That could provide more specific information regarding the source of the error, such as a line number.  I haven't read thru your code beyond a glance, but where you are using e.target in mouse event handler functions, you should try using e.currentTarget instead.

  • Airport Extreme N works fine but not when WDS activated

    I replaced my old Airport Extreme by the new 802.11n.
    Works fine with our Macbooks (pro) enabled for n.
    But when I activate WDS (I'd like to use my old airport Express for airtunes sometimes), an error message appears (WDS error) in the summary, and the light flashes alternatively in green and yellow... Everything else seems to work (internet connexion), but it seems no WDS possible... If I swtich it off, everything is just fine and green...
    Of course I reinitialized the base, I once used the Airport utility assistant and then manually reput my personal options. I upgraded my airport firmware to 7.1 and WDS error message is still there with the flashing light... And I tried to see if my old express would make it but nope.

    I had similar issues. To roll the firmware back to an earlier version try this:
    - With the option key depressed, launch the Airport Utility (located: /Applications/Utilities)
    - Select your problematic extreme base station and then while holding option again, click "Continue" and then choose Manual Setup.
    - It should prompt you to choose a firmware version to upload. You can select 7.0 or 7.1.
    The process is a little different on PC. Let me know if this solves your problem or if you need the directions for doing this from within Windows!

  • In Photoshop CC timeline, when I add an audio track photoshop CC either quits working or it skips to the end of the video clip.  If I just put in audio it works fine.  If I just put in clips or pics it works fine, but now when audio is added

    When I try to use the timeline portion of photoshop, I can't get the audio to work with my clips.  I can get audio to work fine when using just audio, but the minute I try to add audio to a set of clips either photoshop quits working or it skips to the last clip in my show.  I don't understand why this happens.  I am using the same track each time.  Very frustrating.

    Topic or subject titles should be clear, pertinent and concise so that individual users can tell at a glance if they can help or not.
    That field is not for attempting to fit your entire question in there.
    Please keep this in mind next time you post.  Thank you.

  • Var Request Works Locally but not when Placed Online

    When I run this code on machine locally, it works perfect, however when I put it online it no longer works, can anybody help?
    Additionally the only the reason i placed the var request in a function was because I have another var request earlier in the code as was not sure how to run it without a duplicate entry error.
    goresult();
    function goresult() {
         var request:URLRequest=new URLRequest("http://www.whichpartyshouldivotefor.co.uk/wp-content/themes/test/leadingparty.php");
         request.method=URLRequestMethod.GET;
         var getresult:URLLoader = new URLLoader();
         getresult.dataFormat=URLLoaderDataFormat.VARIABLES;
         getresult.addEventListener(Event.COMPLETE, completeHandler);
         getresult.load(request);
    function completeHandler(evt:Event) {
         var conservativeresult=evt.target.data.conservative;
         var libdemresult=evt.target.data.libdem;
         var labourresult=evt.target.data.labour;
         trace (conservativeresult);
         vote.text = conservativeresult;

    My best guess is that you are coming across a security sandbox violation - AKA a crossdomain scripting error.
    This means that you need a crossdomain.xml on the root of your web-host that allows "whichpartyshouldivotefor.co.uk"

  • Works locally, but error when put online

    hi,
    I compiled the stratus sample and put it on my own server.
    I can connect to the stratus.adobe.com for both local de-bug and visiting by browser on the server. But I failed to have key exchange for the deployed one, while it works successfully for the de-bug on locally.
    How it comes? Also, I can use the application well on Firefox, but not work in IE for the same application.
    So strange, anyone can help?
    Thanks,
    Bob

    My best guess is that you are coming across a security sandbox violation - AKA a crossdomain scripting error.
    This means that you need a crossdomain.xml on the root of your web-host that allows "whichpartyshouldivotefor.co.uk"

  • Firefox has been working fine but now when it "opens" it briefly flashes off my normal screen and I can't maximize or minimize it. I've tried to uninstall, etc

    I've tried everything and nothing has worked. I love FireFox and hate Internet Explorer--please help!!!

    Couple thoughts:
    (1) Does Firefox still seem to have an active window "somewhere" based on having a tile on the Windows 7 Task Bar?
    If so, how did you try to maximize it?
    If you think Firefox is running but is off-screen, check out this post for getting a normally positioned window: https://support.mozilla.org/questions/941896#answer-381295
    (2) Does your home page use any Flash media?
    If so, try disabling the Flash Player plugin's protected mode. See this support article from Adobe under the heading "Last Resort": [http://forums.adobe.com/message/4468493#TemporaryWorkaround Adobe Forums: How do I troubleshoot Flash Player's protected mode for Firefox?]
    If you want to test a neutral page first, make sure all Firefox windows are closed, then start up Firefox from the Start menu search box using:
    firefox.exe "about:blank"
    If that works normally, then it's something about your home page.

  • HT1866 i am on windows seven and my itunes was working fine but now when i try to open it it tells me that "itunes is on a locked disk or you do not have write permissions for this folder"  please help me

    im really stuck

    In my case its a new computer the old one was stolen and the time machine disk did not work for a restore but did for copying the info to the new mac

  • How do i setup my MacBook Pro to play music from Spotify or Deezer via a separate Airplay enabled speaker? I know my MacBook is Airplay enabled because i can see the icon in iTunes, which works fine, but not when general web browsing.

    Airplay music from Spotify on a MacBook Pro

    I would sign out again, then update your Mac (latest version, not 10.7.3 as shown in your signature), open "Settings > Mail, Contacts, Calendars" and then choose iCloud and sign in again. I would also do the same on your iOS device (sign out and in). Make sure to confirm the message when you will be asked to merge the contacts with iCloud.

  • Am having problems with my Zeppelin music player and iPod classic. The Zeppelin, bought Dec '12, and the iPod, bought same time, used to work fine but now when I attach iPod to Zeppelin I get a message that says the iPod doesn't support the accesory!

    I bought a Zeppelin music player and iPod classic in December 2012, and all went well until I last synched the iPod with iTunes, and now I get a message saying that the iPod doesn't recognise the attached accessory when I try to connect it to the Zeppelin. I did recently update to the latest iTunes version-could this be the problem, and if so how do I cure it? All help appreciated.

    It's still charging when you plug it in. That just means it won't play music out the speaker. If that's what you were looking to do, they have speakers for iPods.
    -Molly

  • PDF form submission problem - works in Acrobat and Reader, but not when embedded in browser

    Hello everyone,
    I am trying to submit a PDF form to an application server.
    To do this, I added a "Submit" button to the PDF, configured the server's address and submit format, and tested the button.
    I opened the PDF in Acrobat Pro, clicked the button, and my web application received the form in PDF format just as I wanted.
    To make it work in Reader, I had to extend user rights via Acrobat Pro, and then the form worked inside Reader as well.
    Up to here, everything went fine.
    Then I embedded the PDF in a web page (which will be the final scenario) and it all stopped working.
    The submit button doesn't do anything anymore, and no data is sent to the application server.
    I even tried switching from the form's submit mechanism to calling event.target.submitForm(...) in Javascript directly, but nothing changed (meaning this too worked only when opening the form as an "offline" pdf, but not when embedding it in a web page).
    Is there something I am missing? Something else that must be configured/activated in order to be able to submit the PDF when it is in the form of an embedded object?
    Many thanks in advance,
    Alex

    Thanks for your reply, Paul.
    I tested the submit button both in Reader 9.3 and Acrobat 8 (which is the same I used to RE the PDF).
    Apparently I got it working too, but only by deploying my embedding web page to an application server.
    The final environment the PDF will be embedded into will be inside a web application deployed to an application server, so I guess my problem is solved.
    It didn't work only when embedded into a local test.html web page saved on my PC...
    Thanks again, have a good day.
    Alex

  • I am trying to transfer my upgrade to my second line.  When I try to order any other phone it works fine, but won't work to upgrade to Iphone 6

    I am trying to transfer my upgrade to my second line.  When I try to order any other phone it works fine, but won't work to upgrade to Iphone 6

        TWRING,
    Help has arrived! Since the device is currently on pre-order when processing the order online it will only recognize the line eligible. Once you receive the device you may activate it on another line if needed.
    EfrainM_VZW
    Follow us on Twitter @VZWSupport

  • I have installed photoshop illustrator on mac which is working fine but update online is grew out and not able to update

    i have installed photoshop illustrator on mac which is working fine but update online is grew out and not able to update

    Hi Team,
    The option to disable to update is chosen by your IT admin when he created the package.
    The IT Admin can re-enable the update by following the link below:
    Disable auto-updates | Application Manager | IT administrators
    Cheers!
    md

  • Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it

    Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it at all.

    Without proper system information and the application logs nobody can tell you much.
    Troubleshoot Creative Cloud download and install issues
    Mylenium

  • I am using the old imovie HD on my old Mac laptop... it works fine, but when I export a video to YouTube there is a black frame around it.. how do i get rid of that? thanks!

    I am using the old imovie HD on my old Mac laptop... it works fine, but when I export a video to YouTube there is a black frame around it.. how do i get rid of that? thanks!

    Hi MyAppleID99,
    You may want to check to make sure the clip hasn't been moved back and forth between wide screen and standard aspect ratios; sometimes a combination of letterboxing and pillarboxing can lead to a black frame "windowbox" when playing the final video. You may find the following article helpful:
    Apple Support: What are Letterboxing, Pillarboxing and Windowboxing?
    http://support.apple.com/kb/ht2320
    Regards,
    - Brenden

Maybe you are looking for

  • How to avoid built-up for "cursor move" events?

    I have a rather complicated program where several graphs need to be interactively updated according to cursors using "cursor move" events. The problem is that the recalculation is relatively slow and the behavior is less than satisfactory. Since the

  • Planning on installing iTunes 9

    I had problems with this version on numerous occasions, but since I have the newest iPod, I need the newest version of iTunes or it won't sync my music. I wanted a bit of advice on how I should prepare my computer for potentially the worst. I thought

  • Multiple installs on software update?

    Hi...can anyone tell me why when I do a 'software update' I keep seeing I need to update my firmware 1.5.1? It looks like I've also installed it 7 times now! (see system log below): 2008-04-23 07:34:32 -0400: Installed "MacBook Pro EFI Firmware Updat

  • Confusion over the many ways to represent channels

    So I'm making progress on my task, but figuring out the intent of each of these channel representations is still throwing me for a bit of a loop.  So far I've run across... Channel Name      : string       : "MyChannel" Channel Reference : string    

  • ColdFusion10 Multi-instance cfform problems

    Hello, I am working with a client on an issue regarding cfform ( flash ) on a coldfusion10 server with multiple instances. We have multiple instances setup as a cluster. We then replicate all sandbox security settings to both instances. However, one