ComboBox width issue

Hi:
I have a popup window of a fixed size which is used through out the application. This popup has a combobox of a set width. But the length of label data in the box is longer than the width so data is always hidden. for example, say  my combobox width is set to 250 but the label width in the combobox could sometime be 500. How do I display the full label with a larger width keeping the actual combobox width to 250?
Thanks in advance.
KM

Thanks a lot Flex HarUI for the quick and relevant reply. Appreciate it.

Similar Messages

  • ComboBox fullscreen issue

    Short version: ComboBox's dropdown works and renders  properly before fullscreen, but not during or after.
    I'm not  totally sure how to ask this, so I've actually made a page demonstrating the  error, with a very simple Flex app, and all three directions you  need to experience the problem yourself.
    For those of you not daring enough  to follow my link above, I'll do my best to explain here. I've built a  more extensive Flex application (not the one in the link) that has some  graphs and charts and checkboxes and other controls for those charts. At  the bottom of app in a few of the application States, there is a ComboBox.  Because this is at the very bottom, when you click it to access it's dropdown menu, Flex thoughtfully has it come out of the top.  Yay, Flex!
    This works  well until Fullscreen mode. Upon entering fullscreen, I scale everything  up with a stage.scaleMode = StageScaleMode.SHOW_ALL. Now when you  click on the ComboBox, the dropdown is astonishingly large, and  actually drops beneath the ComboBox, causing it to mostly disappear  off-screen. The best part is, once you exit fullscreen mode, the  dropdown insists on continuing to drop below the ComboBox, which is  positioned at the bottom of the app, and so continues to be cut off.
    Has anyone else run into this beast, stared into it's great maw, and come away victorious?  Am I doing fullscreen mode wrong?  Please help!
    You can get the source code via View Source from the Flash player in the link, and thank you so much for your time.

    Thanks for the prompt reply!
    Here is a link to my identical, but two week old post on the Flex forums: [Flex] ComboBox fullscreen issue.  I believe the answer to your question is "no".
    Additionally, I have filed a bug report under the Flash player category to this effect, as well as doppelganger posts on Stack Overflow and Flexcoders.  This is the first human response I've gotten on this issue to date, but I did earn an S.O. badge for having no responses for such an extended period of time.
    I posted here after this prolonged duration of nothing, and because I thought perhaps it wasn't an issue with the language, but rather the way it was rendered in the player.  I have no idea where I should be getting answers for this from, but the problem isn't going away on it's own or through my repeated attempts at a solution.  So if this helps me even get directed to the right place, I will be grateful.
    Thank you!

  • Spry Menu Bar 2.0 auto-width issues for sub items

    I am testing the spry menu bar 2.0 and it displays perfectly in IE 9.0/8.0 but the auto width is not working for Firefox (testing 3.6.16), Chrome (testing 10.0.648.205), or Safari for windows.  Content is being driven by PHP and MySQL.  This is the first time I have come across something working better in IE than the other browsers.  Great job on the IE patch script.  How do I get the other browsers to cooperate?  I moved the in page CSS generated by the widget browser to it's own CSS (called spry_menubar2_horizontal_sample_layout.css) and am including the files below in the head.  The links below point to an exact copy of the files as the working copy of the files is located elsewhere.
    SpryMenuBasic.css - link
    SpryMenuBasicSkin.css - link
    spry_menubar2_horizontal_sample_layout.css - link
    SpryDOMUtils.js - link
    SpryDOMEffects.js - link
    SpryWidget.js - link
    SpryMenu.js - link
    SpryMenuBarKeyNavigationPlugin.js  - link
    SpryMenuBarIEWorkaroundsPlugin.js - link
    the in page script is loacated directly under the <ul> lists.
    Similar example with php removed:
    <div id="navigation">
        <ul id="MenuBar">
          <li> <a href="http://www.videoonpointe.com/">Home</a> </li>
          <li> <a href="#">Gallery</a>
          <ul>
            <li> <a href="#">View Gallery</a></li>
            <li> <a href="#">Select Gallery</a>
              <ul>
            <li> <a href="#">Main Gallery</a>
              <ul>
                <li> <a href="#">a gallery</a></li>
            </ul>
            </li>
          </ul>
          </li>
            <li> <a href="#">Edit this Gallery</a></li>
            <li> <a href="#">Create Gallery</a> </li>
            <li> <a href="#"  onClick="return confirm('This action cannot be undone. Are you sure?');">Delete this Gallery</a></li>
          </ul>
          </li>
                <li> <a href="#">Photo</a>
              <ul>
                <li> <a href="#">Edit Photo</a> </li>
                <li> <a href="#"  onClick="return confirm('Deletion of this image cannot be undone. Are you sure?');">Delete Photo</a> </li>
                <li> <a href="#">Set as Gallery Thumbnail</a> </li>
                <li> <a href="#">Change Watermark</a> </li>
              </ul>
              </li>
          <li> <a href="#">Pricesheet</a>
            <ul>
              <li> <a href="#">Pricesheet Admin</a> </li>
        </ul>         
          </li>
       </ul>
    <script type="text/javascript">
      var MenuBar = new Spry.Widget.MenuBar2("#MenuBar", {
               widgetID: "MenuBar",
               widgetClass: "MenuBar  MenuBarLeftShrink",
               insertMenuBarBreak: true,
               mainMenuShowDelay: 100,
               mainMenuHideDelay: 200,
               subMenuShowDelay: 200,
               subMenuHideDelay: 200
    </script>
    </div>
    Has anyone encountered this issue before?  Any thoughts on how it can be fixed?  Thank you for your help.

    I am surprised no one has responded yet.  Surely someone has encountered this before.  Any thoughts?

  • Stage Height/Width Issue

    I am writing a piece of code that basically says if a certain MC reaches a ypos of -50 to perform a set of actions:
    EXAMPLE CODE
    if(balloon.clip.y <= topBounds)
                    //actions here
    But for some reason it wasn't recognizing when the MC would reach the specified ypos. I did a simple trace statement of the stage height and width because I suspected something was off with the script reading x and y positions. And sure enough the output of the trace did not correctly match what my actual stage size was set to in my fla.
    trace(stage.stageHeight); This traced 798
    trace(stage.stageWidth); This traced 1440
    While my actual stage is set to 550x400.
    Am I missing something here? I also traced the ypos of the moving MC and the trace output positions that were nowhere near the actual y positions of the MC as it moved. Ironically though, the external class file to this object recognizes the correct x and y positions when I call the function from the .as file. Only when I try to call the function from the fla file do I run into this issue of incorrect x and y positions.
    Any help? Thanks

    Below is my code for my as class file and the code being called from the stage within the fla file. The issue I am having is with the conditional statement in the fla code, I have highlighted it in bold and italics. The ypos of the MC is not registering at -50 when clearly the object has a y position of -50. Something seems messed up with the x and y positions of the clip on the stage because the y position traced to teh output panel is nowhere close to the actual y position of the clip on the stage as it moves.
    .as file code
    package
        import flash.display.Stage;
        import flash.display.*;
        import flash.display.DisplayObjectContainer;
         import flash.display.MovieClip;   
        import flash.utils.Timer;
        import flash.events.TimerEvent;
        import flash.events.Event;
            public class Balloon
                    public var clip: MovieClip;
                    public var xVel: Number = 0;
                    public var yVel: Number = 0;
                    public var upwardForce:    Number = 0; // applies to y value
                    public var shrink: Number = 1;
                    public var fade: Number = 0;
                    public var topBounds: Number = -50
                    public function Balloon(symbol:Class, target:DisplayObjectContainer, xpos:Number, ypos:Number, size:Number)
                            clip=new symbol();
                            target.addChild(clip);
                            clip.x = xpos;
                            clip.y = ypos;
                            clip.scaleX=clip.scaleY=size;
                        } // end Balloon constructor function
                    public function moveObject():void
                            clip.x += xVel;
                            clip.y += yVel;
                            yVel -= upwardForce;
                            clip.scaleX *= shrink;
                            clip.scaleY *= shrink;
                            clip.alpha -= fade;
                      }//end moveObject function
                    public function removeObject():void
                            clip.parent.removeChild(clip);
                        }// remove balloon from the stage
                } // end Balloon class
    }// end package
    code inside fla
    var balloonArray:Array = new Array();
    stage.addEventListener(Event.ENTER_FRAME, startBalloons)
    function startBalloons(evt:Event):void
            var balloon: Balloon; // referencing our Balloon Class
            for(var i:int=0; i<balloonArray.length; i++)
                    balloonArray[i].moveObject(); // calls moveObject function thats in the class file
            balloon = new Balloon(hotAirBalloon, this, randomRange(200, 400), randomRange(400, 550), randomRange(0.3, 1));
            balloon.xVel = -3; 
            balloon.yVel = -4;
            balloon.shrink = 0.9999;
            balloon.fade = 0.000011;
            balloon.upwardForce = .005
            balloonArray.push(balloon);
            if(balloonArray.length>randomRange(1, 5))//creates only 3 balloons and removes all others created from th array
                   balloon.removeObject();
        if(balloon.clip.y <= -50)
           trace("balloon has reached the top"
            var balloonTimer:Timer = new Timer(randomRange(25,45)*1000, 1);
            balloonTimer.addEventListener(TimerEvent.TIMER,timerFinished);
            balloonTimer.start();
            function timerFinished(event:TimerEvent):void
                        trace("time's up")
                        balloonTimer.stop();
                        balloon.clip.x = Math.random() * (400-200) + 200; // give random x pos to start from
                        balloon.clip.y = Math.random() * (1000-400) + 400; // give random y pos to start from
                        balloon.clip.scaleX = balloon.clip.scaleY = Math.random() * (1-0.3) + 0.3;
                        balloon.clip.alpha=1;
            } // end startBalloons function
        function randomRange(offset:Number, maxValue:Number) // generic function for randomizing object properties
                return Math.random() * (maxValue-offset) + offset

  • 100 percent width issue with smaller windows

    It took me many times to try and submit this, perhaps as the title had the percent sign? I kept getting the system errors and logging out automatically (see system error below) even though other similar posts have the % sign in the title.  So I am trying to view similar discussions, especially at https://forums.adobe.com/thread/1455954?q=100%%20width but my browsers won't let me read that page once I'm signed in.
    Anyway, I am having a similar issue in that when my window is made smaller (ie. a small laptop was browsing) until the horizontal scroll bar appears, after scrolling to the right many of my verified 100% width objects do NOT continue.  See homepage of htttp://www.STLcello.com for example (looks fine unless you force to a smaller window, than scroll to the right to see how the header and footer items don't continue even though they do.
    I'm hoping someone will have an answer to this or the other guy's question that this has been unanswered for months now!
    STL
    System Error
    We're sorry but a serious error has occurred in the system.
    Status Code: 500
    Exception Type:
    Error Message:
    Request URI: /adobe-logout.jspa
    Stack Trace:
    javax.servlet.ServletException: java.lang.IllegalArgumentException: URLDecoder: Illegal hex characters in escape (%) pattern - For input string: "%2"

    Hi Dandalo
    Unfortunately this is not possible with Tooltip , but you can use full screen slideshow which will have the similar effect but the limitation being the content on the page which will be not same as the referenced site you have posted.
    Thanks,
    Sanjit

  • DropDownList / ComboBox DataProvider Issue

    In this example I have an ArrayCollection (values) that serves as a DataProvider and a Bindable field (value).  I would like to twoWay bind the value and dynamically load the values.  When dynamically loading the values, my bounded value is null.
    I have two applications below, in the first example the dataprovider is initialized with all its values and the behavior is correct:
    <?xml version="1.0"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">
      <s:layout>
        <s:VerticalLayout/>
      </s:layout>
      <fx:Declarations>
        <fx:String id="value">B</fx:String>
        <s:ArrayCollection id="values">
          <fx:String>A</fx:String>
          <fx:String>B</fx:String>
          <fx:String>C</fx:String>
        </s:ArrayCollection>
      </fx:Declarations>
      <s:ComboBox id="comboBox" selectedItem="@{value}" dataProvider="{values}"/>
      <s:TextInput text="@{value}"/>
    </s:Application>
    In the second example the dataprovider is loaded dynamically, which is typical for a data driven application.  Now the bounded value is lost:
    <?xml version="1.0"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">
      <fx:Script><![CDATA[
        private function comboxCreated():void {
          values.addItem("A");
          values.addItem("B");
          values.addItem("C");
        ]]></fx:Script>
      <s:layout>
        <s:VerticalLayout/>
      </s:layout>
      <fx:Declarations>
        <fx:String id="value">B</fx:String>
        <s:ArrayCollection id="values"/>
      </fx:Declarations>
      <s:ComboBox id="comboBox" selectedItem="@{value}" dataProvider="{values}" creationComplete="comboxCreated()"/>
      <s:TextInput text="@{value}"/>
    </s:Application>
    Is there any recommended / elegant solution to fix this issue?
    Kind Regards

    I tried this and it seems to work fine - just moved the setting of the value of "value" to the creationComplete handler:
    <?xml version="1.0"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">
      <fx:Script>
                        <![CDATA[
                                  private function comboxCreated():void {
                                            values.addItem("A");
                                            values.addItem("B");
                                            values.addItem("C");
                                            value="B";
                        ]]>
      </fx:Script>
      <s:layout>
      <s:VerticalLayout/>
      </s:layout>
      <fx:Declarations>
      <s:ArrayCollection id="values"/>
      <fx:String id="value"/>
      </fx:Declarations>
              <s:ComboBox id="comboBox" selectedItem="@{value}" dataProvider="{values}" creationComplete="comboxCreated()"/>
              <s:TextInput text="@{value}"/>
    </s:Application>

  • ComboBox: width of list initially too small

    Hi everybody,
    I've written a littlle application which contains a ComboBox. The ComboBox contents will be set asynchronously. When the contents are set and I expand the list, the width of the list is initially too small. After I close the list and expand it again, the width of the list is correct. Did I make anything wrong???
    Sample:
    package combotest;
    import java.util.ArrayList;
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ListProperty;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleListProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.geometry.Pos;
    import javafx.scene.Scene;
    import javafx.scene.control.ComboBox;
    import javafx.scene.control.Label;
    import javafx.scene.control.ListCell;
    import javafx.scene.control.ListView;
    import javafx.scene.control.SingleSelectionModel;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.Pane;
    import javafx.scene.layout.Priority;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.WindowEvent;
    import javafx.util.Callback;
    public class ComboTest extends Application implements EventHandler<WindowEvent>
    private ComboBox<Test> combo = null;
    private ObservableList<Test> observableTests = FXCollections.observableArrayList();
    private ListProperty<Test> tests = new SimpleListProperty<Test>(observableTests);
    private ObjectProperty<SingleSelectionModel<Test>> selectedTest = null;
    public class Test
    private String label;
    public Test(String label)
    this.label = label;
    public String getLabel()
    return label;
    public class TestListCell extends ListCell<Test>
    @Override
    protected void updateItem(Test arg0,
    boolean arg1)
    super.updateItem(arg0, arg1);
    if((arg0 == null) || arg1)
    setText("");
    else
    setText(arg0.getLabel());
    @Override
    public void start(Stage arg0) throws Exception
    VBox vbox = new VBox();
    vbox.getChildren().add(createComboPane());
    arg0.setScene(new Scene(vbox, 400, 200, Color.WHITE));
    arg0.setTitle("ComboTest");
    initialize();
    arg0.setOnCloseRequest(this);
    arg0.show();
    public static void main(String[] args)
    launch(args);
    @Override
    public void handle(WindowEvent arg0)
    System.exit(0);
    private Pane createComboPane()
    HBox hbox = new HBox();
    hbox.setPadding(new Insets(5));
    hbox.setSpacing(15);
    hbox.setAlignment(Pos.CENTER_LEFT);
    VBox.setMargin(hbox, new Insets(5));
    Label label = new Label("A combo");
    combo = new ComboBox<>();
    combo.setEditable(false);
    combo.setMaxWidth(Double.MAX_VALUE);
    combo.setButtonCell(new TestListCell());
    combo.setCellFactory(new Callback<ListView<Test>, ListCell<Test>>()
    @Override
    public ListCell<Test> call(ListView<Test> arg0)
    return new TestListCell();
    combo.valueProperty().addListener(new ChangeListener<Test>()
    @Override
    public void changed(ObservableValue<? extends Test> arg0, Test arg1, final Test arg2)
    HBox.setHgrow(combo, Priority.ALWAYS);
    hbox.getChildren().addAll(label, combo);
    return hbox;
    private void initialize()
    combo.itemsProperty().bind(tests);
    selectedTest = new SimpleObjectProperty<SingleSelectionModel<Test>>(combo.getSelectionModel());
    combo.selectionModelProperty().bindBidirectional(selectedTest);
    new Thread(new Runnable()
    @Override
    public void run()
    try
    Thread.sleep(3000);
    final ArrayList<Test> testList = new ArrayList<>();
    testList.add(new Test("Test entry 1"));
    tests.set(FXCollections.observableArrayList(testList));
    Platform.runLater(new Runnable()
    @Override
    public void run()
    selectedTest.get().selectFirst();
    catch(InterruptedException e)
    }).start();
    }

    There is a bug: https://javafx-jira.kenai.com/browse/RT-28876
    ComboBox popup list is wrong width the first time it is shown if the ComboBox is wider than prefWidth.
    This is fixed in javafx8.0 already, but not in javafx2.

  • Odd 100% Page Width Issues

    Hi,
    Firstly sorry in advance - I'm new to Muse and I primarily work in graphics and video (photoshop, after effects etc) - so web is not my forte!
    I'm having a weird issue with page width. Most of the pages on my site have tiled images or one large image in a rectangle set to 100% page width - as a background image of sorts. Other elements (rectangles etc) sit on top of that scrolling at different speeds - these are also set to 100% width.
    When the browser window is at full size this works fine, however when I decrease the browser size until I get a horizontal scroll bar, the background images seem to extend further to the right than the other elements on top, even though they are both set to 100% width.
    Here's a few images to illustrate:
    Everything dragged out to 100% width
    Page Properties
    Layout problem in the browser (Google Chrome)
    There's a draft version of the site at http://alivechurchlincoln.businesscatalyst.com/ where you can see the problem on the 'About' page. It happens on a number of the other pages too.
    I've checked through all my layers and nothing seems to extend over the page width, including compositions.
    Any help would be really appreciated!
    Thanks,
    Ben

    I have been through all the pages this is affecting (About, Connect and Community), unlocked all the layers and selected all to see if there was any content hiding on the right side but I couldn't find anything.
    Any ideas?
    Thanks!
    Ben

  • ComboBox onEnterFrame Issue

    Hi,
    I have created an email form in one swf that is called into
    another swf. In this form there is a comboBox that will populate a
    text field when something is selected in it. Everything works fine
    with the comboBox in it's own swf but when it's called into another
    swf the comboBox is inactive. I'm not sure but I think it may have
    to do with the onEnterFrame.... here is the code from the swf that
    contains the comboBox and email information.
    import mx.remoting.Service;
    import mx.services.Log;
    import mx.rpc.RelayResponder;
    import mx.rpc.FaultEvent;
    import mx.rpc.ResultEvent;
    import mx.remoting.PendingCall;
    import mx.remoting.RecordSet;
    import mx.remoting.DataGlue;
    onEnterFrame = function(){
    area_ta.text = area_cb.value;
    submit_btn.onRelease = function() {
    if (question1_txt.text == "") {
    gotoAndStop ("error");
    }else{
    var pc:PendingCall = myService.mailSuggestion
    (question1_txt.text, area_cb.value);
    pc.responder = new RelayResponder (this,
    "mailSuggestion_Result","mailSuggestion_Fault");
    gotoAndStop ("correct");
    var myService : Service = new Service("
    http://******flashservices/gateway",
    new Log (Log.DEBUG),
    "tap.*******.emailfunction",
    null,
    null);
    stop();

    Thanks for helping me with this by the way...
    Ok I added the listener and that worked in it's own swf, but
    same issue when I pull from the main swf. I'll try putting it in
    the main swf but I would like to keep it in the one its in.
    Picture a website and when you click on Ask The Trainer
    button that calls a swf and in this swf there will be a combobox to
    select what area you are from and a text box that you will fill in
    your question in and then click submit. That sends an email
    containing the info from the combobox and the text field. So I
    would need them all in the same swf, wouldn't I?

  • 100% Page Width Issue

    Hi there,
    I'm designing a site with Muse 7.4 and I've been trying to get my content to scale to different browser sizes proportionally. It feels like I've looked at every tutorial there is about aligning boxes/objects with the red lines at the sides of the page, but whenever I view my site across different screen sizes, you always need to scroll to see content that's been 'cut off'. I have a variety of objects on the page including a slideshow, text boxes, images and buttons, but I wasn't sure if this would affect it. Ideally, I'd like all this content to grow and shrink as I adjust the browser width so nothing gets 'cut-off'. Are there any workarounds for this?
    Many thanks!

    Please check out related threads on the same issue:
    Can you create responsive sites with Adobe Muse?
    can you create a responsive website with muse
    You can search for the work "responsive" to search the forums for more threads on this topic.
    Cheers,
    Vikas

  • Automatic hight and width issue

    Hi All ,
    We are upgraded to enhancement pack 4 . after that we are facing the problem with Images visibility ..
    % and pixels are not working . so those images are showing very small .. Please give the solution on this ..
    up-gradation details are SAP ERP 6.0 EHP4 upgrade, SAP NW 7.0 EHP1 upgrade, HR patches update, HW upgrade
    Thanks in Advance .
    Ajay Kolla .
    Edited by: ajay KOLLA on Dec 28, 2010 12:47 PM

    In my webdynpro application I am using IWDImage, I need to set the height and width of that image interms of percentage ratherthan pixels. I gave 50% for both height and width but I was not unable to get the image. While setting size of the image by number of pixels I am able to get the image.
    Could you people please tell me why I am unable to get the image while setting the image size interms of percentage.
    Before upgrade it works fine .. after up gradation only its giving this issue ,,,
    Edited by: ajay KOLLA on Dec 28, 2010 1:29 PM

  • How to Reduce Combobox width in LOV

    Hi,
    I have added a LOV (Combobox with List of values) to a view Column. Have added two View Criterias one for Display of Search Region and One for Fitering Combobox.
    Now on Table when i click on Dropdown arrow, the dropdown width very high and i have to scroll horizontally. I want to avoid it and restrict the dropdown list box width. How can i do that?
    I have tried setting up the "Show In Combobox"attribute 0f LOV to show only first one attribute but that is not helping.
    Any Inputs?
    Jdev Version - 11.1.1.6.2
    Thanks
    Rajesh

    Hi,
    As codigoadf said try using contentStyle by altering the width as you want
    contentStyle="width: 100px"

  • WRT160NL B17 channel width issues

    Sometimes my storage disapears and I can't see it from my windows machines. When that happens I have to reboot the router and then I can see the storage again.
    However, after a reboot, my wireless laptops don't connect automatically. I have to go to the web interface of the router and change the wireless channel width from 20MHz to automatic. Then the laptops connect. So this is issue number one. Issue number two is that this setting doesn't persist. Next time I reboot the channel width goes back to 20MHz.

    On the setup page under Wireless tab,click on Advance Wireless Settings tab and Change the Beacon Interval to 50,Change the Fragmentation Threshold to 2304, Change the RTS Threshold to 2304 and Click on "Save Settings"...Also reduce the MTU size to 1400 on the setup page and click on save settings.
    Power cycle the router and check the result..If you are still facing the same problem then,try to upgrade/reflash the router's firmware.After upgrading the router's firmware...reset the router and reconfigure the router from scratch.

  • Width issue

    Hello guys.
    I have an issue about flash. I creating an animation.
    Everything ok but one thing. I trying test my movie in flash its
    not showing completely. Also i saving and trying outside flash but
    this time i can see outside of the stage. Can you show me a cause
    for this? I asked it to one of my friends and he said "this
    width(900px) not compatible web standarts. So flash show outside
    the stage." but i think this is false. Here a screenshot from my
    animation. Thanks from now. Also thanks for interest:)
    http://img99.imageshack.us/img99/9046/adszur6.jpg

    I found the problem. It's just resolution. I reinstalled my
    flash player and then increased my screen res. to 1280*1024 pixels
    and it started looks great. The sides wide from normal several
    pixels but this is no problem. The flash player resizes itself by
    screen.

  • Menu Bar Width Issues

    Hi, everyone!
    I recently inherited a website that I did not originally create that contains a menu bar created in Fireworks.  To achieve the desired effects, I probably would have created a Spry menu (and made it a lot less complicated in terms of menu choices), so I'm not as familiar with this.
    The client wants some items added to the menu, so I was able to procure the original Fireworks files instead of just the exported ones.  (You can view the original site here.)  I realize there are some design issues in addition to the site having been done in tables, but I still want to add the desired menu items quickly before doing a site re-design.
    If you go to the link, under "Association Documents" there's a "Community Plats" section.  I have new plats to add to that section.  I added them in the appropriate place in the FW file and made sure the width was set to "auto".  When I insert it into Dreamweaver and then preview, however, that area retains its original width (Section 1, Section 2, etc.).  The new menu items are wider than the current ones, so the text bleeds out of the menu area.  Like I said, I have checked the width for the menu and it is set to auto.  Is there something else I need to do differently for the sub-menu?  I think this was done in a previous version of FW (I'm in CS4)... could that make a difference?
    I'd really appreciate any insight here.  Thanks in advance!
    Karen
    GuppyFish Web Design

    You can change the padding in the following
    ul.MenuBarHorizontal a {
        display: block;
        cursor: pointer;
        background-color: #EEE;
        padding: 0.5em 0.75em;
        color: #333;
        text-decoration: none;
    Gramps

Maybe you are looking for