Combobox component - no text?

Hi all -
I'm a relative Flash newbie. I have CS4 on two Mac's. On one, I drop a combobox onto the stage and add some items to it, and it renders fine. On the other, I do the exact same thing, and I get the control with the proper number of dropdown slots, but no text. If I copy the SWF from the working machine to the non-working machine, it stops working. Likewise, the SWF authored on the non-working machine is fine when copied to the other machine.
The working machine has Leopard and no other Adobe products. The non-working machine has Snow Leopard and Photoshop CS4 on it as well.
This feels like a font problem, but the font mapper dialog doesn't show any fonts as missing and needing replacement. All of the other components I've tried (list and button) suffer the same problem.
Anyone have any advice on how to debug this?
Thanks!!!

Text messaging as in SMS/MMS is exchanged over a cell phone carrier's cellular network only, not wi-fi.
Apple's iMessage is similar to exchanging email - an internet connection is required via an available wi-fi network or cellular network or internet connection.

Similar Messages

  • Adding images/icons to items in combobox component

    hi
    is it possible to add icons to each entry in a combobox
    component drop down list? i'm not even sure if this is possible in
    html, but i've had a client ask me to do it in flash...it'd be
    great to know if it's even within the realm of possibility.
    if so, any pointers on how to accomplish it? preferably via
    an external text/xml file
    thx!

    i think it is not possible directly on the other hand i
    assume it can be done through using the cellRenderer API... maybe.
    adam

  • Creating A Class For A ComboBox Component

    I have a comboBox component that I would like to create a
    class for. But I am not sure if I could. I see how you can use the
    Linkage window to assign an AS 2.0 Class to a movie clip, but I do
    not see that same option for a comboBox component.
    It has all of the basic combo box things that I would like to
    seperate out into it's own class if possible
    If anyone could give me a few tips, or better yet, point me
    to a few good tutorials, that would be great.
    Thanks
    Mathias

    I have a comboBox component that I would like to create a
    class for. But I am not sure if I could. I see how you can use the
    Linkage window to assign an AS 2.0 Class to a movie clip, but I do
    not see that same option for a comboBox component.
    It has all of the basic combo box things that I would like to
    seperate out into it's own class if possible
    If anyone could give me a few tips, or better yet, point me
    to a few good tutorials, that would be great.
    Thanks
    Mathias

  • Custom Font On Individual Row Items In A ComboBox Component

    Hello everyone,
    I am new to flash and I have spent many hours trying to get a
    particular piece of functionality to work. I am trying to create a
    combobox where the items listed in the combobox are font names and
    each item will display using the font of the item label. For
    instance, one item label in the list is "New Times Roman" and I
    want that particular row in the combobox to have the text AND font
    of "New Times Roman". For some reason, inside of my custom
    CellRenderer class, I cannot seem to find a way to get the item
    label that corresponds to the CellRenderer and the
    CellRenderer.data item always appears to be null!
    Please help. Thank you in advance for any help you can
    provide.
    This is the code I am currently using:
    //From the main class, I am creating an instance of the
    CustomizableComboBox and adding in the font names I am interested
    in.
    var comboFont:CustomizableComboBox=new
    CustomizableComboBox();
    comboFont.width=200;
    comboFont.height=30;
    comboFont.addItem({label:"Arial", data:"Arial"});
    comboFont.addItem({label:"Times New Roman", data:"Times New
    Roman"});
    comboFont.addItem({label:"Tahoma", data:"Tahoma"});
    comboFont.addItem({label:"Verda", data:"Verda"});
    comboFont.addItem({label:"Wide Latin", data:"Wide Latin"});
    comboFont.addItem({label:"Monotype Corsiva", data:"Monotype
    Corsiva"});
    comboFont.addItem({label:"Trebuchet MS", data:"Trebuchet
    MS"});
    comboFont.addItem({label:"Alba", data:"Alba"});
    comboFont.addItem({label:"Arial Black", data:"Arial Black"});
    comboFont.selectedIndex=1;//Times New Roman by default.
    addChild(comboFont);
    //In the CustomComboBox.as file, I have the CustomComboBox
    class defined as:
    package {
    import fl.controls.ComboBox;
    import flash.text.TextFormat;
    import flash.events.Event;
    public class CustomizableComboBox extends ComboBox{
    public function CustomizableComboBox(){
    super();
    dropdown.setStyle("cellRenderer",CustomCellRenderer);
    addEventListener(Event.CHANGE,changeIndex);
    //Changes the text displayed as the currently selected item
    with its corresponding font.
    private function changeIndex(event:Event):void {
    var fontName:String=selectedItem.label;
    var format:TextFormat=new TextFormat(fontName,16);
    setStyle("textFormat",format);
    //Finally, in the CustomCellRederer.as file, I have defined
    the CustomCellRenderer class as:
    package{
    import fl.controls.listClasses.CellRenderer;
    import flash.text.TextFormat;
    import fl.controls.ComboBox;
    public class CustomCellRenderer extends CellRenderer{
    public function CustomCellRenderer(){
    //The trace will show that the data for the custom
    cellrenderer is always null!!!
    trace('custom cell data = '+data);
    //If I could just get the item label corresponding to the
    CellRenderer for this
    //cell, then I could set the font as I desire.
    var fontName:String="Wide Latin";
    var format:TextFormat = new TextFormat(fontName,16);
    setStyle("textFormat", format);
    }

    Oh, sorry. I see now what you want to do. Hmmm...
    I cannot find any references to the class that defines each
    item in the box. Off the top of my head what I would do (besides
    writing my own combobox :-) - I would add some event listener with
    capture set to true that would listen to the input text field
    change Event.CHANGE and set ComboBox.editable = true. So, when you
    type something in the item - it will dispatch event. By reading
    Event.target, you may figure out what object is the TextField you
    want to chage the style for. After that it may be possible just to
    change style for each individual item's TextField.
    myComboBox.editable = true;
    myComboBox.addEventListener(Event.CHANGE, changeHandler);
    private function changeHandler(e:Event):void{
    trace(e.target + " : " + e.currentTarget);
    Just a thought...

  • Default Production Order Component Long Text

    Dear guru ,
    Whose are the defaults for production order component long text ?
    Can I copy this text only from bom ?
    Can I copy this text also from material master ?
    Thanks

    Hi,
    The defaults are from the BOM item text 1 & 2. POTX1 & POTX2 fields.
    I suppose no option from material master.
    Hope this helps
    Regards
    Raju

  • Actionscript for the ComboBox Component

    I'm trying to write a basic script for the ComboBox Component
    that opens a URL when the user clicks on one of the labels in the
    drop down menu. I know how to do this with regular instances, but
    how can I do this with this component? I'm hoping that I'll be able
    to make each label lead to a different URL.
    Any help is appreciated.
    Thanks

    Frank,
    My declarative component is dropped on my jsff. In this pages i have dropped a af:messages as well.
    There is a small button in my component on which i have bound an action listner.
    In the action listener i have a validation on the failure condition of which i have the code like:
    if(bean == null || bean.isAuthenticated() == false){
    FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, null, "You must be logged in to vote up");
    FacesContext context = FacesContext.getCurrentInstance();
    context.addMessage(getVotingQuesComponent().getClientId(context), msg);
    AdfFacesContext.getCurrentInstance().addPartialTarget(getVotingQuesComponent());
    return;
    So, i m sure my flow is going in this part of code but i dont see the message coming up marking my declarative component.
    However, if i replace this message by a page level error message then that comes up fine.

  • UIScrollBar component dynamic text capital letter Y not appearing

    I'm using the UIScrollBar component, dynamic text is my setting.  When I view the swf or exe, all my text appears except for capital letter Y, it appears in flash, but not the swf or exe file.
    Any reason why this happens?
    Any help is appreciated.

    I finally found the answer but this scenario doesn't make
    sense. It seems you have to create a dynamic text field with a
    scrollbar during runtime through actionscript, rather then creating
    the text field and scrollbar in design mode. Here is the code that
    worked:
    import fl.controls.UIScrollBar;
    var myTxt:TextField = new TextField();
    myTxt.background = true;
    myTxt.backgroundColor = 0xFFFFFF;
    myTxt.border = true;
    myTxt.wordWrap = true;
    myTxt.width = 200;
    myTxt.height = 200;
    myTxt.x = 22;
    myTxt.y = 75;
    var mySb:UIScrollBar = new UIScrollBar();
    mySb.direction = "vertical";
    // Size it to match the text field.
    mySb.setSize(myTxt.width, myTxt.height);
    // Move it immediately right the text field.
    mySb.move(myTxt.x + myTxt.width, myTxt.y);
    // put them on the Stage
    addChild(myTxt);
    addChild(mySb);
    // load text
    var loader:URLLoader = new URLLoader();
    var request:URLRequest = new URLRequest("breakroomText.txt");
    loader.load(request);
    loader.addEventListener(Event.COMPLETE, loadcomplete);
    function loadcomplete(event:Event) {
    // move loaded text to text field
    myTxt.htmlText = loader.data;
    // Set myTxt as target for scroll bar.
    mySb.scrollTarget = myTxt;

  • How can a button in a component change text in main

    I have created a new component and moved a combobox from the main app to this component. In the main app I’ve include the component and it works marvelous. Also in the main app I have a label id="myLabel”. Now I want to change the text from myLabel when the combobox change (close event).
    How can I allow e.g. the combobox in the new component to change something in the main app. It only works visaversa. (Of course I know that this is not the best practice, but I’m just wondering while testing)

    Technically this answer is correct, but for most scenarios it is wrong. You should not have your components change properties in their parent components, since this creates a tight coupling making re-use difficult or impossible.
    The appropriate way to do this is to use events. A component emits an event and someone listens for this event and the text in the parent changes as a result of the event.

  • Why does PrintJob clears ComboBox component?

    I am building an on-line form with several text input
    component boxes and a couple combo boxes. I have an option at the
    bottom of the screen to print out a copy of the form. The problem
    is when the print button is pushed, it prints the content, but then
    empties form components completely. It even wipes out the content
    of the ComboBox so there's nothing displayed. I need to reuse the
    form without refreshing or reloading after every print. Why does it
    do this and how can I stop it?

    You need both a renderer and an editor. The renderer draws the cell when it's not being edited and the editor gets put in the table (by the table) when you go to edit the cell.

  • Problem with text direction in table component for text with two language!

    Hi,
    I want to display text in table component by binding to the one property,and also the language of this text is farsi that must be in the RTL direction.
    so i defined a direction in style of staticText component in the table.
    when the text is only in farsi language ,it works correct but when the text has one or more words in english language ,format of the text changed and the words moved in text.
    thanks

    I can not understand relation between COM and HTML elements .
    can you elaborate more ?
    All HTML elements are accesable via DOM in browsers.
    Indeed to change an element attribute in html files (in browser without server interaction) we use scripts to access DOM tree and then we change the element attribute.
    for example when you write
    document.forms[1].submit()
    you accessing the element using DOM tree.
    About Farsi problem , I think there is no solution for this problem , as you may know , when we mix RTL and LTR languages in one element text attribute , we have no control over its appearance.
    If i understand your post , you want to show both rtl and ltr in one static Text , which is not doable in simple manner.
    At least i can not offer you a simple way to solve this.

  • Trouble skinning AS2 ComboBox component

    I'm using Flash CS3 and want to create a custom ComboBox. I've followed the steps outlined in "Editing component skins in a new document" (http://livedocs.adobe.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?cont ext=Flash_MX_2004&file=00002045.html#1120753), but every time I get to the step where I drag the ComboBox Assets folder from the HaloTheme.fla library into my library, if I test movie at that point my combobox has become an unclickable white rectangle with no label, button or anything. Am I doing something wrong? Any suggestions would be welcome.
    Thanks!

    start with a new fla and follow the directions.

  • Component Item text is not copying to PR (Item Text) if the PR is frm MD51

    Hi All,
    I am facing one problem in PR Item text.
    The issue is,when we attach a component to network activity,we have an option to maintain item text for the component.If the procurement type is PR+Reservation,we'll get PR no from CJ20N.System is displaying the item text in PR item detail "item text" tab.
    But if the component has procurement type isReservation for WBS Element & it has procurement indicator "F",then we'll run MRP for getting a PR no.This PR is not displaying the Item text in PR "Item text" tab.
    It has one configuration setting in MM i.e SPro>MM>Purchasing>PR>Texts for Purchase Requisitions.
    I have checked the config & its fine.
    So,if we are creating the PR for projects from MD51,then system is not displaying Item text in PR.
    If anybody came across this issue help me..
    Thanks a lot.
    suresh

    I am alsw waiting for a reply for the above question.
    guys,.....help me out
    anyone wants me, more explanation for the problem?
    regards
    surya
    Edited by: suryapampana on Dec 21, 2009 11:41 AM

  • File upload component and text area issue

    Hi guys,
    I have static text, text area and button on the same page. Text area binded to session bean value and all works fine (I can input text into text area and press button to save changes).
    After adding file upload component to the same page I have got a problem - now after page refreshing the non english characters inside text gets trashed.
    Other non english characters - inside static text components remains the same - the problem relates only to text area.
    It looks like file upload component code has an encoding related bug. Is that a known issue?
    And may be somebody have a workaround?
    Thanks.

    Hi Rom@n,
    I did some checking and this issue is currently logged as: 6442528. It is scheduled to be available in the next patch release. I'm sorry I don't have a time frame for the patch since it is still waiting for other fixes.
    Sorry for the inconvience.
    Lark
    Creator Team

  • Problems skinning/styling ComboBox component

    So the first image is the design brief, and below it is my attempt so far. Some ways to go, and the limitations and scarce documentation of this process is getting to me. So i'm putting a call out to see if anyone's well across this process and could assist, or step me through it?
    been a while since i skinned a component in AS2, and I remember I prefered to write my own components rather than go through this process at the time. but i am hoping to use the built-in Flash component this time.
    So what I need help with is:
    Adjust scrollbar scrubber and track width, hopefully add padding around scrubber, and hopefully this would resolve the issue of losing the scrubber's black border on the right.
    Resolve issues with the combo-button (what's that white border doing there?)
    Style font correctly in combo-button
    Increase list row height
    Add dotted line between list rows
    (I'm ignoring the blue numbers)
    If anyone can help with even just one of those issues, i'd love to hear from you.
    Info about my attempt so far:
    I have skinned several clips, such as scrollThumb*, scrollUpArrow*, scrollDownArrow*, comboDownArrow*, etc.
    I have styled with the following:
    comboBox.setStyle("backgroundColor", 0x504C4B);
    comboBox.dropdown.setStyle("backgroundColor", 0x504C4B);
    comboBox.setStyle("themeColor", 0x1F90AE);
    comboBox.setStyle("color", 0xC4C0BF);
    comboBox.setStyle("textSelectedColor", 0xC4C0BF);
    comboBox.setStyle("textRollOverColor", 0xC4C0BF);
    comboBox.setStyle("alternatingRowColors", [0x504C4B, 0x504C4B]);
    comboBox.setStyle("borderStyle", 'none');
    I have attached the fla I've worked with so far in a zip.
    Thanks for your help!

    Well I resolved this merely by lowering my expectations!
    Leaving this unanswered because I am hoping there must be answers to these issues out there for future reference.
    But for now, my comboBox looks like this:
    And i achieve this by skinning some clips, and adjusting my styling code:
    combo.setStyle("backgroundColor", 0x504C4B);
    combo.dropdown.setStyle("backgroundColor", 0x504C4B);
    combo.setStyle("themeColor", 0x1F90AE);
    combo.setStyle("rollOverColor", 0x46bbda);
    combo.setStyle("color", 0xC4C0BF);
    combo.setStyle("textSelectedColor", 0xFFFFFF);
    combo.setStyle("textRollOverColor", 0xFFFFFF);
    combo.setStyle("alternatingRowColors", [0x504C4B, 0x504C4B]);
    combo.setStyle("borderStyle", 'none');
    combo.text_mc.setStyle("borderStyle","none");
    combo.text_mc.setStyle("themeColor", 0x00FF99);
    combo.text_mc.setStyle("borderColor",0xFFFFFF);
    combo.text_mc.setStyle("color",0xC4C0BF);
    combo.dropdown.setStyle("color",0xC4C0BF);

  • ComboBox  over HTML text shows link

    I have a ComboBox that opens over an HTML text field. The
    HTML text field contains html text as links i.e. "<a href="">
    etc which change colour on rollOver. Rolling over a link in the
    open ComboBox also triggers the rollOver on the underlying html
    text!
    It's as if the ComboBox is transparent, but I can't get it's
    background to be solid so as not to trigger the rollovers
    underneath. BTW the html links do not respond in any way other than
    to the rollOver. They do not link anywhere if a mouse click happens
    in the ComboBox. If the box is closed however, they do link as
    designed, to other pages.

    The HTML_FORMAT was renamed to TEXT_FIELD_HTML_FORMAT to reflect the fact that it is specific to the htmlText property in TextField, not a general html implementation.
    This is working correctly for me:
                var _text:String = "<html><body><span>first line of text, <i>this is italic</i> and <a href='cnn.com'>a link to cnn</a>, 2nd line of text.</span></body></html>";
                var _flow:TextFlow = TextConverter.importToFlow( _text, TextConverter.TEXT_FIELD_HTML_FORMAT);
                _flow.fontLookup = FontLookup.DEVICE;
                _flow.renderingMode = RenderingMode.NORMAL;
                _flow.fontFamily = "Arial";
                var s:Sprite = new Sprite();
                s.x = 30;
                s.y = 30;
                _flow.flowComposer.addController(new ContainerController(s, 300, 500));
                _flow.flowComposer.updateAllControllers();
                addChild(s);

Maybe you are looking for

  • Hard drive crash/iTunes on External Hard Drive

    I have a 40GB iPOD with the flywheel. For years, I have been using an old laptop (Dell Inspiron 5000e with Windows 2000) essentially for iTunes/iPod only, using an external harddrive to hold my ~3500 songs. This week I added new songs and synched wit

  • Lighroom and Nikon NEF files

    I have some questions about Lightroom's handling of Nikon NEF files, specifically the parts of the NEF files that Nikon has decided it is a brilliant idea to encrypt. I am using a Nikon D200. How does Lightroom handle white balance in a NEF file? Has

  • Chinese Bookmarks not displayed correctly even if fonts are embedded in PDF

    We currently have a problem with Chinese PDFs containing bookmarks. All content is displayed correctly in PDF Reader, but the bookmarks are shown as squares, even though correct font (Sim Sun) is embedded in the PDF. Display results of bookmarks are

  • How to run process flow outside owner project?

    Hi, I have two process flows (process_flow_A and process_flow_B) in two different projects (projectA, projectB). Process_flow_A has to be run after process_flow_B is finished. So what I am thinking now is either put process_flow_A in Project B or put

  • Do i have to use .h files to call .dll files?

    Dear, Now i want to use labview to control an instrument. And the instrument company give their dll files. When i use tools---> import---->share library,labview tells me import .h file,but their are many .h files,you know you can just choose only one