Problem putting external (4) .SWF's on homepage CS4

Hey everybody!
I've got a question/request concerning my first flash website. www.seniorict.com If you look at my site you will see 4 .swf's loaded in from the sides. This effect is made possible by Jquery script. But because of lack of compatibility with Opera & Internetexplorer. I have to integrate this all in one swf. But I've got not a clue what kind of code I need to make this effect working.
So to be clear what I want is Containing 4 swf's 25% height & 100% width. The slide in function is something I also would like to have (but maybe that's asking for just to much). If you want to see the code of the actionscript from the swf''s you can check it out at the included zip.
I am sorry for asking this much but I am getting desperate after several (2 months) attempts
Thanks in advance for your time!
Chris

Hey Ratko
Firstly open up the new AS3 document and for width set the size of the SFWs you have and for height use the height of the one SWFx4 (i saw they are same height). Then from Components panel use drag and drop 4 loaders and set dimensions of each loader to dimension of the SWF file you want to import in them. And distribute them to cover up the whole space of the document so they will be touching itself in width.
Thank you very much for your long explanation!! I truly appreciate it! But I stumble directly on (I hope) a small problem. The Swf's I'm using have no fixed stage this made possible with the No_scale . The total code of one of the external swf is this
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.display.GradientType;
import flash.display.SpreadMethod;
import flash.display.InterpolationMethod;
import flash.geom.Matrix;
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
stage.addEventListener(Event.ADDED, onStageResize);
stage.addEventListener(Event.RESIZE, onStageResize);
var backgroundGradient:Sprite = new Sprite();
addChildAt(backgroundGradient, 0);
function onStageResize(e:Event):void{
    var colors:Array = [0xFEC401, 0xFF6701];
    var alphas:Array = [1, 1];
    var ratios:Array = [0, 0xFF];
    var matrix:Matrix = new Matrix();
    matrix.createGradientBox(stage.stageWidth, stage.stageHeight, (3 * Math.PI / 2), -600, -150);
    var focalPoint:Number = .1;
    with(backgroundGradient.graphics){
        clear();
        beginGradientFill(GradientType.RADIAL, colors, alphas, ratios, matrix, SpreadMethod.PAD, InterpolationMethod.RGB, focalPoint);
        drawRect(0, 0, stage.stageWidth, stage.stageHeight);
        endFill();
var request:URLRequest = new URLRequest("opdrachtgeverstest.swf");
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loadProgress);
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadComplete);
function loadProgress(event:ProgressEvent):void {
var percentLoaded:Number = event.bytesLoaded/event.bytesTotal;
percentLoaded = Math.round(percentLoaded * 100);
trace("Loading: "+percentLoaded+"%");
function loadComplete(event:Event):void {
loader.load(request);
addChild(loader);
You can see that there's no stage fixed so it sizes to the screensize of the browser. Now I don't got a clue how to make sure that the 4 loaders are spread out on the stage of the main.swf by not fixed pixels but on percentages. I've googled for 6 hours without finding a solution to set the sizes of loaders in fixed percentages to the stage . I would like to know how to fix those loaders. To see the .swf in action check this out http://www.seniorict.com/opdrachtgevers.swf .
Again I truly appreciate your great post and the time you've invested in me. I think after this small issue I finally can achieve the effect that I want thru your great explanation. Hope you can help me with this question!
Chris

Similar Messages

  • Looping Problem with External Files

    This is what I'm trying to build: A swf file (called main)
    that loads 4 external swf files (called intro, one, two, and
    three). At the start, main.swf loads the intro.swf, and it plays
    once. When intro is done, main loads and plays one.swf. This will
    loop until the user hits one of the buttons, and then two or three
    starts playing.
    What I have done already: Coded buttons. Code works.
    What I am having a problem: I want intro.swf to play just
    once, but it keeps looping. It's supposed to play once, and then
    one.swf is supposed to start looping. Is there anyway to tell intro
    to loop just once? (What I've tried already: a stop() function at
    the end of intro.swf clip, publishing intro.swf with 'no loops'
    setting.)
    (Talk slowly; I have almost no idea how to code in
    flash.)

    Edit: Really? No problem? Weird.. I find that all of the
    imported swf files loop infinitely, unless a stop() or
    unloadmovie() function is called, but then I need another button.
    Anyway, I found a workaround, that seems really obvious (in
    hindsight): I just copied the Introduction file into a new scene in
    the Main file. (Algorithm: Preloader, skip to Introduction scene,
    skip back to main scene. External swf files load, depending on what
    button the user clicks on.)
    Even though it's sorted already, I'd still hear what code you
    use. (It might be simplier than what I did.)

  • Setting External Loaded SWF dimension

    hi guys...,
    i'll be straight to point,well i'm now working on a project using action  script 3 now what i'm trying to make is a Main SWF that load whatever  other swf into it the tricky thing is that i used 1 xml document read  the external swf source and it's setting(such as it's x,y position and  it's width and height) and i'm having problem setting the loaded swf width and  height btw it's an desktop application and not a website application.,
    here is my code:
    //variable list
    var swfList:XMLList; //hold all the zone list from the xml
    var totalZone:uint; //total of zone there is in the xml
    var myURLLoader:URLLoader = new URLLoader();
    var swf:Movie Clip;//hold the loaded swf
    var swfLoader:Loader = new Loader();//loader instance used to load the external swf
    var myCounter:uint = 0;
    //load the xml file
    myURLLoader.load(new URLRequest('myXMLFile.xml'));
    myURLLoader.addEventListener(Event.COMPLETE, processXML, false, 0, true);
    function processXML(e:Event):void
        removeEventListener(Event.COMPLETE, processXML);
        XML.ignoreWhitespace= true;
        var myXML:XML = new XML(e.target.data);
        swfList = myXML.SWF;
        totalSWF = myXML.SWF.length();
        loadSWF();
    function loadSWF():void
        swfLoader.contentLoaderInfo.addEventListener(Event.INIT, swfSetting);
        swfLoader.load(new URLRequest(swfList[myCounter].@source));
    function swfSetting(e:Event):void
        //making new instance of sprite to hold the new loaded swf
        swf = new MovieClip();
        //casting the loader content into a movieclip
        swf = e.target.content;
        addChild(swf);
        swfLoader.unload();
        swf.x = swfList[myCounter].@left;
        swf.y = swfList[myCounter].@top;
        swf.width= swfList[myCounter].@width;
        swf.height= swfList[myCounter].@height;
        addChild(swf);
        if(myCounter < totalSWF)
            myCounter++;
            trace('myCounter: ' + myCounter );
            loadSWF();
    and here is what the result ( it make the width and height of the loaded swf to 0):
    swfLoader.contentLoaderInfo.width : 320
    swfLoader.contentLoaderInfo.height : 240
    module: MyVideo/flvplayer.swf
    x:0
    x container:0
    y:0
    y container:0
    xml width:550
    width container:0
    xml height:400
    height container:0
    myCounter: 1
    swfLoader.contentLoaderInfo.width : 550
    swfLoader.contentLoaderInfo.height : 400
    module: AnalogueClock.swf
    x:50
    x container:50
    y:0
    y container:0
    xml width:250
    width container:250
    xml height:200
    height container:200
    myCounter: 2
    swfLoader.contentLoaderInfo.width : 800
    swfLoader.contentLoaderInfo.height : 30
    module: MyNewsticker/newsticker.swf
    x:0
    x container:0
    y:0
    y container:0
    xml width:300
    width container:0
    xml height:50
    height container:0
    most of my loaded swf beside the analouge clock is full action script code and in case of the analouge clock it is a swf that has a movie clip on it's stage (the other are fully created from action script 3.0)
    please do help me..,
    cause i'm already really desperate and going crazy by this problem..,

    sorry i copied the code from the other swf i used to do try and error test..,
    basically the container is the same as swf varibale
    here the code so you would'nt get confused:
    //variable list
    var swfList:XMLList; //hold all the zone list from the xml
    var totalZone:uint; //total of zone there is in the xml
    var myURLLoader:URLLoader = new URLLoader();
    var swf:Movie Clip;//hold the loaded swf
    var swfLoader:Loader = new Loader();//loader instance used to load the external swf
    var myCounter:uint = 0;
    //load the xml file
    myURLLoader.load(new URLRequest('myXMLFile.xml'));
    myURLLoader.addEventListener(Event.COMPLETE, processXML, false, 0, true);
    function processXML(e:Event):void
        removeEventListener(Event.COMPLETE, processXML);
        XML.ignoreWhitespace= true;
        var myXML:XML = new XML(e.target.data);
        swfList = myXML.SWF;
        totalSWF = myXML.SWF.length();
        loadSWF();
    function loadSWF():void
        swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, swfSetting);
        swfLoader.load(new URLRequest(swfList[myCounter].@source));
    function swfSetting(e:Event):void
        //making new instance of sprite to hold the new loaded swf
        swf = new MovieClip();
        //casting the loader content into a movieclip
        swf = e.target.content;
        addChild(swf);
        swfLoader.unload();
        swf.x = swfList[myCounter].@left;
        swf.y = swfList[myCounter].@top;
        swf.width= swfList[myCounter].@width;
        swf.height= swfList[myCounter].@height;
        addChild(swf);
        if(myCounter < totalSWF)
            myCounter++;
            trace('myCounter: ' + myCounter );
            loadSWF();
    well in my code i did cast the loader into a movie clip and then set it's width and heigt,right???
    wouldn't it just give me the same result??
    if it's not can u describe what u mean in more detail??
    some example about accessing the loader content would be really appreciated

  • Is there a way to put the bluetooth icon on the homepage?

    I pair my iphone with my car when I'm driving. Is there a way to put the bluetooth icon on the homepage so I don't have to go through settings to turn the bluetooth on and off?
    I don't like to leave the bluetooth on all the time because it drains the battery, but it's kinda a pain to have to go through settings everytime I want to use this feature.
    On my last cell phone I could assign a "hot key" to automatically turn the bluetooth on and off. I really liked that. This bluetooth system seems a little dated to me.

    No not yet, hopfully soon.

  • Problems with external context mapping

    Hi ,
    I am having the following problems with external context mapping from one WD component to another.
    Problem description:
    In the <i>Component Interfaces</i> I have defined a WD interface "InfA".
    In the <i>interface controller</i> of this compoenent,I have ContextA and attributeA(cardinality 1..1).The contextA is marked as an "Input Element".
    Now my webdynpro componentB adds InfA as used component.In componentB I decalre a contextB with attributeB and map it to contextA to set up the external context mapping.
    Now I expect that if any webdynpro component implements this WD interface InfA ,he has access to contextA with the data getting filled from contextB.
    After i have created the component for the used component I try to fill values in the source node contextB thru this code:
    wdContext.currentContextB.setB(value);
    But in the runtime I keep getting error nullPointerException for nodeContextB,suggesting that the mapping has not been completed.
    Can anyone suggest due to what the error can come ,and, if its a webdynpro bug ,is there a workaround??
    Thanks in advance for your help.
    Best regards
    Sourav

    HI,
    Valery : I personally checked  by doing the example, if the names of value attribute are different in the child's interface and parents component controller then it throws the exception.
    Sourav: NullPointer Exception is thrown when something is not properly initialised, if in the main component the cardinality of mapped origin is 1.1 then you need to access it element directly like:
    wdContext.currentParentNodeElement().setFname("Abhijeet");
        wdContext.currentParentNodeElement().setLname("M");
    i will suggest just check out if you are declaring some element of value node and without initialising taking its use or what?
    if this doesnt solve your problem, please post the expanded exception.
    hope it helps
    let me know if you face nay problem
    regards

  • Problem with external punchout in SRM Server 713

    Hello,
    We upgrade from SRM_SERVER 701 SP 04 to SRM_SERVER 713 SP 02, now we have a problem with external catalog, we did not change anything in standard call structure, however now when the user access to external catalog, select a product and "checkout", SRM returns to shopping cart screen without products and no message are register in log in transaction code SLG1.
    Our parameters in structure are:
    10                     https://xxxxxxxxx                          URL
    20 VIEW_ID          NAME                            Fixed value
    30 VIEW_PASSWD     XXXXXX               Fixed value
    40 USER_ID          SY-UNAME                   SAP field
    50 BRANDING      search5                     Fixed value
    60 LANGUAGE      ES                           Fixed value
    70 COUNTRY      MX                             Fixed value
    75 EASYORDER 1                          Fixed value
    80 target _top                                  Fixed value
    85 ~caller      CTLG                              Fixed value
    90 OCI_VERSION     4.0                     Fixed value
    91 FILTER                                      Fixed value
    92 OPI_VERSION 1.0                     Fixed value
    100 HOOK_URL                             return URL
    110 returntarget      _top                       Fixed value
    we made some test with parameter BYPASS_INB_HANDLER, set as 'X' but this not solve our issue.
    We have an implementation in badi BBP_CATALOG_TRANSFER to map product category, even if I set an external breakpoint in this implementation, system does not pass through it, also we test with this implementation inactive and behavior is the same, nothing transfer to shopping cart
    Does anyone know what's missing?
    Thanks in advance.
    Best regards,
    José Luis D.

    Hello Jason,
    Thank you for your answer, but as I told, If I set an external breakpoint it does not stop for debugging, so I can't see table as you recomended. This process (debugging) is familiar to me, in last version I can do it.
    Any suggestion?
    Thanks in advance, best regards
    José Luis D

  • I have a problem with external editing preferences where Photoshop will not launch when I choose "Edit In"...

    Hi. I have a problem with external editing preferences. If I add Photoshop as an external editor, it won't launch when selected, if I add it as an additional external editor it will. Why? How can I fix this as I need to use Photoshop and another program as the additional external editor.
    I use a Mac running OS X (10.8.5) and PS CS4 and LR 5.7. Any ideas on a fix? Thanks in advance.

    I don't know why Photoshop won't start. However, it's possible to create external editor presets using the additional external editor tools. There are instructions on how to do this in the Lightroom help. You could assign Photoshop and create one preset, and then assign another program and create another preset.
    I don't know if deleting your preferences would fix the problem or not. It can sometimes fix other problems.
    Preference and other file locations in Lightroom 5

  • Tweens don't work in multiple external AS2 SWFs loaded by AS3 SWF

    When I try to load a single external AS2 SWF in an AS3 parent
    SWF, scripted tweens using the mx.tween class work fine. However,
    when I load two or more external AS2 SWFs, the first will work, but
    in subsequent SWFs the tweens do not animate. Does anyone have a
    solution?
    Related post:
    http://www.actionscript.org/forums/showthread.php3?t=147637

    SymTsb,
    So what is the code to do that? To delete the TWEEN variable?
    easeTime = .5;
    var day_handlerX:Tween = new
    mx.transitions.Tween(daynightlabel_mc, "_x",
    mx.transitions.easing.Regular.easeOut, daynightlabel_mc._x,
    (left_point+daynightlabel_mc_leftDifference), easeTime, true);
    day_handlerX.onMotionFinished = function() {
    trace("day_handlerX="+day_handlerX);
    trace("day_handlerX onMotionFinished triggered");
    delete day_handlerX;
    trace("deleted day_handlerX="+day_handlerX);
    does not work. the TWEEN object is still there.
    Can ADOBE say something??
    AS3 is ...

  • Dynamic Text in Externally Loaded swf

    hi. i have a dynamic text field in an externally loaded swf. Its a digital clock so i want the numbers to update in the dynamic text field.
    this is not my exact code but it is very similar. i show below that i add the loader.swf, and once its loading is complete, i can work on its movieclips and add event listeners to its buttons, etc. but i cannot change the dynamic text field (its "classic text" set to "dynamic text"). after running this, the text just stays empty as it is in the external swf).
    here is the sample code:
    var loader:Loader = new Loader();
    loader.load(new URLRequest("loader.swf"));
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaded);
    function loaded(event:Event):void{
         addChild(loader);
         var loader_mc:MovieClip = (loader.content as MovieClip)
         loader_mc.myMovieClip.gotoAndStop(2);//***this works
         loader_mc.myButton_btn.addEventListener(MouseEvent.CLICK, clickMe);//***this works
         loader_mc.myText_txt.text = "12";//***this doesn't work******
    please help. thanks!

    Did you embed the font in the textfield--it needs to be done in the loaded swf when you create it? One other thing to check is that the color for the textfield is not the same as the background it sits on.

  • Put a div tag on EBS HomePage

    I want to put a div tag on the HomePage of EBS. The applications menu can get long and by request of client if possible to put the scroll bars on the menus, but not scroll on the browser so as to see his favorites all the time.
    I've read the UIX Developer's Guide and in one section, there was an example on how to mix html code and uix code. The example was about putting a div tag and just supplying the namespace for HTML.
    I copied the HomePG.xml from the server, edited it by adding the div tag, and then copy the edited version back to the server. My update doesnt reflect in the browser
    I copied and replace /data/erpp/erppappl/fnd/11.5.0/mds/framework/navigate/webui/HomePG.xml
    what am i doing wrong? is this really possible in the first place? haven't upgraded the server to 11.5.10 yet... or do i have to recompile?

    Typically, a background image is placed in a division's CSS code.
    See example below: (view source in browser to see the CSS and HTML code)
    http://alt-web.com/DEMOS/fixed-background.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media   Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Using the DateField in an Externally loaded SWF

    Hello,
    I have been having major trouble trying to get a basic PHP
    contact form to work within an externally loaded SWF file inside of
    a parent SWF. When I test the movie on its own it seems to work
    fine (example: I'm able to select a date from the DateField
    component). However, when I open up the parent SWF file and call
    the external SWF file with the form the DateField is basically
    unusable (example: when you click on it nothing happens, no
    calendar pops up to select a date).
    I have no ActionScript on it yet, simply because I figure I
    need it to work before I tell it what to do with the PHP file. The
    instance name on the DateField is "theDate". Any help is very much
    appreciated. Thank you.
    Also, I have just successfully used the contact form on the
    web. But, the only user interface components I am able to edit are
    the input text boxes, not the DateField or the ComboBox I have in
    it as well. This is very odd, I was not aware that anything special
    had to be done using these UI components within an external file.
    Elijah

    Hello 2m,
    Maybe if you were to see it, it may help you out a bit. If
    you
    click
    here for the external file you will see that the components are
    working. However, if you
    click
    here for the parent file and then click on "Meetings" on the
    top menu you will see that they do not work at all. However, if
    someone were to hit the "send" button, the PHP code would actually
    interact with the form. Let me know if that helps at all. Thanks
    again for replying.
    Elijah

  • Intermittent problem putting my 24" iMac to sleep.

    About every tenth time I attempt to put my iMac to sleep it will do the following: The screen dims a bit, the cursor disappears and the clock stops. The machine then becomes totally unresponsive and all I can do is do a forced shutdown.
    I thought it might have been the 'safe sleep' function so I disabled it. No change. I cleaned out all the caches, repaired permissions, checked the drive directory, reset the machine (pulling the cord, waiting and then putting back in and starting it up). Then I reset everything there is to reset! No change.
    Has anyone had this happen? If so, have you found a solution?
    Griff

    Just to report a resolution to the problem putting my 24" iMac to sleep...
    As I said, I put in two fresh 1G DIMMs (Shika brand). The two Kingston DIMMs were found to be defective. The sleep problem seems to be resolved. Also I found that a second problem (Applications suddenly and unexpectedly quitting) seems to have been resolved as well.
    Something else I found as well is that the machine runs much faster. Right off the bat, when I ran the Apple Hardware Test, it was completed in 53 seconds. With my previous RAM it took over two minutes to complete.
    Conclusion: Even if Utilities such as the Hardware Test and TechTool Pro 4 report no problem with RAM, some of the problems that people are experiencing that appear to be software based may be caused by bad RAM. It might be an idea to download and run Memtest or Rember over a period of a few hours to see if there is a problem. Or if you have access to a supply of RAM, you could swap in new ones and see if the problems go away.
    Griff

  • Problem with external procedure

    Please,
    i'm doing some experiments in Microsoft Win2003 environment calling a c function as external procedures.
    I've build a sample using Dev-C++ that make a DLL (i don't know c language) named sysDLL.dll
    DllClass::DllClass(char *cmd)
    int num;
    num = system(cmd);
    I need only to execute some OS command from PL/SQL (rdbms 10.2).
    I've putted DLL in $ORACLE_HOME\bin.
    Then I've created library with this statement :
    Create Library scott.c_sysdll as 'C:\oracle\product\10.2.0\db_3\bin\sysdll.dll'
    and at the end I've created the procedure :
    create or replace procedure scott.shell(cmd IN varchar2)
    as language C
    library c_SysDll
    name "DllClass"
    parameters (cmd string);
    But when I execute this procedure from sql*plus I've always get :
    ORA-06521: PL/SQL: Error mapping function
    ORA-06522: Unable to load symbol from DLL
    ORA-06512: at "SCOTT.SHELL", line 1
    ORA-06512: at line 1
    Please help me, thanks !

    Suggest that you first make it much simpler. Do not object orientation. Use plain vanilla flavour C. And even before using C, use a kernel call instead. For example, the gethostname() is a standard Socket call that you will find on many operating system (including Windows & Unix).
    The following code sample illustrates (can be run as is via SQL*Plus):<font color="blue">
    -- specify the external library (shared lib on Unix, DLL on Windows)
    create or replace library libc as 'libc.sl';
    -- The kernel call that we're going to wrap with a PL/SQL function:
    --      int gethostname(char *hostname, size_t size);
    -- wrapping this API call with a PL/SQL function
    create or replace function gethostname( hostname OUT string, size_t binary_integer ) return binary_integer is
            external
            library libc
            name "gethostname"
            language C
            calling standard C
            parameters
                    hostname        STRING,
                    size_t          INT
    -- calling the kernel API routine from within PL/SQL
    set serveroutput on
    declare
            host$   varchar2(60);
            rc$     integer;
    begin
            rc$ := gethostname( host$, 60 );
            dbms_output.put_line( 'hostname is ['|| host$ ||'] return code=['|| TO_CHAR(rc$) || ']' );
    end;
    /</font>
    <p>
    Of course, the DLL name for Window is different than the Shared Library ('libc.sl') used in the above snippet. Do not have a Win32 Oracle platform to test on, but you should find this API call in the winsock.dll library.
    <p>
    As for writing your custom extproc in C. Plain vanilla C is something as follows:
    int dosomestuff()
      return( 123456 );
    <p>
    Remember that this function has to be exported in the DLL interface.
    <p>
    Also keep in mind that using extproc is usually the last option to pursue when dealing with Oracle development. The basic rules are as follows:
    1. Do it in SQL.
    2. If it cannot be done in SQL, do it as a PL/SQL proc
    3. If if cannot be done in PL/SQL. do it as a Java stored proc
    4. If if cannot be done in Java, do is as an external proc<p>
    The times that I need to resort to using Java is less than a handful (most obvious one is using Java to gain o/s command line access). I have never put external proc code into production as we have yet to have a need for something so exceptional, that it cannot be done using SQL, PL/SQL or Java as the last resort.

  • Restored iMac from an MBP Backup giving problems with external devices

    Recently, I restored from an MBP Leopard OS Time machine Backup into a new iMac 27".
    Restoring process ran smoothly and took like an hour to recover my files and applications from the external disk time machine backup and after that the new iMac had everything my old MBP used to have but the OS. So far so good.
    But now I'm having problems connecting external devices, like the very same external disk to set my time machine backup or a Cannon Printer.
    The iMac can recognize and attach the external HDD (iOmega 1TB), I've succesfully formated it several times, but as soon as the backup process starts it will idle after backing 200MB or so and the HDD will be abruptly disconnected.
    Regarding the MP610 Cannon printer/scanner I used it smoothly once from this iMac, but after that it's been impossible to scan or print again, and it keeps saying it is connected to an MBP instead of an iMac!
    I already read the other related topics but my case is slightly different than those, so I will appreciate anyhelp you could provide me.

    When you say you restored, what does that mean? Did you do a full restore, installing the system from the backup onto the iMac? If so, you've probably borked the system and will have to reinstall it. See:
    http://support.apple.com/kb/HT2186
    Also, if you restored applications, it's possible some of those applications are not installed correctly or are not compatible with SL. Printing problems are common among folks who have not updated printer drivers to SL-compatible versions.

  • Mxmlc: Error: Problem finding external Model

    Hi,
    I am currently trying to compile a flex project with the
    mxmlc compiler. Unfortunately I always get this error message:
    Error: Problem finding external Model: config.xml
    It seems as if this resource cannot be found by the compiler.
    All source-paths and libs are are set as in the
    .actionScriptProperties file. Other resources such as style sheets
    can be found without any problem.
    Furthermore, when I write the xml model inline or if I
    provide the relative path inline the compiler understands that and
    does not show the error.
    <mx:Model id="config" source="config.xml"/> => does
    not work
    <mx:Model id="config" source="../config/config.xml"/>
    => works
    What can I do to tell the parser where the config.xml file is
    located?

    How can changing the project's properties affect asdoc.exe if I run it from the command line?
    I've tried running it from the bin folder and from the project's src folder always getting the same error.
    I went to 'Flex Build Path' in the project's properties window. It contains two tabs: 'Source path' and 'Library Path'. No 'Assets' tab.

Maybe you are looking for

  • Songs not showing up on my iphone

    I have iTunes Match and I thought it was working great but my wife told me there are songs that don't show up on her iPhone 4 but are in the iTunes library on the PC and they say they are in the cloud and I see them on my iPad. I have turned it off a

  • Has anyone seen this error? Final Cut X

    The managed object model version used to open the persistent store is incompatible with the one that was used to create the persistent store.

  • Analog to "IN" operator for ABAP?

    If I have a parameter into a function module (or subroutine, for that matter), that's a string and I need to process based upon certain groups of the possible values is there a way I can check using something like an "IN" operator? For example: IF p_

  • ATP for sales order

    Hello, Could someone please tell me how do we determine if the client site is presently using ATP for sales order. Does OVJ9/OVJ2 tell us if they have turned the ATP check on? Any help is much appreciated. thanks

  • Apple error?

    Hello, I have a question. If my Macbook Pro came bad from the factory? The first day I turned on my Macbook Pro 2012 (not retina), it came with a bad pixel (there was a with little line on myy Mac). The second problem was whrn I made my first update,