Importing symbols to stage

New to flash.
So, one can import psd's to the stage and each one can occupy
its own frame. One can also import psd's to the library and have
them converted to symbols.
My question: Is it possible to then import those symbols onto
the stage so that each one occupies its own frame? I don't want to
have to place each symbol on the stage individually.It gets tedious
after the first ten.

Yup.
I'm playing around with making a slide show. I want to be
able to use transitions (fade in and stop) within each frame. I
don't want to have to add frames and tween.
The show is 122 images... so you see the reason for low
tolerance. I agree... there may not be an easy (automated) way to
import the symbols... sigh.

Similar Messages

  • Components vanish when placed on a layer below an imported Symbol

    AS2 Components vanish  or get severely corrupted when placed on a layer below an Imported  symbol.
    Very easy to reporduce:
    Flash CS4 create a new AS2 FLA  called Share.fla
    Create an  empty MovieClip symbol in the library and set its properties to export for  runtime sharing URL: "Share.swf".
    Build.
    Now create another  new AS2 FLA in same folder called TestShare.fla.
    Create an empty  MovieClip symbol in the library and set it's properties to "Import for runtime  sharing" URL: "Share.swf".
    Drop an instance of  this empty symbol in frame 1 layer 1.
    Create a second  layer and drop an instance of any Component from the components  panel for example the Button component.
    Build.
    The component appears as a blank square block.
    If you add a trace statement to the components constructor you'll see it is never called.
    Now swap the layers,  drag layer 2 above layer 1 and build again.
    Now the component  shows just fine.
    You might say so just swap the layers and carry on but this is simplified example to demonstrate the problem, in practice I have many shared libraries containing many component and many apps with many layers and I've been shuffling the layers for what seems like an eternity and found that there is no order that will work for everything. If anyone can explain this behaviour or suggest a permanent work around I would be very grateful.

    Thought I would attach the source so just unzip and build TestShare.fla you'll see the Button component, then swap layers 1 and 2 and rebuild and you will see just an empty Button frame. Would love to find an answer to this.

  • How can I import symbols to iCal?

    I am wondering if there is a way to import symbols to iCal.

    Blowhard,
    The characters/symbols which Character Palette can display/use are limited by the fonts which are installed on your computer.
    Character Palette is a character map for Unicode 3.2.
    Unicode and Multilingual File Conversion, Font and Keyboard Utilities for Macintosh OS X Computers, has a comprehensive discussion on various Utilities available.
    ;~)

  • Importing swfs onto stage

    I have 20 swfs that were converted from Captivate. They need
    to be pasted one after another in one flash timeline so I can add
    audio clips to them. What I've been doing is opening a new instance
    of flash and importing each swf onto the stage, and then in another
    instance of flash I'm pasting the copied frames in one after
    another. What's happening is the imported frames convert to 'bitmap
    1' and 'symbol 1' and so forth all the way up to 23 or so. When i
    try to paste a new set of frames after set 1, it asks me if I want
    to replace the existing frames, when I click 'no', some of set 2
    frames aren't lining up at x=0 and y=0, when i click 'yes' it
    replaces set 1 frames with set 2 frames. This method has worked
    with other files, but for some reason its not working anymore!
    Other than creating a new folder for each imported set, is there
    any easier way?
    Thanks in advance, Missmetz

    Yes, it is possible.
    You might import their W3D as a cast member then cloneModelFromCastmember, or use loadFile on an existing W3D member. In either case you need an existing W3D castMember displayed on the stage as a sprite.

  • The images imported to my stage turn up as blank and render every image previous to the rogue imported image as red squares that fill the perimeters of the image which then renders the publishing and scene testing features in flash useless, what can i do

    I have been working on animating a scene in flash for a few weeks and recently I have encountered a problem with importing my images on to the stage where the images I import do not turn up, however the key frame that I attempted to import the image onto shows that it is occupied by an image and every frame previous to the key frame that just imported an image that does not show turns up as a red square that fills the original perimeters of the image, there is no solution to this problem any where on the forum and the adobe technical support staff will not help me find a solution to this problem what can I do to get Flash running normally again and fix this problem?????
    Also after the first time i publish a preview after i begin using flash, flash renders the publishing and scene testing features as useless and claims that there is no HTML template found, or if the images if i import any images onto the stage that come up blank and render every image previous to that image as a red square and then try and publish a preview  flash renders the publishing and scene testing features as useless and claims that there is no HTML template found. What can I do to fix this problem??? there is no solution on the web anywhere to this problem either.

    I don't know if Flash has a memory limit of its own. The memory for your Flash file is based on the available memory on your computer.
    There is a limit on the number of frames that you can have in any given timeline. I think that it's about 15000 frames, but that's a guess. Flash does all of its work at runtime, this means that no part of your animation is pre-compiled like it is in a video file. So the more objects that you have on the stage, the more work Flash has to do. It follows that the more objects that there are to animate, the more work your processor and the video card have to do.
    Here's a list of articles on memory management that might be useful:
    Garbage collection internals for Flash Player and Adobe AIR | AdobeDeveloper Connection
    actionscript 3 - What are good memory management techniques in Flash/as3 - Stack Overflow
    AS3 Memory Management Tips

  • Problems exporting / importing symbols across modules

    I have a situation where i have to export a function from one module and call it from the other. In linux you typically do an EXPORT_SYMBOL(sym) to make it visible to the kernel. In solaris as long as function is not static the symbol is visible to the rest of the kernel namespace.
    But my driver that calls the function from the other module fails to load cribbing "/kernel/drv/sparcv9/betaDrv: undefined symbol"
    Here in my code the alphaDrv module has a function "export_from_alpha" which is called by betaDrv module.
    OS is Solaris9 (64bit kernel) on SPARC
    Code for alphaDrv:
    #include <sys/modctl.h>
    #include <sys/conf.h>
    #include <sys/devops.h>
    #include <sys/cmn_err.h>
    #include <sys/ddi.h>
    #include <sys/sunddi.h>
    #include <sys/stat.h>
    #include <sys/stack.h>
    #include <sys/frame.h>
    #include <sys/kobj.h>
    #include <sys/ksynch.h>
    #include <sys/copyops.h>
    #include <sys/disp.h>
    dev_info_t *g_dip;
    /* Function exported from alphaDrv to be called from betaDrv */
    char *export_from_alpha(void)
      cmn_err(CE_CONT, "Houston, receiving you loud and clear !!");
      return "Hello World !";
    static int alpha_open(dev_t *devp, int flag, int otyp, cred_t *credp)
      return 0;
    static int alpha_close(dev_t dev, int flag, int otyp, cred_t *credp)
      return 0;
    static int alpha_read_write(dev_t dev, struct uio *uiop, cred_t *credp)
      return 0;
    static int alpha_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
      int rc = DDI_FAILURE;
      cmn_err(CE_CONT, "EntryPoint(ALPHA) - alpha_info");
      switch(infocmd)
      case DDI_INFO_DEVT2DEVINFO:
        *result = g_dip;
        rc = DDI_SUCCESS;
      case DDI_INFO_DEVT2INSTANCE:
        *result = (void *)getminor((dev_t)arg);
        rc = DDI_SUCCESS;
        break;
      default:
        *result = NULL;
        break;
      return rc;
    static int alpha_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
      int inst = ddi_get_instance(dip);
      cmn_err(CE_CONT, "EntryPoint(ALPHA) - alpha_attach");
      switch(cmd)
      case DDI_ATTACH:
        if(ddi_create_minor_node(dip, "ALPHA1", S_IFCHR, inst, DDI_PSEUDO, 0))
          return DDI_FAILURE;
        g_dip = (void *)dip;
        break;
      case DDI_RESUME:
        break;
      default:
        return (DDI_FAILURE);
      return (DDI_SUCCESS);
    static int alpha_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
      int inst = ddi_get_instance(dip);
      cmn_err(CE_CONT, "EntryPoint(ALPHA) - alpha_detach");
      switch(cmd)
        case DDI_DETACH:
          ddi_remove_minor_node(dip, NULL);
          break;
        default:
          return (DDI_FAILURE);
      return (DDI_SUCCESS);
    /* Driver specific implementations */
    static struct cb_ops alpha_cb_ops = {
      alpha_open,
      alpha_close,
      nodev,
      nodev,
      nodev,
      alpha_read_write,
      alpha_read_write,
      nodev,
      nodev,
      nodev,
      nodev,
      nochpoll,
      ddi_prop_op,
      (struct streamtab *)NULL,
      D_MP | D_64BIT,
      CB_REV,
      nodev,
      nodev
    static struct dev_ops alpha_dev_ops = {
      DEVO_REV,
      0,
      alpha_info,
      nulldev,
      nulldev,
      alpha_attach,
      alpha_detach,
      nodev,
      &alpha_cb_ops,
      (struct bus_ops *)NULL,
      nulldev
    static struct modldrv alpha_modldrv = {
      &mod_driverops,
      "ALPHA Driver",
      &alpha_dev_ops
    static struct modlinkage alpha_modlinkage = {
      MODREV_1,
      (void *)&alpha_modldrv,
      NULL
    int _init(void)
      int rc;
      cmn_err(CE_CONT, "EntryPoint(ALPHA) - _init");
      rc = mod_install(&alpha_modlinkage);
      if(rc)
        cmn_err(CE_CONT, "Failed to install driver(ALPHA) - %d", rc);
      return rc;
    int _info(struct modinfo *modInfop)
      int rc;
      cmn_err(CE_CONT, "\n\n\nEntryPoint(ALPHA) - _info");
      rc = mod_info(&alpha_modlinkage, modInfop);
      if(!rc)
        cmn_err(CE_CONT, "Failed to get driver info(ALPHA) - %d", rc);
      return rc;
    int _fini(void)
      return(mod_remove(&alpha_modlinkage));
    }Code for betaDrv:
    #include <sys/modctl.h>
    #include <sys/conf.h>
    #include <sys/devops.h>
    #include <sys/cmn_err.h>
    #include <sys/ddi.h>
    #include <sys/sunddi.h>
    #include <sys/stat.h>
    #include <sys/stack.h>
    #include <sys/frame.h>
    #include <sys/kobj.h>
    #include <sys/ksynch.h>
    #include <sys/copyops.h>
    #include <sys/disp.h>
    dev_info_t *g_dip;
    /* Extern declartion for the function imported from alphaDrv */
    char *export_from_alpha(void);
    static int beta_open(dev_t *devp, int flag, int otyp, cred_t *credp)
      return 0;
    static int beta_close(dev_t dev, int flag, int otyp, cred_t *credp)
      return 0;
    static int beta_read_write(dev_t dev, struct uio *uiop, cred_t *credp)
      return 0;
    static int beta_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
      int rc = DDI_FAILURE;
      cmn_err(CE_CONT, "EntryPoint(BETA) - beta_info");
      switch(infocmd)
      case DDI_INFO_DEVT2DEVINFO:
        *result = g_dip;
        rc = DDI_SUCCESS;
      case DDI_INFO_DEVT2INSTANCE:
        *result = (void *)getminor((dev_t)arg);
        rc = DDI_SUCCESS;
        break;
      default:
        *result = NULL;
        break;
      return rc;
    static int beta_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
      int inst = ddi_get_instance(dip);
      cmn_err(CE_CONT, "EntryPoint(BETA) - beta_attach");
      switch(cmd)
      case DDI_ATTACH:
        if(ddi_create_minor_node(dip, "BETA1", S_IFCHR, inst, DDI_PSEUDO, 0))
          return DDI_FAILURE;
        g_dip = (void *)dip;
        break;
      case DDI_RESUME:
        break;
      default:
        return (DDI_FAILURE);
      return (DDI_SUCCESS);
    static int beta_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
      int inst = ddi_get_instance(dip);
      cmn_err(CE_CONT, "EntryPoint(BETA) - beta_detach");
      switch(cmd)
        case DDI_DETACH:
          ddi_remove_minor_node(dip, NULL);
          break;
        default:
          return (DDI_FAILURE);
      return (DDI_SUCCESS);
    /* Driver specific implementations */
    static struct cb_ops beta_cb_ops = {
      beta_open,
      beta_close,
      nodev,
      nodev,
      nodev,
      beta_read_write,
      beta_read_write,
      nodev,
      nodev,
      nodev,
      nodev,
      nochpoll,
      ddi_prop_op,
      (struct streamtab *)NULL,
      D_MP | D_64BIT,
      CB_REV,
      nodev,
      nodev
    static struct dev_ops beta_dev_ops = {
      DEVO_REV,
      0,
      beta_info,
      nulldev,
      nulldev,
      beta_attach,
      beta_detach,
      nodev,
      &beta_cb_ops,
      (struct bus_ops *)NULL,
      nulldev
    static struct modldrv beta_modldrv = {
      &mod_driverops,
      "BETA Driver",
      &beta_dev_ops
    static struct modlinkage beta_modlinkage = {
      MODREV_1,
      (void *)&beta_modldrv,
      NULL
    int _init(void)
      int rc;
      cmn_err(CE_CONT, "EntryPoint(BETA) - _init");
      rc = mod_install(&beta_modlinkage);
      if(rc)
        cmn_err(CE_CONT, "Failed to install driver(BETA) - %d", rc);
      /* Calling function exported from alpha */
      cmn_err(CE_CONT, "Houston, we have a problem !! --> %s", export_from_alpha());
      return rc;
    int _info(struct modinfo *modInfop)
      int rc;
      cmn_err(CE_CONT, "\n\n\nEntryPoint(BETA) - _info");
      rc = mod_info(&beta_modlinkage, modInfop);
      if(!rc)
        cmn_err(CE_CONT, "Failed to get driver info(BETA) - %d", rc);
      return rc;
    int _fini(void)
      return(mod_remove(&beta_modlinkage));
    }This is what i do:
    # rem_drv alphaDrv
    # rem_drv betaDrv
    # rm -f /kernel/drv/sparcv9/alphaDrv
    # rm -f /kernel/drv/sparcv9/betaDrv
    # /opt/SUNWspro/bin/cc -xarch=v9 -D_KERNEL -DDEBUG -D__64BIT__ -c alpha.c
    # /usr/ccs/bin/ld -r -o alphaDrv alpha.o
    # /opt/SUNWspro/bin/cc -xarch=v9 -D_KERNEL -DDEBUG -D__64BIT__ -c beta.c
    # /usr/ccs/bin/ld -r -o betaDrv beta.o
    # cp alphaDrv /kernel/drv/sparcv9
    # cp betaDrv /kernel/drv/sparcv9
    # add_drv alphaDrv
    # add_drv betaDrv
    devfsadm: driver failed to attach: betaDrv
    Warning: Driver (betaDrv) successfully added to system but failed to attach
    This is the outout from /var/adm/messages:
    Oct 17 15:34:25 test_machine1 EntryPoint(ALPHA) - _info
    Oct 17 15:34:25 test_machine1 alphaDrv: [ID 938910 kern.notice] EntryPoint(ALPHA) - alpha_detach
    Oct 17 15:34:40 test_machine1 alphaDrv: [ID 394848 kern.notice]
    Oct 17 15:34:40 test_machine1 EntryPoint(ALPHA) - _info
    Oct 17 15:34:40 test_machine1 alphaDrv: [ID 756530 kern.notice] EntryPoint(ALPHA) - _init
    Oct 17 15:34:40 test_machine1 alphaDrv: [ID 999966 kern.notice] EntryPoint(ALPHA) - alpha_attach
    Oct 17 15:34:41 test_machine1 krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/betaDrv: undefined symbol
    Oct 17 15:34:41 test_machine1 krtld: [ID 826211 kern.notice] 'export_from_alpha'
    Oct 17 15:34:41 test_machine1 krtld: [ID 472681 kern.notice] WARNING: mod_load: cannot load module 'betaDrv'
    Thanks for the help

    Hello.
    I use "misc modules" to handle data transfer between modules.
    "Misc modules" can provide shared memory between modules which can be used to store function pointers.
    Martin

  • Delete child symbol from stage

    Hi All,
    I need help deleting a symbol from the stage.  I have a list of symbols that are called to the stage at some point in a simulation. When the user leaves one symbol, it is supposed to delete itself and call up another (specific) symol.  For example.  I called the symbol “AR-HistAims” to the stage using
    var mySymbolObject = sym.createChildSymbol("AR-HistAims", "Stage");
                mySymbolObject.getSymbolElement().css({'position':'absolute','left': (mouseX - offset.left)/sx , 'top': (mouseY - offset.top)/sy});
                mySymbolObject.play();
    This works fine.  I place an invisible button in the symbols timeline and when it is clicked I want it to do two things. 
    call up “AR-percPass” (using the same code as above with a percPass in place of HistAims)
    remove “AR-HistAims” from the stage. 
    I can’t seem to get #2 to work.  I’ve tried codes below and above the code for #1.  When placed above, it deletes the current symbol, but doesn’t call up the new one.  When placed below, the new symbol appears on top of the old one.  The codes I've used are:
                var childSymbols=sym.getComposition().getSymbols("AR-HistAims");
                for(var i=0; i<childSymbols.length; i++)
                childSymbols[i].deleteSymbol();
    //and
                var mySymbolObject = sym.getParentSymbol().getSymbol("mySymbol").getVariable("AR-HistAims");
                stage.deleteSymbol();
    //and
    sym.getParentSymbol().deleteSymbol();
    Any advice would be appreciated.
    Thanks
    Randy

    Hi Randy,
    There are a few corrections you need to make in index_edgeAction.js file like as follows:
    1. In click handler, you don't have access to  mouseX, offset, sx, sy etc.
         mySymbolObject.getSymbolElement().css({'position':'absolute','left': (mouseX - offset.left)/sx , 'top': (mouseY - offset.top)/sy});
         So, make it like this:
         mySymbolObject.getSymbolElement().css({'position':'absolute','left': 0 , 'top': 0});
         Make these kind of changes for every click handler where you have used mouseX, offset, sx, sy etc, with appropriate left and top values.
    2. Just search for sym.getSymbolElement().deleteSymbol(); and replace it with sym.deleteSymbol();
    3. Comment out line#1366  having statement sym.deleteSymbol ();
    4. Search for sym.getSymbol(home).deleteSymbol(); and replace all such occurences with sym.getSymbol("home").deleteSymbol();
    With the above changes, things will work.
    hth,
    Vivekuma

  • Animating a Symbol on Stage using a JS function

    Lets say i would like to animate SampleSymbol to the right, The following code is placed in CLICK trigger for a button, My understanding is the best way to animate stuff is to write JS functions in Action panels, is it?
    The following line fails to animate the SampleSymbol placed on stage...
    moveToRight();
    function moveToRight() {
    sym.$("SampleSymbol").style.left = (sym.$("SampleSymbol").style.left+1)+'px';
    // This code supposed to Move the object 1px to the right
    setTimeout(moveToRight,20); // call function() in 20 msec

    HERE IS MORE INFO ON THE SAME FUNCTIONALITY
    this way you can animate them :
    sym.$("SampleSymbol").animate({"left" : "100px"}, 500, "easeInCubic");
    500 : is the number in milisec to move your symbol
    ease : this is Optional and  you can use ease after number to change the way your symbol move like easeInCubic
    Here is the list of ease that you can use : http://easings.net/

  • Importing image to stage

    Hi folks,
    I am importing a .jpg to stage that I want to fit to stage.
    The Stage is set to 800X600 which is the same size as my pic. But
    when I import it the box does not come up that will allow me to
    check the box "Fit to Stage".
    I have looked around under the menu but cannot find a Fit to
    Stage button.
    Any suggestion?
    TIA and Happy Holidays

    if you want to resize the bitmap, check the properties panel.
    you may need to use the property panel scrollbar if you're using
    flash cs4.

  • Importing Movieclips to stage from library

    Hi, im trying to import a movie clip from the library to the stage and give it an instance name but im not really sure how to do it.
    I exported the movie clip to actionscript and gave it a unique class name, but how can i add it to the stage and give it a unique instance name?
    Thanks

    Hey! How about:
    for(var i:uint; i<10;i++){
    var instance:Myclass = new Myclass;
    instance.name = "instance" + i
    That way it'll create as many of them was you want (10 in this case) and name them instance0,instance1,instance2, etc
    alternatively you could do this:
    var instances:Array = new Array;
    for(var i:uint; i<10;i++){
    var instance:Myclass = new Myclass;
    instances.push(instance);
    then later on you could refer back to them as instances[0], instances[1],etc.
    It all depends on what you need to do.
    Hope that helps!

  • Editing symbol from stage

    I'm a very new newbie, so please forgive me if I don't use
    quite the right words to describe my problem. I'm going through the
    lynda.com tutorial on Flash Pro 8, and I'm in the chapter on
    symbols. The instructor describes two ways of accessing the symbol
    in order to edit it when you are in stage view: double click on the
    symbol in the library (which worked just fine for me) or
    double-click on the symbol on the stage (which did nothing for me).
    Is this strange? Is it worrisome? Am I going to miss all the fun
    because I can't do this? Has anyone else encountered this? Does it
    work for anyone else who uses a Wacom tablet?
    Thanks for any insights y'all can provide!
    ~Valerie

    It should work - is your Edit bar open? It is located a cross
    the top of the
    timeline (depending on version). It will show you a bredcrumb
    trail of where
    you are in whatever symbol in relation to the stage. Window
    > Toolbars >
    Edit Bar.
    Verify after double clicking you can see that you have
    entered Edit in Place
    mode. This has nothing to do with using a Wacom or not.
    Adobe Certified Expert
    www.keyframer.com
    www.mudbubble.com
    (if you want to email me, don't look)
    "valerieab" <[email protected]> wrote in
    message
    news:g6vtvq$n18$[email protected]..
    > I'm a very new newbie, so please forgive me if I don't
    use quite the right
    > words to describe my problem. I'm going through the
    lynda.com tutorial on
    > Flash
    > Pro 8, and I'm in the chapter on symbols. The instructor
    describes two
    > ways of
    > accessing the symbol in order to edit it when you are in
    stage view:
    > double
    > click on the symbol in the library (which worked just
    fine for me) or
    > double-click on the symbol on the stage (which did
    nothing for me). Is
    > this
    > strange? Is it worrisome? Am I going to miss all the fun
    because I can't
    > do
    > this? Has anyone else encountered this? Does it work for
    anyone else who
    > uses a
    > Wacom tablet?
    >
    > Thanks for any insights y'all can provide!
    >
    > ~Valerie
    >

  • Find number of symbols on Stage

    Hi,
    I'm trying to find out how many symbols with a certain naming convention are on the stage. The name of these symbols are incremented by 1, so for example I have symbols 'drag_1' & 'drag_2' currently on the stage and I want to return how many 'drag_ ' symbols are on the stage. This can change depending on how much of these symbols the user adds to the stage.
    I've included some pseudo code below to help understand what im talking about!
    for (var i = 0; i < 100; i++){
         if(SYMBOL_ON_STAGE = 'drag_' + i){
              number_of_symbols =  number_of_symbols + 1
    Thanks for any help!

    You can use
    var childSymbols = sym.getChildSymbols();
    var num = 0
    for(var i = 0;i<childSymbols.length;i++){
    var reg = new RegExp(/Stage_drag_*/);
    if(reg.test(childSymbols[i].getSymbolElementNode().id)){
    num++;
    alert(num);

  • Importing Sony Sonic Stage Music

    How can I import music I purchased from sony sonic stage to my apple ipod nano? The only way I have found that works is to burn to cd first then upload back into itunes. The problem is that none of the song titles appear in the transfer. I can edit the song tracks in itunes individualy however this is very time consuming.

    How can I import music I purchased from sony sonic stage to my apple ipod nano? The only way I have found that works is to burn to cd first then upload back into itunes.
    my understanding is that this depends on your version of SonicStage. if you have a version that allows you to convert your ATRAC-encoded files to WAV:
    Wikipedia: SonicStage
    ... then you could add the WAVs to your iTunes using "File > Add File/Folder to Library":
    iTunes: About the Add to Library, Import, and Convert functions

  • Center elements or symbol on stage

    How can I center my symbols or elements on a responsive layout. The plan is the blue bar will change width across the stage and the navigation menu (which is individual symbols grouped together) centers when browser resize

    Hi,
    Well, a lot of ideas!
    About centering: there is not one and only one rule.
    Rules: http://css-tricks.com/centering-css-complete-guide/
    I don't see your animation, i cannot tell you the right rule.
    Can you post your file or a sample ?

  • How to import SWF to stage???

    Hello everyone
    I have been trying to import a SWF file to the timeline but when I do its a white box, and even when I import to library..same thing, its a white box..Can someone help me??

    use the following, click your img1 button once, then copy and paste the trace output (if there is any) here:
    in frame 1 of the main swf that loads A1.swf put and don't replay this frame:
    function f(e:Event):void{
    img1.visible=true;
    img1.addEventListener(MouseEvent.CLICK, ff);
    function ff(event:MouseEvent):void
    trace(event);
    MovieClip(my_loader.content).gotoAndPlay(2);
    img1.visible=false;
    var my_loader:Loader = new Loader();
    my_loader.contentLoaderInfo.addEventListener(Event.COMPLETE,f);
    my_loader.load(new URLRequest("A1.swf"));
    addChild(my_loader);
    in frame 1 of A1.swf, put:
    stop();
    trace(1);
    in frame 2 of A1.swf, put
    trace(2);

Maybe you are looking for

  • Itunes 11.4 will not sync any music

    Itunes 11.4 will not sync any music to iPad 2 mini or iPhone 3GS after upgrade. I have tried a full restore and hard resets on the iPhone. I have tried multiple combinations of checking and unchecking the boxed related to transfers and automatic sync

  • Purchasing an iPad from Craig's list

    IS warranty valid when purchasing an iPad from Craig's list?

  • Cannot add song to touch? Stated it could not be updated.

    Two songs on my son's touch did not play completely, so I deleted them from the touch and then added them to his touch. One song works perfectly the other I cannot even get the touch to sync the song. After turning off the touch, computer, and changi

  • TAB_CELLS substitution problem

    Hi, We've created our own page template with one level tab. Everything on our own site works fine, except the substitution of #TAB_CELLS#. I've created an example only for the #TAB_CELLS# issue: http://apex.oracle.com/pls/otn/f?p=47952:1 I want to cr

  • "group by" more than two columns achieved, but now how to use it

    Hi, I have a list where I had to group by items to 3 levels(grouping 3 columns). Since it is not possible OOB, I tried this and now I've achieved this. However, since after I did all these changes, this is no longer a view. And I want it to be availa