Why can't I use this class inside my MovieClip?

Hi,
The attached SlideshowExample.as file works quite nice when I use it on stage directly. But when I tried to use it in Gallery_mc movie clip, it doesn't work, Please help me out in resolving this problem.
Sorry, I think there is no file attachment option here.
Thanks.

What you need to do is to attach this class "SlideshowExample" to your MovieClip symbol in the Library, then instantiate it and add it to the display list. (If you want to use the name "Gallery_mc" then you can rename the class to 'Gallery_mc".)
Kenneth Kawamoto
http://www.materiaprima.co.uk/

Similar Messages

  • HT2736 Why can't I use this feature with my iTunes balance?

    Why do I need to use a credit card in order to send an app as a gift, when I have plenty of money in my iTunes balance?

    Hi Elizabeth,
    Do your Mac meet any of these requirements?
    http://www.wvnet.edu/services/webct/requirements.html
    From this it appears to be PC only!???
    http://sourceforge.net/projects/awebctcclient/files/Pancake%20%28it%20own%20proj ect%20now%29/Pancake%20Console%20V1.0.0/PancakeConsole-1.0.0-src.zip/download
    Can you provide any more info on which bersion or file you have?
    Can you tell us why you need this for your use?

  • Why can't I use this file?

    A friend sent me a song he made in an MPEG4 format. There's no video though, just audio. I've got a regular "old" 40G click-wheel iPod, and iTunes won't let me store the file there, saying it "cannot be played by this iPod." I know my iPod can't play video, I don't care to play video, and I'm wondering why the darn thing won't just play the audio (iTunes itself will, though). Every other media program I have is perfectly fine with the fact that it only has audio. Is there a way around this, or am I just screwed if I want to take a video-less MP4 with me off of my computer?
    Sorry... don't have the funds to upgrade to a newer iPod, and I personally prefer more storage over having a fancy screen.

    Check the compatible formats.
    http://docs.info.apple.com/article.html?artnum=61476
    Also, if it's an AAC file, check you have the most recent software version for the iPod.

  • Why can't I use this Find string in the Mac version of Word?

    Dear all,
    I've found this macro of Paul Edstein:
    http://tinyurl.com/onypmay
    The macro works fine in Word for Windows, but in Word:mac I get an error for this line:
    .Text = "\<[!\>\<]{1,}\>"
    Why would that be?
    BTW: What exactly is Paul doing here?
    How to make this macro work in Word:mac 2011 too?
    Thanks!
    Hans

    Since Word is not an Apple product, I suggest you post on the Microsoft Mac forums since it's their software you have questions about:
    http://answers.microsoft.com/en-us/mac

  • Why can't i use messages with my apple id

    Every time i try to use messages or iCloud and i put my apple id in it trys to validate, then shows a message saying it cannot validate my apple id yet i can still log in to apple store and iTunes.  Why can't i use this apple id for messages?

    Try now. There was an Apple problem when you posted.

  • Hi, why can't I use the iMessage on my iPhone? I've already had my apple id email on it but it keeps saying "waiting for activation" always like that. No progress. Could anybody help me on this? Cheers

    Hi, why can't I use the iMessage on my iPhone? I've already had my apple id email on it but it keeps saying "waiting for activation" always like that. No progress. Could anybody help me on this? Cheers

    I have an old iPod Touch with old software that can no longer be updated:
    iOS version 6.1.6
    I've been searching for a solution to my iMessage login problem for months and tried everything from those frustrating links and all the tips from other users.
    Here is what finally worked:
    1) Settings > Privacy > Location Services > On
    2) Settings > General > Date & Time > Set Automatically > On
    3) Reboot device until Apple logo appears
    4) Settings > Messages > Sign In

  • Why can't I use PayPal with Family Sharing? Have a US Visa card but foreign address, and Apple does not seem to be able to cope with that (even though it is a multinational corporation). Could we lean on Apple to change this policy?

    Paypal for Family Sharing - Why can't I use PayPal with Family Sharing? Have a US Visa card but a foreign address, and Apple does not seem to be able to cope with that (even though it is a multinational corporation). So I set up payment with Paypal, and it worked fine. Now I want to take advantage of Family Sharing, but Apple won't allow it. Could we lean on Apple to change this policy?

    If you are not in the US then you cannot use the US store, the store's terms say that you have to be in a country to use it - if you are using the US store then you are risking having your account disabled.
    In terms of feedback for Apple : http://www.apple.com/feedback/

  • I want to change my primary email address, and use one already associated with my account why can I not do this ?, I want to change my primary email address, and use one already associated with my account why can I not do this ?

    I want to change my primary email address, and use one already associated with my account why can I not do this ?, I want to change my primary email address, and use one already associated with my account why can I not do this ?  I don't want to create another one if I really don't need to
    Any ideas ?

    I'm afraid that once an address has been associated with an Apple ID you can't re-use it in any way. You will have to create another address (such as a free on from GMail or Yahoo for example).

  • Why can't i use my pdf converter on this computer?

    why can't i use my pdf converter on this computer?

    Very hard to guess. What happens when you try, exactly? (Exactly includes all error messages in full, please).

  • HT2737 I understand this part but once it shows amount my account has why can I not use that to gift music.

    I understand this part but once it shows amount in my account why can I not use that amount shown to gift music?

    Apple doesn't allow that. They've never said why.
    (96758)

  • User-defined object problem,why can't I use?

    as follows:
    UObject.java
    package test1;
    public class UObject
    private String num;
    public UObject()
    public void setNum(String num)
    this.num=num;     
    public String getNum()
    return num;     
    Test.java
    package test1;
    public class Test
    public static void main(String args[])
    UObject U=new UObject();
    U.setNum("Squall");
    System.out.println(U.getNum());
    UObject[] U=new UObject[5];
    for(int i=0;i<U.length;i++)
    U.setNum(String.valueOf(i));     
    for(int i=0;i<U.length;i++)
    System.out.println(U[i].getNum());
    error:
    java.lang.NullPointerException
    why can't I use?please tell me why?thanks.
    ps:in Test.java's comments can run./**/.

    Please use code formatting tags in future! http://forum.java.sun.com/features.jsp#Formatting
    It would be easy to find the problem yourself if you printed out a stack trace e.g.
    public static void main(String args[])
    try
    UObject U=new UObject();
    U.setNum("Squall");
    System.out.println(U.getNum());
    UObject[] U=new UObject[5];
    for(int i=0;i<U.length;i++)
    U.setNum(String.valueOf(i)); 
    for(int i=0;i<U.length;i++)
    System.out.println(U.getNum());
    catch( Exception e )
    e.printStackTrace()
    }Tho code doesnt look lke it compiles to me!

  • Why can't we use iTunes gift cards with family sharing? After Christmas, we now have lots of account credit we can't use. Very frustrating.

    Why can't we use iTunes gift cards with family sharing? After Christmas, we now have lots of account credit we can't use. Very frustrating. There is no option found for using account credit.

    I just logged out of my daughter's account and back in, and now it works. Deducted from gift card account balance. So I hope this is resolved.

  • Why can't i use credit card on app store its money on it and its an visa card

    why can't i use credit card on app store its money on it and its an visa card

    Credit cards do need to be from the same country as your account, which may or may not apple, but if you're visiting from another country and trying to use, for example, a UK card in the US app store, it won't work.
    Could you have typo'd a number? Or could the card be expired?
    http://support.apple.com/kb/HT5552
    has more info on what's accepted.
    Is this a visa gift card? I seem to recall people having issues with credit card gift cards.

  • Why can't i use the radio on my nano 7g with bluetooth

    why can't i use the radio on my nano 7g with bluetooth. i wanted to use wireless feature at work but i only use the radio at work , so i bought bluetooth stereo headphones by plantronics, got the backbeat 903, at wal-mart  . got home got it all set up and works fine but not for radio , i'm so dissaponted and am thinking i might take them back and continue using the wire ware , but then again i like listening to my podcast while doing dishes and chores at home so the bluetooth would be better for that .

    i have sent a feedback form to apple about this problem . i hope that they work on a sulotion for it .

  • Why can't I use my iTunes card balance to given an app?

    Hi,
    I have a balance from an iTunes card. I just sent an app as a gift, but iTunes forced me to use my credit card. Why can't I use my balance?
    Thanx
    Olivier

    From the article from which you came:
    Note: When purchasing an iTunes Gift, a valid credit card must be on file; you can't purchase an iTunes Gift with store credit.
    Why Apple has this restriction I don't know, but many other download stores do as well.
    Regards.

