Accordion labels won't display - SECOND POST

Hi All,
When I create a swf with an accordion component it works just
fine. When I import that swf into another movie the labels won't
display. I have also tried resetting the label using
myAccordion.getHeaderAt(index).label = "Blah"; or createChild();
with no success.
Am I missing something fundamental?
Dave

Laverda668 wrote:
> Hi All,
>
> When I create a swf with an accordion component it works
just fine. When I
> import that swf into another movie the labels won't
display. I have also tried
> resetting the label using
myAccordion.getHeaderAt(index).label = "Blah"; or
> createChild(); with no success.
>
> Am I missing something fundamental?
The component is build in run time once the file is running.
By putting it into movie clip you automatically mess up all
the paths in the file
as by loading in clip the file will share root with the host
movie.
You can either load it in level or try to lock root.
Check help files for "_lockroot" for details on the usage.
Best Regards
Urami
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • ATI Radeon 4870 won't detect second display

    ATI Radeon 4870 won't detect second display I have a sony that come up as a sdm-hs95p and a asus that i want to connect they both have vga and both have conveters vga to dvi and on the asus it also has a dvi to mini dp because on the graphics card it has dvi and mini dp

    You can't use more than one converter per display.
    You need to get single converter that connects directly from the Mac port to the display.

  • Poster image won't display over slideshow

    Trying to place a simple poster image over a slideshow in an article. This works for me over a pan & zoom image and over a video image. Why won't it work over a slideshow in the same way?

    The poster is just an image, not an overlay. You don't apply the "Hide Before Playing" option to the poster. You apply it to the MSO. That way, the MSO sits behind the poster until you tap the poster. Then the MSO moves to the front and stays there until you navigate away from the page.
    Note that the slideshow poster doesn't work the same as a poster used for an image sequence or image pan. Double-tapping the slideshow re-displays the poster with image sequences and image pans, but not for the slideshow.

  • JPG won't display in Image box.

    Trying to add a logo in JPG format to the top of the form using the Image control, but it won't display the image nor print it. If I use a GIF file it works fine, but looks horrible. I'm new at this, any ideas?

    I finally figured it out after posting another frustrating comment to this thread. I can't take the credit, however, as it was quickly solved by Irv Kanode in another thread. I have copied his exact post below. It solved this issue in seconds:
    ADOBE SUPPORT REPLY:
    Irv Kanode - 4:15pm May 5, 06 PST (#1 of 2)
    Check some of your JPEGs for CMYK vs RGB.
    Might the ones that fail be CMYK and the ones that work be RGB?
    When images don't work are you seeing a broken image icon or...?
    Irv
    Adobe Support
    USER FOLLOWUP TO ADOBE SUPPORT SUGGESTION:
    Kurt Wedberg - 5:27pm May 5, 06 PST (#2 of 2)
    Irv,
    Thanks for the reply. The images that didn't work were CMYK. When I converted to RGB they worked.
    The images that didn't work were coming up with random grey scale colors.
    Thanks again,
    Kurt
    Hope this helps everyone!

  • Noise reduction won't display properly in LR 3.4.1 Develop Module

    I encountered this issue first time last night - noise reduction will not show in "Fit" view of the Develop module for pictures that have a graduated filter applied as well. Having said this,
    - The pictures display correctly in Library Loupe view (Fit and 100%)
    - The pictures display correctly in Develop module when zooming in to 100%
    - The pictures display correctly in Develop module when clicking in history on Luminance smoothing (first picture). Selecting the next step in the history, Add Graduated Filter, displays the picture without noise reduction (second picture - I tried on a virtual copy the other way round - first have a graduated filter and then apply noise reduction, but doesn't work either. Noise reduction just won't display in Develop module / Fit View once a graduated filter is applied as well.
    Has anyone else seen this behaviour or, even better, found a solution? I already tried purging the raw cache, no success. Working on Windows 7 / 64bit.
    Thanks,
    Andreas

    Jeff, I had difficulty understanding this same issue as presented at the link I posted above. With my low-noise Canon DSLR RAW images I simply couldn't see the onscreen rendering issues they were talking about. It even appeared this might be unique to Mac platforms and Windows 32 bit OS, since my Windows 7 64bit system didn't appear to have this issue.
    Following suggestions to shoot a picture at -4 F stops and then increase exposure by +4 F stops in LR helped me get a better understanding:
    http://forums.adobe.com/message/3857767#3857767
    Granted this is an extreme shooting situation, but it helps demonstrate what happens when using exposure, fill and HSL sliders to increase exposure significantly (+2 to +4 EV) in specific areas of the image. Now you have noise that will be visible in smaller exported scaled images, perhaps even those sized for posting to the web.
    The issue is at lower ISO settings (camera specific), view sizes less than 1:1 have no noise reduction applied (Mac & Windows) or sharpening applied (Mac & Windows 32). There appear to be platform differences in the way sharpening is applied, because on my Windows 7 64bit system sharpening is applied at all ISO and all view sizes including "fit" view, but noise reduction is only applied at higher ISO settings – the same as all others have described. I wanted to point this out since it is one of the reason I had difficulty duplicating what the OP was seeing.
    We know sharpness and noise reduction settings interact with each other, so it is important to have both applied in the onscreen image to determine their affect. Using images with additive Exposure, Fill and HSL slider settings approaching +2 to +4 EV, there is simply no way to see accurate rendering without both noise reduction and sharpness applied at all view sizes, including “fit” view. This can occur with low ISO images, not just at some predetermined camera specific high ISO where noise becomes predominant.

  • Parts of applet won't display until later

    I have this very simple applet (a clock) and everything is working the way is should except that the image of my clock won't display until I press one of the buttons.
    here's part of the code:
    public class horlogeVue extends JApplet{
    public void init(){
    Container c = getContentPane();
    c.setLayout(new FlowLayout());
         hourPlus = new JButton("h+");
    ... (more buttons)
    hour = new JLabel("heure");
    minute = new JLabel("minute");
    seconde = new JLabel("seconde");
    c.add(hour);
    hModele = new horlogeModele(this);
    hControle = new horlogeControle(hModele);
    hourPlus.addActionListener(hControle.new hourP());
    public void display(int timeH, int timeM, int timeS){
    time = "heure="+timeH+", minute="+timeM+", seconde="+timeS;
    repaint();
    public void paint(Graphics g){
    super.paint(g);
    g.drawString(time, 100, 75);
    g.drawArc(xcenter-50, ycenter-50, 100, 100, 0, 360);
    g.drawString("9", xcenter-45, ycenter+3);
    g.drawString("3", xcenter+40, ycenter+3);
    g.drawString("12", xcenter-5, ycenter-37);
    g.drawString("6", xcenter-3, ycenter+45);
    xs = (int) (Math.cos(timeS * Math.PI / 30 - Math.PI / 2) * 45 + xcenter);
    ys = (int) (Math.sin(timeS * Math.PI / 30 - Math.PI / 2) * 45 + ycenter);
    xm = (int) (Math.cos(timeM * Math.PI / 30 - Math.PI / 2) * 40 + xcenter);
    ym = (int) (Math.sin(timeM * Math.PI / 30 - Math.PI / 2) * 40 + ycenter);
    xh = (int) (Math.cos((timeH *30 + timeM / 2) * Math.PI / 180 - Math.PI / 2) * 30 + xcenter);
    yh = (int) (Math.sin((timeH *30 + timeM / 2) * Math.PI / 180 - Math.PI / 2) * 30 + ycenter);
    g.drawLine(xcenter, ycenter, xh, yh);
    g.drawLine(xcenter, ycenter, xm, ym);
    g.drawLine(xcenter, ycenter, xs, ys);
    So, yeah, basically how do I display all the stuff in paint as soon as I open my applet?

    To get best help with any problem, I recommend posting an SSCCE rather than 'part of the code'.
    <http://www.physci.org/codes/sscce.html>
    Also, when posting code, using a little indent and [src][src] elements around it (where you would change 'src' to 'code' to show any text between the two as formatted source code) makes it a lot more readable as well.
    But as a general comment on the code. It is not usually a good idea to override the paint() of a root level component, I would recommend a JComponent/JPanel instead.
    The JPanel(JComponent) can then be used in the JApplet, JFrame, JDialog, JOptionPane, JWindow.. as needed.

  • Difficulty using a projector. I have a MBP 17" and am running 10.6.8. Often I need to make a Powerpoint or other presentation  at a client and I want to connect my computer to their projector. Either it won't display on the projector at all. HELP!

    Difficulty using a projector. I have a MBP 17" and am running 10.6.8. Often I need to make a Powerpoint or other presentation  at a client and I want to connect my computer to their projector. Either it won't display on the projector at all. Once it displayed but the presentation mode was on the big screen and the presentation I wanted to show was on my MBP screen. I have the adapter( white ones) to attached to the projector cables.  I am so frsutrated...it looks so silly not to have a computer work during a presentation..
    Another problem one the rare occasion that it shows on the screen is that the presentation does show just my desk top.  Any ideas?
    Thanks !

    You often have to turn off Mirroring to be able to set the second "screen"s resolution to something reasonable. When you do, the two screens become an "Exceeded Desktop" joined along one edge, and the Arrange pane in displays prefs can allow you to specify what edge. Initially, it will show a vacant extension of the built-in screen's desktop.
    The mouse moves freely across that shared edge, and can allow you to drag the presentation window across to the the projector screen and re-size it to fit.

  • Database field won't display

    I'm new to Crystal Reports in .NET but I do have my 1st report working except for one field that I'm trying to use in a sub report.  It's in my database fields just like the other field for the sub report.  I can see data for both fields in the Browse Data.  One field and it's heading display just fine but I can't see the other one anywhere.  The field heading that's created when I drag it into the Detail area won't display in the report either.  I've tried deleting the field and readding it but nothing helps.  As far as I know I've done nothing to suppress this field from printing.  I REALLY need to get this working.  Thanks for your help.

    Hello Paul,
    I recommend to post this query to the [.NET Development - Crystal Reports|SAP Crystal Reports, version for Visual Studio; forum.
    That forum is monitored by qualified technicians and you will get a faster response there.
    Also, all Crystal Reports .NET Development queries remain in one place and thus can
    be easily searched in one place.
    Thanks a lot,
    Falk

  • HP Photosmart Plus B210a all-in-one won't display any networks in the list.

    Hi, I recently purchased a HP Photosmart Plus all in one printer and I've been having trouble with it from day one.
    First off, it won't connect wirelessly.
    It won't display any networks in the list when searched for, it won't take my network details when I manually input them and it won't take any static IP address I've tried from other suggestions.
    Secondly, the print quality is very bad. Streaks and fading are occuring and after using up 70% of my ink trying to sort it out through troubleshooting it's still bad.
    It's extremely important for me to be able to have web access using the printer as all members of my household use it and it'll get fustrating having to car laptops and computers around to print.
    Can anybody help at all?

    Top line says "The wireless radio is not functioning. Contact HP support"
    I take this as a very bad sign and needs replacing?
    The tests I done produce streaks, fading and lines. I printed off two photos, one from a memory card and one from a scan. The memory card produced heavy blocked lines of color and the scan was just dull.
    I'm using a Wanadoo Wireless Livebox and Windows 7 64 Bit
    One other question... is this like a brilliant printer for photos mainly? I'm a Graphics design student and although my final prints are made from home I would like accurate and decent printouts for my portfolios. Should I keep this or go for another one with similar features and better print quality?

  • My emails won't display on right hand side of iPad sceen

    Emails won't display their content on the right had side of screen on my iPad , gmail

    Quit the app completely. Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the mail app icon. Tap the home button or anywhere above the task bar. Try mail again.
    If that doesn't work - Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Hp 110-a04 won't display video when my 5670 is plugged in.

    So here's the dealio. Bought a myself an hp 110-a04, threw in the sapphire 5670, doesn't display anything and I get a 6 long beeps beep code. Kill me.
    So, I take out the original PSU (it's only 180 watts), throw in a 400 watt power supply,  toss in the GPU aaaaannnnnnd... still won't display anything and the beep code is back (in the old PC it was in worked fine with the 250 watt psu).
    The computer works perfectly fine without the card, boots up, actaully displays stuff when plugged by VGA. Why it won't display anything is absolutely beyond me. Everything is hooked up to the new PSU, it's just that nothing works with that graphics card in.
    Halp me.

    Hello @HAIRSHAMENSTUFF,
    I understand that you are having issues getting the sapphire 5670 to work with your HP 110-a04 Desktop PC. I suspect that you will have to enable legacy devices in your BIOS. Unfortunately, I do not have access to the BIOS for your computer to provide you with step by step instructions, but if you tap F10 on startup and enter the BIOS you can browse through until you find a way of enabling legacy support or mode.
    I hope this helps. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Safari won't display pdf in browser

    Posted before in wrong forum.
    I am really sorry if this has been posted before, but I have been searching the forums and can't find an answer to it. I was also looking for the FAQ article about this that Apple says is an answer, but can't find that either.
    Anyway, using 10.4.11 and Safari 3.0.4. Safari won't display pdfs in the browser. It is gray with the Acrobat logo.
    I remember reading that the solution is to uninstall (delete) Safari and reinstall 3.0.4. However, I cannot find an install for 3.0.4 for Mac, and then do something with Acrobat. I am using 3.0.4 because it was part of a bundled OS update. I can't go back and downgrade my OS...
    What do I do?

    Hi,
    You probably won't have to reinstall Safari. Two things you can try. If you open Adobe Reader and go into the 'Internet' section of its preferences, you should be able to disable the browser plug-in. Some times that alone isn't enough, in which case, browse to HD/Library/Internet Plug-ins/ and move the Adobe plugin out of the folder. Restart Safari for the changes to take effect.
    Yang

  • Java 3D won't display anything

    Hi,
    I'm trying to get Java3D demos to run so I can begin developing a game. The problem is I get nothing but a blank white square the size of the intended 3D display. Everything I've tried (the list is long) has had no effect. When attempted through a DOS window I get an endless repeating list of : "wglCreateContext Failed: the pixel format is invalid".
    The updated drivers for the ATI radeon 9000 pro (all in wonder) shows openGL (classic) is active but nothing 3D is displayed, everything else in Java (2d, swing components, etc.) all displays normally. I've updated DirextX and tried reinstalling Java3D for that format but no change. I'm not familiar with any 3D graphics programming (yet) and it's difficult to understand what won't display. I have posted a bug report with Sun after searching for similar bugs, but all related bugs just show "closed: fixed". Has anyone had this problem or have any clue what I might try (other than waiting) to resolve this issue? Thanks,
    Jerromy

    There are known issues with ATI drivers and java 3D that cause behavior like this. I don`t use direct-X so I can`t sugget anything, except to search the forums at http://forums.java.net/jive/forum.jspa?forumID=70
    to see if your ATI card has a workaround
    regards

  • I have a 5th gen that won't display any video out

    I have a 5th gen that won't display any video out. I've tried 2 different splitter cables out of the earphone jack. I've tried plugging the RCA cables into different colors on the tv. Thought it was just a problem with the cables until tonight when I got a Sonic Impact V55. Video won't display on it either. I have the TV setting to ask. After it asks and I say yes, I get a picture of an Ipod cable connector and a message saying: TV OUT
    ENABLED Please Connect Video Accessory.
    This message happens on both splitter cables and using the dock connection on the V55. I've restored, reset, nothing has helped.
    I did see a couple of posts regarding the V55 and whether the 5th gen would work on it. Does anyone have a v55 that the ipods working with? Heck the box says it works with Ipod 5th gen.

    Playercoca wrote:
    The video out on an iPod does not go trough the earphonesjack.
    It goes trough the place where you put youre dock conector in (on the bottom)
    Yes it does, on the 5th generation (pre-Classic) models, the video does indeed feed out the headphone jack (as well as out the dock connector on the bottom).
    Patrick

  • Webhelp topics won't display on servername with multiple hyphens

    Hi
    I have several webhelp topics generate with RoboHelp 8 whose html topics won't display when launched from servers whose hostnames contain more than one hyphen. We have multiple servers in the test environment. The servers with zero or one hyphens can launch the help project or individual topics with not problem. The servers with two or more hyphens can launch the project and display the nav pane, but the topics show a File Not Found error. The topics also show this error when launched independent of the frameset. Can anyone help?

    William,
    I have gone thru my project now and, as I stated in my May 1 mail to you, I have made duplicates of all of the "bad" topics and all of these new topics are now displaying correctly.
    Now I have a related, but different issue.
    Only one topic is causing that same error msg to display (refer to my original April 27 post: IE script error/syntax error; Line 13, character 1).
    The only topic that throws that error msg is the initial topic that displays when the .chm file is opened (i.e., the topic that is specified as the "Default Topic" in the HTML Help Options window when I click the Generate Layout button in the SSL pod.)
    Furthermore, the topic that throws the error message will only do so if it is the one specified as the Default Topic.
    As an example, if I have the topic Apple specified as the Default Topic, when the .chm file is opened the error msg window will display; when the user clicks either Yes or No to the "Do you want to continue running scripts?" query, the Apple topic will display normally. Each time that topic is selected it will throw the same error msg. window.
    If I go back to my project in RH and change the Default Topic to the Pear topic, re-compile the project, when the .chm file is opened the error msg will display; when you click Yes/No the Pear topic will display normally (until it's selected again). The Apple topic now displays fine at all times.
    This tells me that the problem seems not to be with the Apple topic, as I'd suspected, but with something that's going on with RH and how it displays the initial topic in a compiled project. I think.
    Any ideas on how I can remedy this issue?
    Thanks in advance.
    Dennis

Maybe you are looking for

  • How can i get my itunes libary from my old computer that i dont have access to anymore

    i downloaded itunes to my netbook and i cant figure out how to get my old libary from when i got my iphone 4 and synced it to a labtop that i dont have access to anymore

  • Home sharing no longer shows up on my macbook pro iTunes.

    Home sharing no longer shows up on my macbook pro iTunes. Our main computer is a Dell desktop that is authorized for home sharing. My macbook has also turned on home sharing, but the home computer does not show up. How exactly does home sharing work?

  • TS4268 iMessaging NOT working.  Please help

    Updated my 4s and now I can't get my iMessaging or FaceTime to work.  I keep getting an error reading, "Could not sign in.  Please check your network connection and try again."  My connection is fine... I think.  I don't seem to have trouble connecti

  • DVD Super Drive copying slowly

    Hi, can anyone help... my superdrive on a MBP C2D is copying data from DVD's very slowly. I'm trying to copy video TS folders from DVD's onto my desktop and it takes roughly an hour to copy 4gigs. That seems very slow. Message was edited by: Reelsick

  • InDesign Japanese to InDesign English

    Are there any issues that would prevent a file created in InDesign CS 4 (Japanese) file from being opened in InDesign CS 5 (US version)?  We have a client that has asked us to create a file in Japanese and then to outline the fonts and send them the