How to achieve 100% width banner graphic atop page that handles user resolution changes

I have a banner that can be divided into three distinct pieces.  I'd like to achieve the following distribution:
Left piece 60%, middle 20%, and right 20%
In HTML I'd just use a 100% width table and set cell widths to those percentages from left to right.  How's this done in Flex?
I'm trying all manner of  ConstraintColumn configurations but it appears I can only get two columns to work at say 60%-40%, and not three as listed above.
Is ConstraintColumn the right place to be looking here or is there some better approach?
Thanks

Works like a charm with horizontalGaps set to 0.  Thanks much.

Similar Messages

  • How can I know the name of the file that the user has currently open ?

    Hello
    I'm developing a module for x3dv.
    http://hiperia3d.blogspot.com/search/label/X3DV%20Module%20For%20Netbeans
    I am going to add a button to open the files when I click it.
    I just need to know how can I know the name of the file that the user has currently open in the editor. What variable holds it in Netbeans?
    Thank you
    Jordi

    If you are using the JFileChooser to open the document, I would create another class with this included:
    //initiate class variables
    private File f;
    //create JFileChooser
    JFileChooser fc = new JFileChooser();
    fc.setMultiSelectionEnabled(false);
    fc.setFileSelectionMode(JFileChooser.FILES_ONLY)
    //set the chooser to initialise File f with the file selected
    int status = fc.showOpenDialog(null);
    if (status == JFileChooser.APPROVE_OPTION)
         f = fc.getSelectedFile();
    public File getFile()
         return f;
    }

  • How does your company handle user pwd changes?

    I would like to know how other companies handle user password changes with Sun One Portal Server 6.0. Do you have an option in the portal server window itself or do you direct users to a page on the directory server?

    Just a little note
    When you login into the portal server, you actually login to the Identity server (DSAME), and have a DSAME session, and when you logout from either amconsole or portal window you logout from the DSAME. The portal server uses Identity server for authentication purpose (if you see the login page you will notice the login action url is "/amserver/login" and the logout url is "/amserver/logout").
    Sanjeev

  • Please tell me how i can get to the page that let's me change my printer from computer to printer to

    please explain how I can get to the page that will let me change my printer to the wireless system instead of computer to printer I had to use the hardwire way to use my print shop, but now I would like it to be a wireless system  cannot find the page to let me change it back please help

    Usually the HP Printer software/driver folder in the Start Menu has the option to switch to wireless from usb.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • When building a web site, how do I set up a blank browser page that I can pull html & css files into.

    When building a web site, how do I set up a blank browser page that I can pull html & css files into.

    David's book is a good place to start. This is really far more involved that can be covered in this forum. You'll need to get familiar with a database, most likely MySQL, PHP, how to send requests tot he database - queries - and most likely maintain a state with Sessions. As you can see, it's a bit involved. The good news is this skills you'll acquire to do this will go a long way! It will cover all the basic requirements of web application development.
    Dive in, and have fun!
    Lawrence   *Adobe Community Expert*
    www.Cartweaver.com
    Complete Shopping Cart Application for
    Dreamweaver, available in ASP, PHP and CF
    www.twitter.com/LawrenceCramer

  • How to get 100% width in fluid grid layout CC

    I'm currently getting to grips with dreamweaver's fluid grid layout and cant seem to get a div to go the full 100% width across the screen. Ive created a div outside of the grid container as a non fluid div, and entered in the CSS myself in code view since Dreamweaver doesnt seem to allow you to add a class or ID to non fluid elements in design view. I have done this and all though i thought i had achieved success i noticed when looking closely in live view and when previewed in chrome that there is still a tiny gap between the div and the edge of the screen. Its very small, but its definitely there. Ive enetered width to be 100% and its definitely not simply 100% width of the grid container as its wider. I just cant account for the tiny gap which seems to be about 1 pixel wide. Any ideas whats causing this gap?

    Depending on your project goals, there are plenty of other Responsive Frameworks you can use.
    Foundation Zurb
    http://foundation.zurb.com/templates.php
    Skeleton Boilerplate
    http://www.getskeleton.com/
    Initializr (HTML5 Boilerplate, Responsive or Bootstrap)
    http://www.initializr.com/
    DMX Zone's FREE Bootstrap extension for DW
    http://www.dmxzone.com/go/21759/dmxzone-bootstrap/
    Project Seven's Page Packs (Commercial CSS Templates)
    http://www.projectseven.com/products/templates/index.htm
    Adobe Edge Reflow
    http://tv.adobe.com/watch/adobe-edge-reflow/introduction-to-reflow/
    PS. I don't work for Adobe.  I'm just a product user like you.
    Nancy O.

  • How to achieve print functionality in OA Framework page

    Hi All,
    I have created one page in OA Framework.
    There is one print button on page for printing the page
    How to achieve print functionality thruoug Print button in OA page.
    Please help me in this if some one has use thif functionality before or if someone knows about it.
    Thanks
    Nisha

    Hi Nisha,
    Have u checked out "printable page" in OA Developer guide??
    Step 1: Add a page-level button as described in the Buttons (Action/Navigation) document.
    Step 2: Assuming your button label is the standard "Printable Page," apply the OA Framework attribute set /oracle/apps/fnd/attributesets/Buttons/PrintablePage.
    Step 3: Set the button's Destination URI property to point to the current page and set the UIX facet parameter (OARF) to printable as shown in the following example (if you don't know what a "facet" is, please see Controlling UIX Rendering Output for additional information). Remember to retain your application module.
    OA.jsp?page=<CURRENT_PAGE>&retainAM=Y&OARF=printable
    Step 4: Set the button's Target Frame property to _blank. This ensures that the printable page opens in a new window.
    Regards,
    Devang

  • Event.value = Math.round (a.value * 5.00) / 100; Replace this with an input field for user to change

    I have a taxe calcul script in a field with a annulation check box like this:
    if (this.getField("CheckBoxHST").value=="Off") {
    // no tax
    event.value = 0;
    } else {
    // calculate the amount of tax to be paid
    var a = this.getField("pricehorstx");
    event.value = Math.round (a.value * 5.00) / 100;
    I like to able the user to change the percentage —>  (a.value * 5.00) with a simple text field — Say they enter 6% or any other percentage in there and the calcul become (a.value * 6.00) / 100;
    Not to sure how to acheive that....

    Work perfectly thanks...
    I feel so bad, everything work perfect, almost   — 
    — I just want when I check off (checkbox) the tax calculation to put whatever is in the tax percentage input box to zero and I can’t

  • How to have a unique requestId for a Page for multiple users

    Hi,
    Can someone please tell me how to get a unique RequestId whenever a page is visited. I need to have a unique RequestId generated for each user if they are on some specific
    page. Whenever a users refreshes a page or come to the page by clicking back button want to have a unique requestId always.
    Can I use sessionRequestId or something for HttpServletRequestObject that always gives me a unique Id.
    Thanks

    Unique for how long?
    Eternally unique ?
    unique until the server restarts?
    Most simplistic approach would be to have a static/singleton counter. It wouldn't work perfectly in high volume sites, but should work well enough for smaller ones. Including a timestamp in the key makes it fairly unique.
    This would handle both initial requests and refreshes of the page.
    There is nothing you can do about users hitting the back button. If the page gets served from the client cache, the server knows nothing about it, and can not issue a unique id.
    Why the requirement? What are you trying to accomplish by doing this?

  • How can i create a simple netweaver portal page that shows text and images?

    Hi,
    i have a simple question or maybe it's not so simple.
    I am completly new to SAP Netweaver 2004s Portal. At the moment i'm trying to understand the struture of the whole thing. I already know how to create roles, worksets and pages and i know how to combine the different elements so a user can acces them.
    And now i want to create a simple portal page that shows text and images. Is it possible to create such a simple page with the portal content studio? What iView do i have to use?
    (I just want to create a start page with a welcome text on it.)

    Marc
    Considering that you would any ways go ahead with complex development from this simple start page I recommend create a Web dynpro Iview for your start page (include the Iview in your page).
    For putting the contents use Netweaver Developer studio to build a simple start page application and put your static text on that Iview.
    Please go through the following log after your NWDS development is over - This will make you comfortable for further challenging work.
    http://help.sap.com/saphelp_erp2005/helpdata/en/b7/ca934257a5c96ae10000000a155106/frameset.htm
    Do reward points if this helps and let me know of you want anything more.

  • Need to create a JSP page that informs user how many SMSes are sent.

    Hello again ,
    My project , which is based on a web-based group SMS module is working , but unfortunately when I send out the group SMS to the selected group , the notification of the sending of SMS is only made visible in the Apache Tomcat status screen . For every SMS sent , the Apache Tomcat screen will display that the SMS is sent to this phone number and recipient number out of the maximium number of recipients.
    How can I make a JSP page that would allow me to display these messages instead ? Any help and advice would be welcomed .
    Cheers
    Seiferia

    The simple way would be to just write a simple jsp that takes the output of the class and displays it. A JSP is nothing more than a servlet class, so you can use your existing classes inside it. If you want to do it the correct way, you should use taglibs to build the JSP. It's up to you.
    I suggest buying a good book about JSP's and read that first, else you may be a little overwhelmed.

  • How to create a link to a web page that is connected to the database?

    i am developing a web form in java using Oracle's JDeveloper. i created the form which is connected to the database and now i want to put a link in a page that when clicked it shows the form and populates it if necessary. i have no idea how to do that, can anyone please give me an example or where i can find an example?

    Its really hard to answer this question with this enough information....Which Jdeveloper version? which technology you are using to create this web form ? ADF BC or others
    If 11g then are you aware of Task flows?

  • How do You set -noverify in an HTML page that calls an applet

    I have an applet which runs fine from inside JBuilder when I specify a
    -noverify switch in the debugger. (java -noverify myapplet.class)
    Without this switch, I get a verification exception.
    So I need to specify the -noverify switch from inside a webpage so that when the client runs it, he does not get the same exception.
    The question is how do you pass -noverify to JVM from an HTML page that uses <applet> tag and javascript?
    Thanks

    Odd, because I work on an applet that gets built with 1.4. We have 30,000+ clients who use it every day, and I'm sure we don't tell them about setting -noverify switches in their plug-in control panel, and we don't (cuz we can't) set it in the applet (object/embed, actually) tag.
    Of course, I suppose it could be a backwards compatibility issue going from compiling in newer version than it's run in.

  • How do I get the 'Welcome to Firefox' page that shows up after an update to quit showing up? It's been coming up when ever I start up Firefox for days.

    The ‘Welcome to Firefox’ page that shows up after an update is installed has been coming up when ever I start up Firefox since I did the last update to 18.0.1, several days ago. How do I get it to stop?

    The problem turned out to be an error on the prefs.js file where one or two of the parameters with the current version number were not properly updated, so the browser always thought I was opening it for the first time on a new version. I edited the version number in those parameters to agree with the version number in the Help/About dropdown and the problem went away. It has been a while now and I do not recall which were the faulty parameters, but here are the ones in my current prefs.js file that refer to the browser version (currently 21.0 for me):
    user_pref("browser.startup.homepage_override.mstone", "21.0");
    user_pref("extensions.enabledAddons", "%7Bd40f5e7b-d2cf-4856-b441-cc613eeffbe3%7D:1.68,%7B02450914-cdd9-410f-b1da-db004e18c671%7D:0.97.12c,%7BBBDA0591-3099-440a-AA10-41764D9DB4DB%7D:11.3.0.9%20-%205,%7B2D3F3651-74B9-4795-BDEC-6DA2F431CB62%7D:2013.4.1.2,%7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:21.0");
    user_pref("extensions.lastAppVersion", "21.0");
    user_pref("extensions.lastPlatformVersion", "21.0");
    user_pref("gecko.mstone", "21.0");
    I have not encountered the same problem with recent version upgrades. Good luck!!

  • How difficult would it be to write a code that prevents sites from changing your homepage wtihout u knowing it happened?

    Today I had the unhappy experience of a company or site I visited that installed three programs I didn't want. I uninstalled all of them in windows control panel (]remove programs). This however did not solve my problem.....no matter what I did I could not get startpage to come back. I did many things like go to tools and options and type it in close out and open and it was still not there. Finally my grandson uininstalled Firefox and reinstalled it and it was back.
    My question is: Can you not write a code in the software that prevents this from happening and when people install Firefox ask them if they want this feature or write an ad on. Please this problem grows every day it gets worse. Before all you had to do is change it back now one can not get rid if it so easily.
    We really would love this feature ask anyone.
    Susan and TY for listening.

    Thanks You for your feedback. However this is support forum, You should suggest new features trought ''Help -> Send Your opinion'' or [https://input.mozilla.org/pl/feedback/firefox/31.0/ this website].
    By the way there is method described in [http://kb.mozillazine.org/Locking_preferences this support article], maybe someone using Windows will write user friendly guide how to do it.
    All I can tell you is that you have to lock ''browser.startup.homepage'' to ''about:home''

Maybe you are looking for

  • Another perl module packager

    CPANPLUS::Dist::Arch is a CPANPLUS backend to automatically package modules as you install them.  I started it several months ago and mess around with it every once and awhile.  I had made it because CPANPLUS::Dist::Pacman (or maybe I should say cpan

  • Two R/3 Systems on one Windows NT Server

    Hello SAP  Guru , I have ECC6 on database DB2 for Development server and quality server as different client . Now i want to install quality server on same H/W . i go through sdn forum and market place but not found sufficient information for DB2 data

  • Encore CS4 Suddenly Won't Open

    I use Encore CS4 everyday. I just used it to render & burn a DVD and it worked perfectly. I closed Encore and tried to reopen it but it crashed. After a few seconds I got the Crash Report window saying that Encore has unexpectedly quit. I rebooted th

  • I-pad not starting

    On occassion, I try to start my I-pad by pushing the power button but the Ipad doesn't start.  Usually I just push the botton button but do I need to push both that and the on/off button on the top of the IP2?

  • Difference between OB08 and OBBS

    I want to maintain the exchange rate between currency CLP and HUF. on that context I want to know what is the difference between the tcodes, OB08(Currency exchange rates) and OBBS(currency translation). What appeared to me was, exchange rate and curr