Help needed in Loading Mutiple movies in ScrollPane

Hi I am making video gallery using Action Script 3.0.I am
loading some FLVs into movies on my stage using XML. I have
on-click events on those movies.I have combined those all movies
into one movie to put in the scroll pane. The movie is fine fitted
in the scroll pane with the scrolls (which i needed )but the
problem I have is that all the on click events which were on the
individual movies are gone. The reason might be that because the
on-click events were on individual movies, and movies are now
combined in one. If anybody tells me how to load multiple
movies(collectively) in the scroll pane, that can solve my problem
because in that way movies can be inserted in the scroll pane
without combining all the movie into one and events will stay there
too.
Any other suggestion will be also be appreciated.
Please help me out in figuring out the solution of this
problem.
Thanks
Anuj

Hi,
I am surprised with your steps. In APO, you want to load data from a particular infoobject from BW. Why did you create a specific extractor in SBIW???
You have just reinvented the wheel... It reminds me some people in the world ...
Here is what you should do:
- in BW, at the infosource level, you create a direct infosource based on the infoobject that you want to extract the data to APO (let's say 0MATERIAL)
- in BW, at the infosource level, you right click on the infosource itself and you choose 'GENERATE EXPORT DATASOURCE. That will create the datasources for you (attributes, texts, hierarchies) depending on the infoobject settings. The names of these datasources will begin with a 8 for the datamart
- in APO, you replicate the BW system. Now you find the datasources 80MATERIAL something
- in APO, you create the transfer rules to your infosource and you can load
Just give it a try
Regards

Similar Messages

  • Loading mutiple movies in scrollpane

    Hi Guys
    I am trying to make the video gallery in Action Script 3.0.I
    have 15 movies which contain 15 flv files. All I need is to
    embed all those 15 movies so that the
    horizontal scrolls will come automatically . Basically I am
    looking for the container for those 15 movies with the horizontal
    scroll-bars because all the 15 is not going to fit in the screen
    and by default Action Script 3.0 is not generating any horizontal
    scrolls if the content is not fitting in the screen. Please let me
    know how would i get horizontal scroll if the movies are not going
    to fit horizontally.
    Any kind of help will be highly appreciated.
    Thanks
    Anuj

    It looks like you are loading 2 clips so that when one is
    finished the next one will play without delay and then it loads the
    next in the series beneath it.
    The flash that I am seeing is from the one that is hidden.
    Before it begins to play, the next movie is loaded and you see it,
    then they play in the correct order.
    Try placing the code you have in the onLoadComplete event
    into the onLoadInit event. Like this:
    listen.onLoadInit = function(mc:MovieClip) {
    mc.play();
    _root.myInterval=setInterval(doInterval,delay);
    loadbtm.loadClip(list[(IDX+1)%numImages],_root.btm);
    And comment out the following:
    //listen.onLoadComplete = function(mc:MovieClip) {
    // loadbtm.loadClip(list[(IDX+1)%numImages],_root.btm);
    The onLoadComplete event gets called first and starts loading
    your next slide before the onLoadInit event gets called. This small
    delay maybe enough to be causing the flash you are seeing.
    Tim

  • Help needed in Loading excel data to staging table from OAF Page

    Hi All,
    We have a requirement from the client on loading of a excel sheet data into staging table using OAF page.
    We were able to load a CSV file into staging table via OAF. The approach we used is we created a item of style 'messageFileUpload', which would pick the CSV file from desktop and we wrote the logic on the controller to place the file into server and then sumit a concurrent program to load the data into the staging table.
    But client wants data from the excel file to be loaded into staging table. Is there any way(approach) by which we can convert the excel file data into .CSV file using OAF?
    Any help or pointers on this will be highly apperciated.
    Thanks,
    Chethana

    Hi,
    Read through this :
    Need to upload a CSV/Excel to a table in OAF page
    Thanks,
    Gaurav

  • Help needed to load XML into DB table

    I need some serious help if someone can spare the time. I am completely new to XML and don't really understand it yet but I need to be able to load an XML file (example) below.
    I want to load this into a table that would look like the following:
    CHAPTER_TITLE    DOC_HTML    DOC_TITLE
    Men's Health      494440          AAAAA
    Men's Health      496812          BBBBB
    etc....
    <?xml version=1.0 encoding=utf-8?>
    <BookCollections Quantity=1 Title=Emis Books Collection>
        <Book Folder=PILSS Title=Patient Support>
            <Chapter Title=Men''s Health>
                <Document DocHTML=494440 Title=AAAAA />
                <Document DocHTML=496812 Title=BBBBB />
                <Document DocHTML=498923 Title=CCCCC />
                <Document DocHTML=499844 Title=DDDDD />
                <Document DocHTML=499901 Title=EEEEE />
            </Chapter>
        </Book>
    </BookCollections>I have read through the documentation I could find but I can't get it to work. I had a simple procedure which loaded the text file as a CLOB and then inserted it into an XMLTYPE column but even that wouldn't work. I would rather it loaded as above in seperate columns.
    Is there a simple example someone can help me out with?

    That is very close ORA_SID thank you. But I get the ORA-19025 error when I have more than one Chapter section. The example was a cut down version, ther real file has thousands of Chapters.
    e.g.
      1  insert into test2 values(xmltype(' <BookCollections Quantity="1" Title="Emis Books Collection">
      2  <Book Folder="PILSS" Title="Patient Support">
      3  <Chapter Title="Men''s Health">
      4              <Document DocHTML="494440" Title="AAAAA" />
      5              <Document DocHTML="496812" Title="BBBBB" />
      6              <Document DocHTML="498923" Title="CCCCC" />
      7              <Document DocHTML="499844" Title="DDDDD" />
      8              <Document DocHTML="499901" Title="EEEEE" />
      9              <Document DocHTML="500381" Title="FFFFF" />
    10              <Document DocHTML="500446" Title="GGGGG" />
    11              <Document DocHTML="500996" Title="HHHHH" />
    12          </Chapter>
    13          <Chapter Title="Contraception">
    14              <Document DocHTML="496815" Title="IIIII" />
    15              <Document DocHTML="496817" Title="JJJJJ" />
    16              <Document DocHTML="499547" Title="KKKKK" />
    17              <Document DocHTML="499550" Title="LLLLL" />
    18              <Document DocHTML="500473" Title="MMMMM" />
    19              <Document DocHTML="500704" Title="NNNNN" />
    20              <Document DocHTML="500813" Title="OOOOO" />
    21              <Document DocHTML="500995" Title="PPPPP />
    22              <Document DocHTML="500996" Title="QQQQQ" />
    23          </Chapter>
    24  </Book>
    25  </BookCollections>
    26* '))
    SQL> /
    1 row created.
    SQL> SELECT extractValue(xml_data, '/BookCollections/Book/Chapter/@Title') AS Chapter_Title,
      2  extractValue(value(em), '/Document/@DocHTML') AS Document_DocHTML,
      3  extractValue(value(em), '/Document/@Title') AS Document_Title
      4  FROM test2,table(XMLSequence(extract(xml_data,'/BookCollections/Book/Chapter/Document'))) em
      5  ;
    FROM test2,table(XMLSequence(extract(xml_data,'/BookCollections/Book/Chapter/Document'))) em
    ERROR at line 4:
    ORA-19025: EXTRACTVALUE returns value of only one nodeCan you help on this?

  • Help needed with loading data from ODS to cube

    Hi
    I am loading data from an ODS to a cube in QA. The update rules are active and definition seems right. I am getting the following error, in the update rules.
    "Error in the unit conversion. Error 110 occurred"
    Help.
    Thanks.

    Hi Chintai,
    You can see the record number where the error occured in the monitor (RSMO) for this data load > goto the details tab and open up the Processing area (+ sign). Try it out...
    Also about ignoring the error record and uploading the rest, this is done if you have set Error Handling in your InfoPackage (Update tab), but this would have to be done before the load starts, not after the error happens.
    Hope this helps...
    And since you thanked me twice, also please see here:-) https://www.sdn.sap.com/irj/sdn?rid=/webcontent/uuid/7201c12f-0701-0010-f2a6-de5f8ea81a9e [original link is broken]

  • Help needed in loading data from BW(200) to APO(100).

    Hi everybody,
    I am trying to load a master data from BW(200) to AP1(100) , this is what i did.
    1) created a InfoObject, with some fields (general-ebeln, Attributes- bukrs, werks,matnr).
    2) created and activated communication structure.
    3) Then went to BW(200) created data source(sbiw) and extracted datas from a particular info object, which had same fields and saved it, then went to RSA3 checked for data availability in data source , and it was available there too.
    4) Came back to AP1(100), in the source system tab, opened BW(200) and replicated the datas. I was able to see the Data source name which is created in BW(200).
    5) Create and activated the Transfer struct.
    6) created a info package, and loaded the data, but the monitor says " NOT YET COMPLEATED" , "CURRENTLY IN PROCESS". and it also shows "0 of 0 RECORDS".
    I want to know,
    1) Is there any mistake in what i have done above ?
    2) how long will it take to complete the process (i.e. the loading) ?.
    Please help me through this problem.
    Thanks,
    Ranjani.

    Hi,
    I am surprised with your steps. In APO, you want to load data from a particular infoobject from BW. Why did you create a specific extractor in SBIW???
    You have just reinvented the wheel... It reminds me some people in the world ...
    Here is what you should do:
    - in BW, at the infosource level, you create a direct infosource based on the infoobject that you want to extract the data to APO (let's say 0MATERIAL)
    - in BW, at the infosource level, you right click on the infosource itself and you choose 'GENERATE EXPORT DATASOURCE. That will create the datasources for you (attributes, texts, hierarchies) depending on the infoobject settings. The names of these datasources will begin with a 8 for the datamart
    - in APO, you replicate the BW system. Now you find the datasources 80MATERIAL something
    - in APO, you create the transfer rules to your infosource and you can load
    Just give it a try
    Regards

  • Help needed to load data using sql loader.

    Hi,
    I trying to load data from xls to oracle table(solaris OS) and its failing to load data.
    Control file:
    LOAD DATA
    CHARACTERSET UTF16
    BYTEORDER BIG ENDIAN
    INFILE cost.csv
    BADFILE consolidate.bad
    DISCARDFILE Sybase_inventory.dis
    INSERT
    INTO TABLE FIT_UNIX_NT_SERVER_COSTS
    FIELDS TERMINATED BY ','
    TRAILING NULLCOLS
    HOST_NM,
    SERVICE_9071_DOLLAR DOUBLE,
    SERVICE_9310_DOLLAR DOUBLE,
    SERVICE_9700_DOLLAR DOUBLE,
    SERVICE_9701_DOLLAR DOUBLE,
    SERVICE_9710_DOLLAR DOUBLE,
    SERVICE_9711_DOLLAR DOUBLE,
    SERVICE_9712_DOLLAR DOUBLE,
    SERVICE_9713_DOLLAR DOUBLE,
    SERVICE_9720_DOLLAR DOUBLE,
    SERVICE_9721_DOLLAR DOUBLE,
    SERVICE_9730_DOLLAR DOUBLE,
    SERVICE_9731_DOLLAR DOUBLE,
    SERVICE_9750_DOLLAR DOUBLE,
    SERVICE_9751_DOLLAR DOUBLE,
    GRAND_TOTAL DOUBLE
    Log file:
    Table FIT_UNIX_NT_SERVER_COSTS, loaded from every logical record.
    Insert option in effect for this table: INSERT
    TRAILING NULLCOLS option in effect
    Column Name Position Len Term Encl Datatype
    HOST_NM FIRST * , CHARACTER
    SERVICE_9071_DOLLAR NEXT 8 DOUBLE
    SERVICE_9310_DOLLAR NEXT 8 DOUBLE
    SERVICE_9700_DOLLAR NEXT 8 DOUBLE
    SERVICE_9701_DOLLAR NEXT 8 DOUBLE
    SERVICE_9710_DOLLAR NEXT 8 DOUBLE
    SERVICE_9711_DOLLAR NEXT 8 DOUBLE
    SERVICE_9712_DOLLAR NEXT 8 DOUBLE
    SERVICE_9713_DOLLAR NEXT 8 DOUBLE
    SERVICE_9720_DOLLAR NEXT 8 DOUBLE
    SERVICE_9721_DOLLAR NEXT 8 DOUBLE
    SERVICE_9730_DOLLAR NEXT 8 DOUBLE
    SERVICE_9731_DOLLAR NEXT 8 DOUBLE
    SERVICE_9750_DOLLAR NEXT 8 DOUBLE
    SERVICE_9751_DOLLAR NEXT 8 DOUBLE
    GRAND_TOTAL NEXT 8 DOUBLE
    Record 1: Rejected - Error on table FIT_UNIX_NT_SERVER_COSTS, column HOST_NM.
    Field in data file exceeds maximum length
    Table FIT_UNIX_NT_SERVER_COSTS:
    0 Rows successfully loaded.
    1 Row not loaded due to data errors.
    0 Rows not loaded because all WHEN clauses were failed.
    0 Rows not loaded because all fields were null.
    Please help me ASAP.
    Awaiting u r reply.

    Hi,
    I verified and everything looks fine according to me.
    Table structure:
    OST_NM VARCHAR2(30)
    SERVICE_9071_DOLLAR NUMBER(8,2)
    SERVICE_9310_DOLLAR NUMBER(8,2)
    SERVICE_9700_DOLLAR NUMBER(8,2)
    SERVICE_9701_DOLLAR NUMBER(8,2)
    SERVICE_9710_DOLLAR NUMBER(8,2)
    SERVICE_9711_DOLLAR NUMBER(8,2)
    SERVICE_9712_DOLLAR NUMBER(8,2)
    SERVICE_9713_DOLLAR NUMBER(8,2)
    SERVICE_9720_DOLLAR NUMBER(8,2)
    SERVICE_9721_DOLLAR NUMBER(8,2)
    SERVICE_9730_DOLLAR NUMBER(8,2)
    SERVICE_9731_DOLLAR NUMBER(8,2)
    SERVICE_9750_DOLLAR NUMBER(8,2)
    SERVICE_9751_DOLLAR NUMBER(8,2)
    GRAND_TOTAL NUMBER(8,2)
    Control file:
    LOAD DATA
    BYTEORDER BIG ENDIAN
    INFILE cost.csv
    BADFILE consolidate.bad
    DISCARDFILE Sybase_inventory.dis
    INSERT
    INTO TABLE FIT_UNIX_NT_SERVER_COSTS
    FIELDS TERMINATED BY ','
    TRAILING NULLCOLS
    HOST_NM ,
    SERVICE_9071_DOLLAR NUMBER(8,2),
    SERVICE_9310_DOLLAR NUMBER(8,2),
    SERVICE_9700_DOLLAR NUMBER(8,2),
    SERVICE_9701_DOLLAR NUMBER(8,2),
    SERVICE_9710_DOLLAR NUMBER(8,2),
    SERVICE_9711_DOLLAR NUMBER(8,2),
    SERVICE_9712_DOLLAR NUMBER(8,2),
    SERVICE_9713_DOLLAR NUMBER(8,2),
    SERVICE_9720_DOLLAR NUMBER(8,2),
    SERVICE_9721_DOLLAR NUMBER(8,2),
    SERVICE_9730_DOLLAR NUMBER(8,2),
    SERVICE_9731_DOLLAR NUMBER(8,2),
    SERVICE_9750_DOLLAR NUMBER(8,2),
    SERVICE_9751_DOLLAR NUMBER(8,2),
    GRAND_TOTAL NUMBER(8,2)
    Sample date file:
    ABOS12,122.46,,1315.00,,1400.00,,,,,,,,1855.62,,4693.07
    ABOS39,6391.16,,1315.00,,1400.00,,,,,,,,,4081.88,13188.04

  • Help needed to load a viewer control in Access

    Hi,
    I'm having a problem viewing a Crystal Report in Access.  The code looks like this:
    Dim crApp As New CRAXDRT.Application
    Dim crRep As CRAXDRT.Report
      'load a standalone report created in the designer
        Set crRep = crApp.OpenReport("c:\fax\database\reports\PO.rpt")
      CRViewer91.ReportSource = crRep
      ' print preview
      CRViewer91.ViewReport
    I'm loading CRADXDRT from CRADXDRT9.DLL.  The report viewer control is called "Crystal Report Viewer Control 9, which i believe is coming from CRVIEWER9.DLL.
    When I step through my code, CRADCDRT seems to load fine, however when I execute the CRViewer91.ViewReport step, the program seems to execute the code, but doesn't display any report.
    My question is:  am I using the correct control?  I have CR9 and 11 on my system.  I also have VB, which I believe also has a version of CR.  I'm trying to use 9, which is what the report was written in. 
    Thanks for your help.

    No it is not. The crviewer was part of the RDC which is now retired. The last version to ship the RDC was 11.5.
    See the [statement of direction|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/80bd35e5-c71d-2b10-4593-d09907d95289] for more details.
    Ludek

  • Help needed on publishing a movie

    I published a 2 hours movie to iDVD (it took 5 hours btw) and i still can't create an iDVD. When i am in iDVD (create a new project) It shows me the movis in my iMovie projects, but it also says "you must first publish this movie before you can use it in iMovie".
    Why didn't it work the 1st time?

    Hi
    I tell how I do it.
    A. in iMovie - I do not "Share to iDVD" as result will suffer - I "Share to Media Browser" and as Large (Not HD or any other resolution)
    B. iDVD is limited - NOT in Gbs or physical size of movie - BUT in time - so a 2 hour movie is more than iDVD can put onto a SL-DVD (but a DL-DVD can take it if right encoding quality is selected)
    Time = Movie duration PLUS Menu (and menu can be up to 15 minutes - I use a very simple one "Brushed Metal" from old themes and No Audio and No Animations - takes about 1 minutes and leave 119 to my moves)
    iDVD 08, 09 & 11 has three levels of qualities. (version 7.0.1, 7,0.4 & 7.1.1) and iDVD 6 has the two last ones
    • Professional Quality
    (movies + menus up to 120 min.) - BEST (but not always for short movies e.g. up to 45 minutes in total)
    • Best Performances
    (movies + menus  less than 60 min.) - High quality on final DVD (Can be best for short movies)
    • High Quality (in iDVD08 or 09) / Best Quality (in iDVD6)
    (movies + menus up to 120 min.) - slightly lower quality than above
    Menu can take 15 minutes or even more - I use a very simple one with no audio or animation like ”Brushed Metal” in old Themes.
    About double on DL DVDs.
    C. in iDVD I import my movie from the Media button down Right and from here - Movies. Now You find it in the list and can drag it into the big Menu Window to the Left.
    D. I secure a minimum of 25Gb free space on the Start-Up (Mac OS) Hard Disk - iDVD and Mac OS needs this during process and it can not be used on any other hard disks.
    E. I then Save as a DiskImage (under File) and test this so it runs OK
    F. Then burn with iDVD (new re-calculating time) or from DiskImage by using Disk Util tool. It can not just be copied on DeskTop - If done so You get a Data-DVD and it will not play in any DVD-Player.
    Yours Bengt W

  • Help need for loading aligned images in JEditorpane

    Hi all,
    I need to align image with text using JEditorpane, If i load the html document with aligned image, there is no alignment for image in final display. So please suggest any ideas if u have on this topic. I am in great hurry.
    Thanks in advance,
    Nageswara Rao.V

    Hello,
    I'm also having the same problem, did anybody find any solution ?
    -sanjaymishra70

  • URGENT HELP *** Need to load BOM Header TEXT

    Hello Experts,
    How can i load BOM Header text using LSMW
    Thanks
    S

    Two ways to upload:
    1. Via FM: SAVE_TEXT
    2. Create a recording to add text for BOM Header and Use accordingly.
    Regards
    Eswar

  • Help needed to load a flash file from another flash file

    This is a two part question - but I am sure that answering
    one will solve the other.
    I have a menu.swf file, and if I click on the top button it
    should load module1.swf. (Which it does) - however I can see the
    menu.swf file underneath the module1.swf file.
    The second part of the problem is that when I click on the
    top button of menu.swf, I want it to goto a specific location
    within module1.swf ( say the 8th page )
    If I use loadmovienum ("module1.swf",0) it opens a new window
    - instead of replacing menu.swf
    any ideas

    Use loadMovie() or loadClip (with the MovieClipLoader class)
    depending on how much you want to know about/control the load. With
    these you can specify a target movieClip for the load.
    Not sure what you mean by 'location'. If you're talking
    frames, you can use the load's target movieclip as a reference to
    the swf and use gotoAndPlay - but you have to make sure the swf is
    loaded first.

  • Help needed to load different xml playlists by clicking button

    Hi there,
    I have a series of buttons, when i double click a button i want to load a new xml file
    I have some functioning code, but when i click on more than one button per run of the application, it will only use the first xml that was clicked / loaded.
    Does anyone have any suggestions I would be really grateful
    Thanks!
    // Music player populated via XML formatted data with associated .mp3 audio files
    // songs to play structured as an XMLList class
    // displays artist and song title in the interface
    cover.visible = false;
    cover2.visible = false;
    // song list base on an XMLList class
    var songList:XMLList;
    // total number of songs in list
    var songsTotal:Number;
    // sound class variable
    var sound:Sound;
    // sound channnel variable to play, pause and stop the sound
    var soundChannel:SoundChannel;
    // holds a reference to the current song playing
    var currentSong:Number = 0;
    // variable to store the song position when paused
    var songPosition:Number;
    // flag to check if current song is paused
    var songPaused:Boolean;
    //  loader for XML via a URL
    var XMLLoader:URLLoader = new URLLoader();
    // various buttons to control songs via the interface
    next_btn.addEventListener(MouseEvent.CLICK, onNext);
    prev_btn.addEventListener(MouseEvent.CLICK, onPrev);
    pause_btn.addEventListener(MouseEvent.CLICK, onPause);
    play_btn.addEventListener(MouseEvent.CLICK, onPlay);
    album1.doubleClickEnabled=true;
    album2.doubleClickEnabled=true;
    album1.addEventListener(MouseEvent.DOUBLE_CLICK, loadalbum1);
    album2.addEventListener(MouseEvent.DOUBLE_CLICK, loadalbum2);
    // check the data has loaded correctly
    XMLLoader.addEventListener(Event.COMPLETE, processXML);
    // this function processes the XML data
    function processXML(e:Event):void {
    // create an XML playlist structure
    var anXMLplayList:XML = new XML(e.target.data);
    // associate the playlist songs with the internal song list
    songList = anXMLplayList.SONG;
    // set the total songs to those found in the XML data
    songsTotal = songList.length();
    // remove the eventlistener and restore variables
    XMLLoader.removeEventListener(Event.COMPLETE, processXML);
    XMLLoader = null;
    // this function starts the first song in the list
    // when the play_btn is pressed via the onPlay function
    function playSong(aSong:Number):void {
    // variables for the Title, Artist and associated song in the song list
    var aTitle = songList[aSong].@TITLE;
    var anArtist = songList[aSong].@ARTIST;
    var aURL = songList[aSong].@URL;
    // populate the interface with the current song data
    title_txt.text = aTitle;
    artist_txt.text = anArtist;
    // check to see if the sound channel is active
    if (soundChannel) {
      soundChannel.stop();
      soundChannel.removeEventListener(Event.SOUND_COMPLETE, onNext);
    // create a new sound object
    sound = new Sound();
    // load the sound from the URL song data
    sound.load(new URLRequest(aURL));
    // activate the sound channel via the play method
    soundChannel = sound.play();
    // when the current songh completes - play the next song via the onNext function
    soundChannel.addEventListener(Event.SOUND_COMPLETE, onNext);
    // this function plays the next song in the list
    function onNext(e:Event):void {
    // increment the current song
    currentSong++;
    // reset the current song if no more to play
    if (currentSong>=songsTotal) {
      currentSong=0;
    // else play the current song via the playSong method
    playSong(currentSong);
    // this function plays the previous song in the song list
    function onPrev(e:MouseEvent):void {
    currentSong--;
    if (currentSong<0) {
      currentSong = songsTotal-1;
    playSong(currentSong);
    // this function pauses the current song playing and sets the boolean flag
    // accordingly
    function onPause(e:MouseEvent):void {
    if (soundChannel) {
      songPosition = soundChannel.position;
      soundChannel.stop();
      songPaused=true;
    // this function plays the current song or restarts a paused song
    function onPlay(e:MouseEvent):void {
    if (songPaused) {
      soundChannel = sound.play(songPosition);
      songPaused=false;
    } else if (!soundChannel) {
      playSong(currentSong);
    function loadalbum1(e:Event):void {
    cover.visible = true;
    cover2.visible = false;
    // load the XML formated playlist
    XMLLoader.load(new URLRequest("playlist1.xml"));
    function loadalbum2(e:Event):void {
    cover2.visible = true;
    cover.visible = false;
    // load the XML formated playlist
    XMLLoader.load(new URLRequest("playlist2.xml"));

    You should try to limit the code you post to what is relevant to the problem... it is hard to track things down, especially when your code is not formatted properly with indentations.
    I didn't search farther than finding that you remove the event listener for the URLLoader...
    XMLLoader.removeEventListener(Event.COMPLETE, processXML);
    so if you remove it after you load the first file and do not restore one for it, then chances are you don't "processXML" any more than the first file you load

  • Help needed on how to move caption

    when I select print with the caption option the caption is about 5cms below bottom of picture so doesn't print.
    how do I reposition the caption into the margin or even on the photo please?
    i Am printing to postcard size. The picture looks fine in preview but the caption is well below the frame.
    hope someone solved this problem!

    Double post. Reply here: http://forum.java.sun.com/thread.jspa?threadID=5181807

  • Loading a movie to a particular frame of that movie

    hello all, i am trying to load a movie and make it stop at a
    frame number 3, so i am using this script
    on (press) {
    loadMovie("pressLarge.swf",_level2.gotoAndStop(3));
    so i would load my movie presslarge.swf on level 2 and make
    it stop at frame 3 of that movie, what am I doing wrong? thanks in
    advance

    You can't do it that way.
    You need to load the movie and then tell it to go to Frame 3.
    But...if you simply stack the actions like this:
    on (press) {
    loadMovie("pressLarge.swf",_level2);
    _level2.gotoAndStop(3);
    It will work in the Flash IDE but fail on the server because
    the movie is not fully loaded when the second action is called.
    You need to track the loading and when it is done tell the
    movie to gotoAndStop. This is much easier using MovieClipLoader's
    loadClip than loadMovie.

Maybe you are looking for

  • Safari hangs when loading web pages.

    I'm new to the Mac and had my machine less than a week. However, I'm having problems with Safari/Internet. Generally it's fine, but from time to time Safari hangs and it can take a few minutes for it to spring back into life and load the desired web

  • Bridge CS6 constantly re-caching?

    In Bridge CS6 (64bit on Windows 7) I noticed that each time I visit a folder I see "activity" in the lower left corner of the window. I see the spinning circle, and reports that tumbnails and previews are being extracted. This happens on folders that

  • Imac shutsdown during startup

    I just tried to install Snow Leaopard on my Imac G5. It faild as the "contents of the hard disk could not be changed" so I quit the installer and went to restart the mac from the hard disk. Now it starts, but shuts down after a few seconds of startin

  • Can't Get Booted

    My Road Warrior Mac Book has finally taken too much kid handling. Pressing the power button, the hard drive stars clicking. By the sound, it makes several searches. BuzzBuzz,,,, Buzzbuzz Then the light goes on at he monitor screen, and then it blinks

  • Using Dynamixel2usb devices on myRIO.

    I used the USB devices called USB2DYNAMIXEL.The device is from ROBOTIS,I want to connet it between AX-12A motor and myRIO . So I follow the steps from link here https://decibel.ni.com/content/docs/DOC-34827#comment-40514 ,but in the step 1 I use the