How to set spark application control bar at bottom

Hi,
I am trying to set control bar at bottom of application container in spark, could any please help me with this, i need applicationskin code to set control bar at bottom insted of default at top.

You need to write a custom Application skin.
Attached is an example custom skin that moves the "topGroup" to after the "contentGroup".

Similar Messages

  • BUG: Docked Application Control Bar breaks States

    I've encountered a bug and I haven't noticed messages from
    anyone else about it so I'm assuming it's an unknown:
    If you use an Application Control Bar, set it's dock property
    to true, and then attempt to change the currentState of the
    application to a state that would result in the Application Control
    Bar to be removed; the state change fails.
    Here's an example:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:states>
    <mx:State name="problemState">
    <mx:AddChild relativeTo="{textarea1}"
    position="before">
    <mx:Button x="368.5" y="323" label="Goto Base State"
    click="currentState=&quot;&quot;"/>
    </mx:AddChild>
    <mx:AddChild position="lastChild">
    <mx:ApplicationControlBar x="170" y="221" dock="true"
    id="appControlBar">
    </mx:ApplicationControlBar>
    </mx:AddChild>
    <mx:AddChild position="lastChild">
    <mx:Button x="360" y="434" label="Undock Control Bar"
    click="appControlBar.dock = false"/>
    </mx:AddChild>
    <mx:AddChild position="lastChild">
    <mx:Button x="366.5" y="464" label="Dock Control Bar"
    click="appControlBar.dock = true"/>
    </mx:AddChild>
    <mx:AddChild relativeTo="{appControlBar}"
    position="before">
    <mx:TextArea x="229.5" y="403" width="396" height="23"
    editable="false" fontSize="12" fontWeight="bold" textAlign="center"
    id="textarea0">
    <mx:text>Undocking the control bar at runtime fixes
    the problem:</mx:text>
    </mx:TextArea>
    </mx:AddChild>
    <mx:AddChild relativeTo="{appControlBar}"
    position="before">
    <mx:TextArea x="229.5" y="210" width="396" height="105"
    editable="false" fontSize="12" fontWeight="bold" textAlign="center"
    id="textarea2">
    <mx:text>If you try and return to the base state while
    the control bar is docked, the state change will fail. The state
    change will get &quot;stuck&quot; and you'll have to reload
    the Flex application. If there was a third state, you could change
    to that to get out of the lockup, but you still can't transition to
    any state that would remove the docked Application Control
    Bar:</mx:text>
    </mx:TextArea>
    </mx:AddChild>
    </mx:State>
    </mx:states>
    <mx:Button x="358.5" y="135" label="Goto Problem State"
    click="currentState=&quot;problemState&quot;"/>
    <mx:TextArea x="229.5" y="70" width="396" height="57"
    editable="false" fontSize="12" fontWeight="bold" textAlign="center"
    id="textarea1">
    <mx:text>A Docked application control bar prevents
    Flex from changing state to a state that would remove the
    application control bar.</mx:text>
    </mx:TextArea>
    </mx:Application>

    Hi Harry (and others),
    I have seen similar behavior. It seems like the client side rendering for some reason has a hard time processing the collection model wrapping the ArrayList in this particular case. The table renders empty. After sorting in ascending order, the rows are all back (visible) again.
    Is anyone aware of issues with the rich table based directly on ArrayList (in combination with a changing set of values and/or sorting)? (seems like a corner case but is still not uncommon). Is there any indication that wrapping the ArrayList in a CollectionModel ourselves might be required?
    Harry: do you know whether this issue is introduced with PS3 (11.1.1.4) or already existed in previous releases?
    kind regards,
    Lucas

  • How to set an Application Item from PL/SQL

    I am attempting to set an Application Item
    After login to my app, I want to retrieve a row from my SETTINGS table and populate some Application Items with the settings information so that I can
    display some of that settings information on every page.
    Just to start, I created one Application Item named F106_YEAR
    I then created a Shared Components Application Process which executes on New Session: After Authentication
    I created this process as an Anynomous PL/SQL block.
    declare
    aucyr varchar(4);
    begin
    select year into auctyr
    from settings;
    :F106_YEAR := aucyr;
    end;
    I've tried a couple of other Syntax tricks attempting to reference the Application Item F106_YEAR from within PL/SQL (like V('F106_YEAR') but nothing seems to be working.
    I'm sure that I am missing something simple. Can someone tell me how to set an Application Item from PL/SQL?
    Thanks in advance.

    I'm still doing something wrong because this is not working for me.
    I've tried both of the following versions as an Application Process set to run on New Session after Authentication:
    declare
    auction_year varchar(4);
    begin
    select year into auction_year
    from PBUUC.SETTINGS where rownum < 2;
    :F106_AUCTION_YEAR:=auction_year;
    end;
    and I also tried:
    declare
    auction_year varchar(4);
    begin
    select year into auction_year
    from PBUUC.SETTINGS where rownum < 2;
    APEX_UTIL.SET_SESSION_STATE (p_name, p_value);
    end;
    F106_YEAR is a global Item (shared components).
    The select statement works just fine in SQL*PLUS so I know that it is correct.
    If I run the debugger and log into the application, here is the output. Shouldn't I see my Application Process get called if it is set to run on New Session after Validation?
    My Application process is named RETRIEVE_AUCTION_SETTINGS
    0.01: A C C E P T: Request="P101_PASSWORD"
    0.01: Metadata: Fetch application definition and shortcuts
    0.01: alter session set nls_language="AMERICAN"
    0.01: alter session set nls_territory="AMERICA"
    0.01: ...NLS: Set Decimal separator="."
    0.01: ...NLS: Set NLS Group separator=","
    0.01: ...NLS: Set date format="DD-MON-RR"
    0.01: ...Setting session time_zone to -04:00
    0.01: NLS: wwv_flow.g_flow_language_derived_from=0: wwv_flow.g_browser_language=en-us
    0.01: Fetch session state from database
    0.02: ...Check session 695371898690095 owner
    0.02: ...Check for session expiration:
    0.02: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.02: Session: Fetch session header information
    0.02: ...Metadata: Fetch page attributes for application 106, page 101
    0.03: ...Validate item page affinity.
    0.03: ...Validate hidden_protected items.
    0.03: ...Check authorization security schemes
    0.03: Session State: Save form items and p_arg_values
    0.03: ...Session State: Save "P101_USERNAME" - saving same value: "jps"
    0.03: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.03: Branch point: BEFORE_COMPUTATION
    0.03: Computation point: AFTER_SUBMIT
    0.03: Tabs: Perform Branching for Tab Requests
    0.03: Branch point: BEFORE_VALIDATION
    0.03: Perform validations:
    0.03: Branch point: BEFORE_PROCESSING
    0.03: Processing point: AFTER_SUBMIT
    0.03: ...Process "Set Username Cookie": PLSQL (AFTER_SUBMIT) begin owa_util.mime_header('text/html', FALSE); owa_cookie.send( name=>'LOGIN_USERNAME_COOKIE', value=>lower(:P101_USERNAME)); exception when others then null; end;
    0.04: ...Process "Login": PLSQL (AFTER_SUBMIT) wwv_flow_custom_auth_std.login( P_UNAME => :P101_USERNAME, P_PASSWORD => :P101_PASSWORD, P_SESSION_ID => v('APP_SESSION'), P_FLOW_PAGE => :APP_ID||':1' );
    0.06: ...Process "Clear Page(s) Cache": CLEAR_CACHE_FOR_PAGES (AFTER_SUBMIT) 101
    0.06: Nulling cache for application "106" page: 101
    0.00:
    0.00: S H O W: application="106" page="1" workspace="" request="" session="695371898690095"
    0.01: alter session set nls_language="AMERICAN"
    0.01: alter session set nls_territory="AMERICA"
    0.01: ...NLS: Set Decimal separator="."
    0.01: ...NLS: Set NLS Group separator=","
    0.01: ...NLS: Set date format="DD-MON-RR"
    0.01: ...Setting session time_zone to -04:00
    0.01: NLS: wwv_flow.g_flow_language_derived_from=0: wwv_flow.g_browser_language=en-us
    0.01: Application 106, Authentication: CUSTOM2, Page Template: 2904114531488186
    0.01: ...Session ID 695371898690095 can be used
    0.01: ...Application session: 695371898690095, user=JPS
    0.01: ...Determine if user "JPS" workspace "1040027630222986" can develop application "106" in workspace "1040027630222986"
    0.01: ...Check for session expiration:
    0.01: Session: Fetch session header information
    0.01: ...Metadata: Fetch page attributes for application 106, page 1
    0.01: Fetch session state from database
    0.02: Branch point: BEFORE_HEADER
    0.02: Fetch application meta data
    0.02: Computation point: BEFORE_HEADER
    0.02: Processing point: BEFORE_HEADER
    0.03: Show page template header
    0.03: Computation point: AFTER_HEADER
    0.03: Processing point: AFTER_HEADER     
    0.04: Computation point: BEFORE_BOX_BODY
    0.04: Processing point: BEFORE_BOX_BODY
    0.04: Region: Auction_Title F106_AUCTION_YEAR

  • Align picture to far left on application control bar

    guys i realise that the application control bar has a 1px padding from each side but is there a way to remove that padding so that i may align the Img right up to the far left of the control bar?
    Any help would be appreciated.

    such a simple solution and i just couldnt think of it. :-) thanks

  • How to set up parental controls

    How to set up parental controls on an ipod5?

    Also:
    Parental Control???: Apple Support Communities
    How to Setup Parental Controls on iPhone & iPod Touch | Mobicip Blogs, Discussions & Help
    how do i put parental control on my...: Apple Support Communities
    parental control: Apple Support Communities

  • How to set an application item when report column link is clicked?

    I am trying to set the short name of a bread crumb entry when I drill into a detail from an interactive report page.
    The master report has a column link with target = detail - "page in this application"
    I can pass page items through the URL and they are set on the target page.
    How can I set an application item before the target page is called?
    Is there a way to set a process before the link is followed?

    Kenneth,
    I'm not totally sure that I understood the question but, it soounds like you want to set the value of some page items on the page that is opened when you click a link on a column in the master window. Is this right?
    If so, you can achieve what you want by creating hidden page item(s) on the target page. In the master page, on which every column provides the link, go into Report Attributes, click on the link column and scroll down to the section labeled "Column Link" Within this section, set the link text to the current column value, e.g. #MASTER_REPORT_COLUMN_NAME_HERE#. Set the target to "Page in this Application" and pick the page number for the target window.
    Underneath this you will see a section to set set the value for page items. If you click the flashlight, you can search for the hidden page item that you created above. Use the same value to set it as you did the link text, i.e. #MASTER_REPORT_COLUMN_NAME_HERE#. Do this and let APEX take care of passing the values on the URL.
    On the child page, just set whatever control you want to dynamically pick up the value from the hidden field. For example, if you hidden field where named P4_CLEARER_NAME. You could set the title attribute to "Contact Information for &P4_CLEARER_NAME."
    You need the preceeding "&" and terminating "." around the name of you hidden page item to do this.
    -Joe

  • How to set skin for Menu bar

    I am doing a get Skin from Menu bar, but it returns null. Is there a way to set the skin for menu bar. I tried other alternatives like setting new com.sun .java fx.sce ne .control.skin.Menu BarSkin() but it doesn't work.
    Please help.

    The skin isn't set on the control until the next pulse after the control has been added to the scene-graph. In other words, you cannot do
    MenuBar menuBar  = new MenuBar();
    Skin skin = menuBar.getSkin();because the MenuBar has not yet been added to the scene-graph. Nor can you do
    MenuBar menuBar = new MenuBar();
    ((Group)scene.getRoot()).getChildren().add(menuBar);
    Skin skin = menuBar.getSkin();because the skin isn't set until the next pulse. There are many ways you can get the skin. The easiest is to just set the skin yourself:
    MenuBar menuBar = new MenuBar();
    menuBar.setSkin(new com.sun.javafx.scene.control.skin.MenuBarSkin(menuBar));Or you can add a listener to the skinProperty of the Control and grab it when it is set.

  • In Forms, how to set time to control editng?

    hi guys, Im doing a data entry module.This module used to encode our daily transactions. Sometimes, there are editing/updating of data that happen everyday. My problem is that, i want to control this editng everday to lessen some data problem. My question is how to set time in an oracle forms to control this everyday editing or updating. I want to their editing/updating allow only during the date they encode that particular transactions.
    Can anybody help me solve this problem. Thank you!
    Lala

    Do you want to get the current date?
    You can use SYSDATE for that (getting the database-date) or SYSTEM.CURRENT_DATETIME (getting the OS-date)

  • How to add video's control bar?

    Today, I've searched 24 pages here for related discussion but no solution was found.
    These pictures I listed here were created by other people.
    I want to know how to add a control bar below the video? Is it to use the Insert->Video button of Adobe Presenter (0002.jpg), or use the Insert->video button of PowerPoint (0003.jpg)? When I insert a video (in .flv format), it shows like a white box in the original PPT (see 0004.jpg), looks different from the existing 0001.jpg.
    And after I published this PPT (with the white box-like video) locally, when this video slide loads, that video plays immediately, but I want pause/stop function.
    I also noticed if I try to import a video in .m4v (MP4 Video), PowerPoint says QuickTime is required.
    I used to insert video in year 2010, but I forget the details. Maybe at that time I inserted a video with pause/stop function, but I forget.
    Or, is it because a specific video format would naturally show the control button?
    0001.jpg
    0002.jpg
    0003.jpg
    0004.jpg

    Feng Sien wrote:
    What do you mean,
    "insert a SWF player that contains the video."?
    Think of Presenter as your SWF player. It has a play bar that shows at the bottom of the content (or bottom right in full screen). So you would be embedding a different player via the Insert Flash option in Presenter (could be a Captivate SWF if that helps with an example) which could then be told to play independantly of the Presenter SWF.
    Feng Sien wrote:
    After publication, the video file inside the assets folder has .flv files, which are converted by presenter during the publication process.
    Presenter would do the conversion when importing the videos, not on publication, but that is more semantic than anything. I seems like Presenter 10 is doing this for all files, including MP4's. Presenter 9 and 8 only did the FLV conversion for the supported non FLV or MP4 files.

  • How to set up Application specific custom ogoff (sign-off) page.

    Hi,
    I'm using OracleAS 10.1.2.2
    Note 333638.1 shows us how do make a custom SSO login page to be application specific. This works.
    Now, I want to do a custom SSO logout (sign-out) page. Using the redirect method described does not seem to work. Please note that in our version 10.1.2.2, there is no default logout.jsp page in the /sso/jsp directory. To deploy a custom logout page, I would need to update the WWSS_LS_CONFIGURATION_INFO$ view.
    I was able to test a custom SSO logout.jsp page sucessfully. However, when I tried using a redirect_logout.jsp to make it application, it no longer works.
    Does anyone know or have any idea on how to deploy an application specific logout page? (i.e. only specific applications uses the custom logout page, otherwise go to the default one).
    Thanks.
    - Kevin

    Well,
    There are 5 choices to choose from on the page. In the description of the choices at the bottom of the page there are 7, and the two additional choices talk about having to first have registered the site with SSO. So...I'm interpreting that as meaning that other 2 possible choices would be displayed if the site is registered with SSO. That, plus the fact that the page which describes how to add the site to SSO seems to think that the SSO choices are displayed in the wizard.
    So, no, there's no "exact launguage" that says what the reason is for the choices not being displayed. Can you point me to some exact language that tells me how to get those choices displayed?

  • How to set up parental controls in itunes

    I am trying to set up parental controls in itunes.  I'm confused, as it says to set it up on the administrator account - but we only have one account.  Please help.

    If it is like mine, try this;  At the top, click on edit and go to preferences.  This will open choices for you and you will see parental controls.  Click on parental controls and then click on the padlock in the lower left hand corner.  The rest is self explanatory.

  • Change All / Get Info issue. How to set which application  opens a file?

    Hello,
    I would like to be able to set which application opens a specific file, but cannot get the 'Change all' option in the get info to stick, or to have scvope beyond the immediate folder. For example: whenever I download an.xml file and try to open it the application it defaults to is 'Property List editor' - so I have to go into 'get info' and set the application that I want to use to open the file. Let's say - Textmate. That file will then remain set, for the length of that session anyway - but clicking 'Change all' will not mean that the next file downloaded will default to 'Textmate', or that any .xml files outside the folder will open in Textmate. I have to set them all manually, which gets to be a drag.
    I once had a little open source app. that I used to set the preferences as to which application opened a specific suffix - which worked with some, some of the time... but after a clean install I lost it - and can't remember what it was called. Anyway, it didn't entirely solve the problem, only lessened it.

    [Mac OS X: Double-Clicking a File Opens the Wrong Application|http://support.apple.com/kb/TS2291?viewlocale=en_US]
    *Changing the application used to open all files of a certain kind*
    1) In a Finder window highlight a file of the kind you want to change the application to open that kind of file.
    2) While that file is highlighted, select File > Get Info or press command (apple or propeller icon) + i to get a file information window.
    3) In the lower part of the info window there is an "open with" menu with a list of applications.
    4) If your application is already in the box then it is the default application for opening that kind of file and you don't need to do anything more. Close the get info window.
    5) If the application showing in the menu is not the one with which you wish to open the file then select a new application. If your application does not appear there then select the "other..." and track down the application (usually in the Applications folder at the main level of the computer).
    6) If you wish to change all files of this type to open with this application in future, make sure the "change all" button is selected.
    7) Close the get info window.
    I know that what I posted may have been what you have been doing, but wanted to double check.
    I don't know to what application you are referring but application/file type association is done by Launch Services. Potentially this can become corrupted. You can use Onyx (free) utility to rebuild LS, but in doing so you will lose all non-default associations.
    As with any problems, I would also make sure you have run disk utility to verify and repair your drive, and repair permissions on your computer, before doing any other actions. It's surprising what that can clear up. You can slo just try starting in Safe mode, then restarting normally and see if that helps.
    [Mac OS X: Double-Clicking a File Opens the Wrong Application|http://support.apple.com/kb/TS2291?viewlocale=en_US]
    [Mac OS X: Starting up in Safe Mode|http://docs.info.apple.com/article.html?artnum=107393]
    [What is Safe Boot, Safe Mode? (Mac OS X)|http://docs.info.apple.com/article.html?artnum=107392]
    [Safe Boot takes longer than normal startup|http://docs.info.apple.com/article.html?artnum=107394]

  • Can't figure out how to set my midi controler to control the sampler!

    I have a Korg Kontrol49 and I want to be able to control the sampler knobs and faders with the ones on my Korg. I have it connected threw USB. It works for the keys but I can not figure out how to program the rest of it. Any help would be great. I tried reading everything I could to get it to work but I cant. Please help!
    Thanks
    Mac Pro   Mac OS X (10.4.8)  

    Press Command-L. Touch the onscreen control. Twiddle your MIDI knob. Assignment learnt.
    Then go read the manual on Controller Assignments...

  • How to set Different applications running on the same computer to use different Gateways?

    Dear All,
    I would like to have different applications running on the same computer to use different Gateways (both gateways are in the same subnet).
    Is it possible in Windows7 with / without a third-party utility?
    Current scenario & requirements:
    I have two internet connections. Both are in the same subnet (192.168.1.0/24) and connected to the same LAN switch
    Gateway for the first connection is 192.168.1.1
    Gateway for the second connection is 192.168.1.2
    I need to set my chrome browser & google talk to use the gateway 192.168.1.1
    I need to set my IE & skype to use the gateway 192.168.1.2
    Is it possible? Answers are appreciated!!
    Regards,
    Anees

    Hi,
    I agree with Bill. Gateway is essentially an IP address for one network to other networks. For example, you have two networks: network A and network B, to make the two networks communicate with each other, you must go through Gateway. That is, as long
    as you set Gateway, then you can make the two networks communicate with each other. The ip address for Gateway is the ip of device with routing enabled. One host machine can own multiple gateways. 
    Andy Altmann
    TechNet Community Support

  • How to set inputZ for control inputs ie: strobe, pfix?

    RE: PXI-6551  Need to configure input control for inputZ (50/10k). 
    ex:  My app. requires strobe input and pfi 2 (input) to have 50 ohm input impedances.
    Default is 10k.  Property node for input impedance doesn't like "STROBE or PFI 2" etc.

    Hello there,
    Although a bit harder to find, there is actually a 2 other properties that you need to use to set the strobe and PFI line input impedance. 
    For the strobe line, you need to specify you sample clock source to be the stobe line and use the Timing » Sample Clock » Impedance property to 50. See here.
    For the PFI line, you need to specify what you are using it for.  If you are using it as the source for your digital edge start trigger, you would use the Start » Digital Edge » Impedance property.  See here.
    I hope this clears things up. Let me know if you have any other questions.
    Regards,
    Paul C.

Maybe you are looking for

  • I want to SHARE Sync Settings with my Family Members, How Can I Share Some of My Settings with Them.

    I want to SHARE Sync Settings with my Family Members & Friends, How Can I Share Some of My Settings like tabs, bookmarks, browser extension with them. Also it is obvious I would not like to share my Passwords. Can you please help. This feature "Shari

  • Mac OS 10.4 QuickTime Pro purchased, registered, then "nothing"

    Today I purchased QuickTime Pro 7 for Mac OS X online. I have placed the correct information into the preferences/registration area and verified inside of the QuickTime 7.0.1 preference registration area. The Pro features are not visible (as in "noth

  • Advantages of SP13  for PI 7.0

    Hi,    can any body give me  the documenation  about Support Pack13 for PI 7.0 ...  because  i need to give a demo on this  SP13 .. what are  the advantages of SP13 ..  and what are the new features.. these all thing i  want to know... so, can any bo

  • Badi for setting default values in the transaction in APO.

    BADI NAME: SMOD_APOCF005 which is used for setting default values in the transaction. I have implemented the BADI using the below code but that BADI is not triggering. Please can you provide any solution for resolving this. As per my requirement I am

  • Finding coments in stored procedure

    In one of our database, we have 100 Stored Procedures, each Stored Procedure has comments. I want to find if comment are something like this 'Creator Name=Aamir' , What options do I have