Maybe you are looking for

  • Non-Cumulative Key figure with inflow & outflow

    I am using some non-cumulative key figure in our inventory cube, however, I could not find the non-cumulative field in E or F table of the cube? Is there a separate table to hold the reference unit. If so, what is the table name. Thanks.

  • Copy  of standard SAP MC1 Report

    Hi All, I copied the standard SAP MC1 report i.e. RMCB0100. In this report they show the data according to month for that they have select option o selection screen i.e. MONTH I want the report according to period. for that I replace the moth by peri

  • Related to reports

    hi all, this is my code... DATA:BEGIN OF itab OCCURS 0,      lifnr LIKE lfa1-lifnr,      name1 LIKE lfa1-name1,      END OF itab. TYPE-POOLS:slis. DATA:repid LIKE sy-repid. DATA:f_lfa11 TYPE slis_t_fieldcat_alv,      f_lfa1 TYPE slis_fieldcat_alv. re

  • Could u please help me with Mail RSS?

    Thank you..... So, I'm embarssed to say I'm not to clear on the RSS thingy, so, I know that it will update when a new entry from a blog is posted by the user, I've done that. But... When I'm on a web page and if they happen to have a RSS subscription

  • How to insert  Legacy data into QP_RLTD_MODIFIERS table?

    How to insert  Legacy data into QP_RLTD_MODIFIERS table in R12 instance.