"Wait Function" swf works in Mac, Not in Windows

Hi,
I have got a Flash movie [swf file] that plays the intro
part("Scene 1", 1) to ("Scene 1", 55), and then go to
("Scene 2", 1) smoothly in Mac environment. When I run the
same swf movie in windows, it plays the intro part only and then
stops. It does not go to Scene 2 at all.
I am making use of a wait function in the actions.
I changed 'frame number' ("Scene 2", 1) to 'label' ("Scene
2", "start") and tested it again, but it still does not work in
windows environment but runs smoothly in Mac.
Kindly advise what is the problem exactly.

It turns out I was wrong: this function did work. However, when I then saved the file as an SVG, Illustrator ignored the document proportions. To correct this, I had to set the export option preserveEditability = true (of all things ...). Apparently it's a feature of Illustrator CC to not include the document proportions in SVG files by default.

Similar Messages

  • Ipod works in Mac not in PC

    Device: Latest generation of Ipod Nano. FAT32 formatted for windows.
    Problem: Does not work in Windows XP PC.
    Analysis: Upon insertion into the PC the ipod randomly disconnects and shows the 'you may safely disconnect' screen. This usually happens about 2 seconds after insertion. It will disconnect and reconnect every 3-5 seconds...
    Further: It is not a fault with the cable. It is not a fault with the USB port on the PC. WORKS IN MY MAC, not in PC.
    Any suggestions?
    Message was edited by: fjsdofnsjgv

    If your PC is a desktop, connect it to a rear port on the PC, connect your keyboard and mouse, disconnect all other USB devices and disconnect from any other network you are on:
    You may also have to update or reload the USB Root Driver:
    http://docs.info.apple.com/article.html?artnum=305136

  • In Flex application functionality is working sometimes and not working sometimes..

    Hi,
    Please help me on this..
    In my flex application some functionality is working some times and not working sometimes..
    In my project i have 5 sections with 5 separate screens..Each screen is of one diffeent module.
    After logining into the application:
      I will go to one screen..First time every functionality is working in that screen..
    Ex:: I have a screen with datagrid.From that user will select one job name from datagrid click on next button..
    Based the job name the user selected i have to display some information in next screen and customer names.customer names is a combo box..
    below is the code:::
                   public function populateAllOEMCustomers(event:ResultEvent):void
              1)     var object_CustomerList:CustomerList = event.result as CustomerList; //Assigining result object values to Object reference variable.
              2)    var allOEMCustomersCollection:ArrayCollection = new ArrayCollection(); //Declaration ArrayColliction referance variable.
             3)       var i:int=0;
             4)      var customerComboLabel:Label = new Label();
              5)      for (i = 0;i < object_CustomerList.arryCollCustName.length; i++)
                        var strCustName:String = object_CustomerList.arryCollCustName.getItemAt(i).toString();
                        var strCustId:String = object_CustomerList.arryCollCustId.getItemAt(i).toString();
                        customerComboLabel = new Label(); //Dynamic declaration of label.
                        customerComboLabel.name = strCustName; //Assinging the customer name to the Label name field.
                        customerComboLabel.text = strCustId; //Assingning the customer id to the Label text field.
                        allOEMCustomersCollection.addItem(customerComboLabel); //Adding Lable into the ArrayCollection referace variable.                                       
                    //customerComboID.selectedItem = "--";   
                    OEMCustomersComboID.dataProvider = allOEMCustomersCollection;
                    OEMCustomersComboID.selectedItem = -1;
    This functionality is working fine when i visit to this screen first time..If you go back to another screen and come back to this same screen and click on next button this time customer names combo box has no customer details..I am getting Nullpointer Exception and it is showing the line number 5( i have given the number for code given above..)
    If i change the first line of the code to below code:: every time the above functionality is working fine.Not getting any error msg..
      var object_CustomerList:Object= event.result ;
    If i  type cast it to specific class(CustomerList) ,functionality is not working ..getting null pointer exception..If i type cast it to Object everything is working fine..In my code wherever i have typecasted it to specific class functionality is not working(gettingNullpointerExcepion).
    Please help me on this..I am not getting what could be the reason..
    I am using::Flex 3,Flash player 10.1
    Thanks in advance..
    Regards,
    Satya

    Hi Satya,
    This sometimes as in your case might not work as the way you have specified the RemoteClass attribute in your AS class. As somtimes there may be a case as before it is mapped to a server side you are returned the data and so that you may not get the data as your Custom class but as normal Object type.
    So in order to avoid this you can map the server side class to AS classes in the PreInitialize handler itself as shown below:
    Specify the preinitializeHandler in your main application and write the below function.This way also you can map AS classes with the server side. So that you will not have any problem referring your application as AS class types.
    You can use the same line for registering all the classes. By using this you can remove all the  [RemoteClass] attributes on all AS classes and include it at single place.
    preinitialize="onPreinitialize()"
    private function onPreinitialize():void
      registerClassAlias("com.expeditor.ScriptAdmin.Objects.CustomerList", CustomerList);
    Here in the above line of code the string in quotes refer to the namespace of the Server side class and the latter is your AS class. Also dont forget to import the namespace of the corresponding AS class in the file.
    Try this and let me know..
    Thanks,
    Bhasker

  • CSS stylesheet and SWF works for Mac but not PC.

    PC converts stylesheet to notepad. Can't figure out how to fix the problem.

    This is what it looks like on a PC.....
    This is what it looks like on any mac....

  • 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.

  • Working on Mac, not PC

    We have created some .swf files that are being served by a
    PHP script that we wrote. All works correctly on a Mac, but on a PC
    (in both IE and FireFox), the link does not work. The links are not
    embedded into the .swf files because they are attached by the
    program.
    Any idea on what is going on and how I can make it work on a
    PC?
    The link below illustrates the issue. This page randomly has
    two .swf ads on it.
    Link that shows
    what I am talking about.
    Thanks in advance for any help! We're new to creating .swf
    files for the Web.
    \frank

    The links work, but you are launching popUp windows, and most
    modern browsers block them. Your MAC seems to be set up
    differently

  • Icloud sync only works between mac pro and windows outlook, not with iphone and ipad anymore

    Hi
    Can anyone help me with my problem?
    I do have icloud installed on my MacBookPro, on my Windows Outlook computer, on my iPad 2 and on the iPhone 4S.
    Now until yesterday everything synchronized perfectly well.
    Then I created some groups on my MacBookPro address book and since then (I believe that was when it started) icloud no longer synchs from and to the ipad and the iphone. It still works between the Mac and Windows Outlook.
    On the iPad/iPhone I have tried everything but it still won't do. I have even reset the whole iPad and obviously lost all data and tried again. I all sometimes get is a few contacts back into the address book on the ipad. But only a limited number, not all.
    Also, to delete the icloud account on the ipad/iphone is sometimes not possible. It just hangs and I can see the message "Deleting..." for ever.
    Anyone an idea?
    Thanks in advance!

    One more comment. Wired connection seem to be stable neither. I have ping running to the Windows computer and after a couple of minutes, it gets broken.
    However if I have both WiFi and cable connection to the home router and disconnect from cable (after ping is broken), I get the network to the Windows comptuer back. Nothing serious on the network change, I just get 192.168.1.x instead of 192.168.1.y as IP).
    During this network switch I do nothing with the Windows computer.
    This is not valid if I want to connect to the Windows computer via Microsoft sharing (smb://192.168.1.x), then it immediately breaks the connection. Can't get it back until Windows is restarted.
    Getting lost...

  • Why my iChat AV only work with Mac not PC

    I've been use iChat to communicated with my parents for couple year. (I have a PowerMac G5 with external iSight. They have a PC and runnning AIM 5.9 version.) Everything works fine until recently I purchased a 15" MBP. I always got "User did not respond" whenever I try to connect with PC from the MBP. So, I did a test on Mac to Mac with my sister in-law. It works fine with her. What is worng with the new MBP? Now I always have to go back to my G5 when I need to talk with my parents. It really bothers me that my new computer isn't working. I am going to sell my G5 soon. I need the MBP work with them. Does anyone knows what can I do to make it work with PC and Mac both? (I have a Comcast Cable at home and I don't know anything about the modem..., small apartment with Airport Express. Both computer are pretty close to the Airport.)

    HI Laggard,
    As Rj says it will be useful to know your set up.
    However we are likely to send you to this site at some stage
    http://portforward.com/routers.htm
    We use it for reference only in the first instance.
    After you have found your device you can click on it in the list.
    This choose iChat from the next page.
    It will then show a page that will tell you the default IP and user ID and Password you will need to access it in a web browser.
    When you get this far it can be a question of loking at all the pages.
    You will certainly need to look at any Port Forwarding (Virtual Server/Pin Holes) pages and tell us if there is any setting.
    Also look to see if you have UPnP as this is easier to set up.
    2:10 PM Thursday; May 18, 2006

  • Swf works locally, but not on server

    I have an issue with an xml-driven swf file. It plays fine when I test the site locally, but not when it's uploaded to a server. Here is a link to the page. There are many posts on this and other forums describing the same problem, though I can't find the right solution. The only thing it has convinced me of, is that it is probably a pathing problem. I purchased the file online, and instead of one swf and one xml there are about ten of each to make it work. In addition to this there are about 40 .as files. (all this to make it "easier" to customize).  Since I plan to use this banner rotator on multiple pages, it will be very unconvenient to upload all these files for every page I make. I checked with support for this product, and was told I could make a flash directory, only duplicating the xml-files for each new page and linking the xml back to the swf-files. Otherwise the support answer was very short and unhelpful. I have renamed every path in the xmls so that it should be right. As I said, the file works locally, so I'm not sure what I am doing wrong.
    I have posted in adobe forums before, and I have alwas found helpful and kind responses.
    Thank you,
    Siri

    They're all uploaded to the server, it is also possible for me to dowload them from there. When i run the main swf file through flash player debugger, I get this message:
    Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: file:///Users/Siri/Documents/gullstolen/hjemmeside/flash/produkter/deploy/xml/abrMain.xml
              at com.sQrt121.utils::CustomLoader/configureLoader()
              at com.sQrt121.utils::CustomLoader()
              at com.sQrt121.utils::LoadJob/initJob()
              at com.sQrt121.utils::LoadJob()
              at com.sQrt121.utils::ContentLoader$/addJob()
              at AbrMain/init()
    So I guess it can't locate the xml folder (since it is not there), but I don't know how to change the path. I can change it in the xml, pointing to the swf, but how do I do it the other way?
    This is the main xml-file:
    <?xml version='1.0' encoding='UTF-8'?>
    <abrMain
              width                              = "300"
              height                              = "250"
              pauseOnOver                    = "off"
    >
              <item          swf                    = "/Users/Siri/Documents/gullstolen/hjemmeside/flash/produkter/deploy/abrcontent.swf"                                    xml = "xml/abrContent.xml"                                        config          = "xml/config.xml"/>
              <item          swf                    = "/Users/Siri/Documents/gullstolen/hjemmeside/flash/produkter/deploy/abrbuttonscolor.swf"                               xml = "xml/abrButtonsColor.xml"                                        config          = "xml/config.xml"/>
              <item          swf                    = "/Users/Siri/Documents/gullstolen/hjemmeside/flash/produkter/deploy/abrpreloadercircle.sw f"               xml = "xml/abrPreloaderCircle.xml"                              config          = "xml/config.xml"/>
              <item          swf                    = "/Users/Siri/Documents/gullstolen/hjemmeside/flash/produkter/deploy/abrpreloaderline.swf"                               xml = "xml/abrPreloaderLine.xml"                              config          = "xml/config.xml"/>
              <item          swf                    = "/Users/Siri/Documents/gullstolen/hjemmeside/flash/produkter/deploy/abrplaypause.swf"                               xml = "xml/abrPlayPause.xml"                                        config          = "xml/config.xml"/>
    </abrMain>
    the abrMain.xml tells the swf what files it shold use, and where to find them, but where do I tell the abrMain.swf to find the xml? Maybe this is an issue for product support instead, though they only answer short and cryptic.
    Murray *ACP* wrote:
    None of your SWF files are found in the location where the page's code places them.
    For example:
    <param name="movie" value="../../../flash/produkter/deploy/abrmain.swf" />
    Did you upload them?

  • Dual layer DVD works on Mac, not on DVD player

    I burned a dual layer video DVD (Verbatim DVD+R DL, what else?!) of a longish video. Works fine on the iMac, but my stand-alone DVD player can't use it.
    So, my question is: if a DVD Player can play commercial dual layer DVDs, why not home-made ones?
    Comments and suggestions welcome!

    Hi Klaus1
    My first (and only) thought is
    BURN SPEED - Set it down to x2 or x4 MAX
    Most common origin of DVDs that only plays on this or that or even not on Mac that burned them is speed of x16 etc.
    Yours Bengt W

  • Files work on mac - not on PC

    I have a large amount (2,000+) video clips that were shot on a Sony Z1u and put into a Final Cut project. I have that project converted to Premiere Pro and am attempting to edit it on a PC. The files are saying that they are not supported in PPro. - "Codec missing or unavailable"
    When I checked them on a Mac they worked just fine in PPro, QuickTime and in Final cut, and they appeared to be ProRes files. I have downloaded and installed the most recent version of QuickTime on my PC and it wont let me install the apple ProRes decoder for Windows, claiming to have a more recent version built in.
    HOWEVER, I cannot see the videos when I play them in the QuickTime Player, they are completely white (but the sound DOES work). Again, these files will play just fine on a mac.
    I am running Adobe Master Collection CS 5.5 with all components updated and installed, Windows 7 64x Professional v. 6.1.7601 SP 1 Build 7601. I have a EVGA GTX570, i7 Extreme processor and 8gb of RAM. I have all the dvx and xvid codec packages as well as the Windows Essential Codec Pack.
    Here is one of the files if that might help reveal some special codec i dont know about or have overlooked -http://www.mediafire.com/?7irrtktrh6mi51z
    How can I view these files and edit with them? What additional information can I give you about them to help?
    (And in an effort to stave-off any mac vs PC debates, I have to edit on a PC.  I do not have a Mac capable of eidting this project, and I am working with 2 other editors who are also using PC workstations.)
    I also do not have access to the original tapes.  I might be able to borrow a MacBook Pro to convert the files from there, if needed, but I have tried that once, and with no success.
    Thank you, thank you, thank you for any help.  This is becoming a serious issue.

    They're Apple HDV, not ProRes. QuickTime Player on Windows does not have a decoding component for these files--and as a side note, you don't need to install the ProRes decoder since that has been built into QuickTime Player for some time now.
    Anyway, you can get a third-party decoder for these files: Calibrated{Q} XD Decode. Note that Apple changed something in QuickTime 7.7 and the Apple HDV clips will not work with it; you'll need to roll back to no later than 7.6.9 to use the component properly. You can get that version here: Old Version of QuickTime Player 7.6.9 Download - OldApps.com.
    I have a method of converting these to a format that can be natively handled in Premiere Pro, but it's not really suited for large quantities of files like yours. Calibrated XD Decode isn't exactly cheap ($130 on sale right now), but it will get you up and running with minimal effort--that's probably worth the admission price.

  • How do I install Canon MX922 Fax function, printer works but fax not recognized??

    I can print wirelessly using my new Canon MX922 Multifunction printer/scanner/fax. My iMac doesn't seem to recognize the fax function. I would like to be able to send documents straight to the fax without printing them first. Can anyone help?

    If your printer supports it, you could try to fax using the printer's control screen (it has to be connected to a landline for this to work). I can fax directly from my Epson using the LCD touch screen and inserting the paper into the sheet feeder.

  • Burned a dvd, works on mac not on pc

    I burned a dvd. originally a .mov file. but pc based media players are not reading it as a dvd.
    I didnt do anything special to the DVD. I made it as basic as it gets. I need to burn something today that can play in anything without a problem, whether its windows media player or the appl edvd player or a real dvd player for a tv.
    Thanks so much. I also have several different file conversion softwares that I can use if starting with .mov is a bad idea.
    Austin

    What codec are you using for your .mov? Did you just Export a QuickTime Movie from FCP, or did you change the codec used?
    All video DVDs are SD resolution.
    If quality if a concern, then you can do one of two things. Change the resolution in FCP by creating a new Sequence at SD resolution and nesting your original Sequence into it. You then have to scale down and render the file. Then you Export a QuickTime Movie. Bring that into DVD SP, or better yet bring that into Compressor and create a MPEG-2 of the video and a AC3 of the audio and bring those into DVD SP.
    Or you Export a QuickTime Movie from FCP at HD resolution, bring that into Compressor. Using the setting Best Quality 90 minutes, create a new setting that is the same but with Frame Controls on. Also create a new setting for Dolby 2.0 with the Dialog Normalization set to -31 and the Compression Preset set to None. Bring those files into DVD SP.

  • SWF Player in AIR -  not displaying window component and Popup ..?

    Hi Friends.....
    I have developed  SWF Player in AIR,but getting some error when swf playing....
    Popup or  window components are not displaying properly  when swf is playing ,
    please give me a solution to solve this....?
    i think swf playback taking high memory that why preventing new component creation ...right...?
    Thanks..

    Hi Jim,
    for application with application sandbox and for top-most html documents you could for example:
    <script type="text/javascript">
         function clicked()
              if(window.runtime)
                   var app = window.runtime.flash.desktop.NativeApplication.nativeApplication;
                   if(app) app.exit();
              return false;
    </script>
    <a href="#" onclick="clicked();">CLOSE</a>
    or even:
    if(window.nativeWindow)
         window.nativeWindow.close();
    I think this works without installing any additional javascript sources, see:
    http://livedocs.adobe.com/flex/3/html/help.html?content=AboutHTMLEnvironment_4.html
    kind regards,
    Peter

  • Cannot get audio working on Mac Pro in Windows XP

    Hey all, I've got a Mac Pro (late 2006, 3GHz), and I'm running Windows XP. Trying to get audio working, installed BootCamp using the Leopard Install DVD, but no dice. No sound at all, not audio devices showing up in Device Manager/Control Panel, you know the usual places.
    Ive retried the installer, when it gets to SigmaTel audio drivers it says "An Instance of this installer is already running". I'm assuming that's a bad thing but I don't know how to fix it....

    I may have a solution for you.
    Install *[_THIS WINDOWS UPDATE_|http://files.filefront.com/kb835221exe/;9494950;/fileinfo.html]* while in windows.
    Once you have installed the above update then repair your bootcamp driver by inserting the Leopard disk and choosing repair. This will repair the drivers. Once this is done, you audio should work.
    Axel F.

Maybe you are looking for

  • Adobe Acrobat 6.0 Excel problem

    Just installed Adobe Acrobat 6.0 Standard - works okay from Word but when creating a pdf in Excel it creates a big black block over the data.  Does anyone know how to fix this problem?

  • Fetching LongRAW  over DB link results in ORA-1406 error

    How to FETCH LONG RAW values from remote DB into PLSQL cursor variable. Following is my sample code, where in column MESSAGE_xxx_FILE in XXXX table is defined as LONG RAW. ++++++++++++++++++++++++ declare CURSOR cur IS SELECT MESSAGE_xxx_FILE FROM xx

  • Chart, custom xml max lenth issue

    Hi all. I have a flash chart where i am using custom xml. The problem i am facing is when i am reaching the limit of data which can be entered into the custom xml text area. Is there any way around this? Is it possible to include an external xml file

  • Problems opening PDF files after upgrading file server to 2012 R2

    Hi, At the weekend we upgraded our main file server from Windows 2003 to 2012 R2. Since the upgrade, users (including myself) can only open one PDF document at a time from the file server.  If I double click a PDF file, it opens like normal, however

  • Nokia N9 Battery Backup

    I have Charged my Nokia N9 16 GB (Brand New) Full, and check the battery status, it shows 6 Hour talk time in 2G and 3 hour in 3G, but officially N9 has 11 hour 2G talk time and 6 Hour 3G talk time. Any one tell me what happened to my N9? and it is n