Modify Go button

Hi all,
I would like to modify "Go" button. I have found excellent blog how to create one "Go" button.
http://sranka.wordpress.com/2008/11/09/how-to-replace-multi-go-button-prompt-by-one/
Using this logic I would like to create something like this.
I have "main page" in dashboard, where users define parameter important for other pages in dashboard. In that main page I am having prompt with "Go" button. For me the problem is when I click on "Go" button parameter of prompt is saved, and user must click on first page to view data, I would like that when user click on "Go" it automatic sends him to first page of dashboard with selected parameter.
Is there any way to do this?
I have tried whit this script by applying link of first page, but it does not catch selected parameter.
<script>
function customCall()
{try{var aElm=document.getElementsByTagName('table');var tTableArray = new Array();var k = 0;for(var i=0; i<aElm.length; i++) {if(aElm.className=='GFPBox') {tTableArray[k] = document.getElementById(aElm[i].id);k++;}}GFPDoFilters_samvi('',tTableArray,true);
}catch(e){alert(' XXX ' + e);}}</script><td class="GFPSubmit"><table cellspacing="0"><tbody><tr><td class="XUIPromptEntry"><span class="minibuttonOn"><a onclick="javascript:customCall();" ref="javascript:void(null)" href=http://10.128.1.45:9704/analytics2/saw.dll?Dashboard&_scid=ixcW*p0EGH8&PortalPath=%2Fshared%2F02%ABC%2F_portal%2F2.1%20ABC&Page=1.%20ABC%201&col1="Col1"."Col"&val1=@{tmp_val}>GO</a>
</span><div value="dashboard" id="d:dashboard~p:b10pia6cf02k1ngq~s:j8obsfvm99vnd77s~g:c7te6i611dqgunnkScope"/></td>
</tr><tr><td/></tr></tbody></table></td>Edited by: Micek on 2009.07.30 10:33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Jose,
we are already tracking this in thread Selfservice. is it possible to know the value of a column?
--Shiv                                                                                                                                                                                                                                                           

Similar Messages

  • I have Final Cut Pro X (10.0.9) and would like to change my project settings but I am having trouble finding the 'Modify Settings button.'  Where exactly is it located?

    I have Final Cut Pro X (10.0.9) and would like to change my project settings but I am having trouble finding the 'Modify Settings button.'  Where exactly is it located?  Here is the link which gives the instructions but doesn't seem to say where the 'Modify Settings Button' is located: http://support.apple.com/kb/PH12526?viewlocale=en_US

    You have to choose – one settigf or another.
    The thing is.your HD clips will look better in an SD project than your SD clips will in an HD project.
    WIthout knowing much more about your project and the kind of content, it's really hard to be specific. But generally I'd let my project settings be guided by what fraction of my timeline will be made up of HD clips and how much SD clips. If it's 75% HD, I'd probably do an HD project…and so on,
    Good luck.
    Russ

  • Modify the Buttons of a TitleBar of a windowedApplication

    Hi all,
    I'd like to modify the button of my title bar of my windowed
    application (it's an AIR application).
    At first, I wanted to change the title rendrer so I modify my
    application-app.xml and add the following lign :
    [code]<systemChrome>none</systemChrome>[/code] (au lieu
    de standard)
    So my title is well displayed thanks those ligns in my css
    file :
    [code]WindowedApplication {
    color: #000000;
    backgroundAlpha: 1;
    title-text-style-name : "titleTextStyle";
    buttonStyleName: "buttonBarButton";
    firstButtonStyleName: "firstButtonBarButton";
    lastButtonStyleName: "lastButtonBarButton";
    background-image : "styles/OldSchool/bg.gif";
    backgroundColor: #EEEEEE;
    .titleTextStyle {
    font-family : luna;
    font-size : 30;
    }[/code]
    By I don't manage to customize my buttons that are grey and
    small (not handsome) instead of the fancy colors as usual (red,
    yellow, green). I saw in debug that the application had a TitleBar
    with a closeButton, a minimize and a maximize, but the following
    ligns don't change anything..
    [code]TitleBar
    closeButtonDisabledSkin:
    Embed(source="wmp11.swf",symbol="Panel_closeButtonDisabledSkin");
    closeButtonDownSkin:
    Embed(source="wmp11.swf",symbol="Panel_closeButtonDownSkin");
    closeButtonOverSkin:
    Embed(source="wmp11.swf",symbol="Panel_closeButtonOverSkin");
    closeButtonUpSkin:
    Embed(source="wmp11.swf",symbol="Panel_closeButtonUpSkin");
    }[/code]
    ou
    [code]TitleBar {
    buttonStyleName: "buttonBarButton";
    firstButtonStyleName: "firstButtonBarButton";
    lastButtonStyleName: "lastButtonBarButton";
    }[/code]
    or :
    [code].wideCloseButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    downSkin: Embed(source="wmp11.swf", symbol="wideCloseBttn");
    overSkin: Embed(source="wmp11.swf", symbol="wideCloseBttn");
    upSkin: Embed(source="wmp11.swf", symbol="wideCloseBttn");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="wideCloseBttn");
    color: #ffffff;
    textRollOverColor: #ffffff;
    textSelectedColor:#ffffff;
    // ButtonBars
    ButtonBar
    buttonStyleName: "buttonBarButton";
    firstButtonStyleName: "firstButtonBarButton";
    lastButtonStyleName: "lastButtonBarButton";
    ToggleButtonBar
    buttonStyleName: "buttonBarButton";
    firstButtonStyleName: "firstButtonBarButton";
    lastButtonStyleName: "lastButtonBarButton";
    .roundedButtonBar
    buttonStyleName: "roundedButtonBarButton";
    firstButtonStyleName: "roundedFirstButtonBarButton";
    lastButtonStyleName: "roundedLastButtonBarButton";
    // ButtonBarButtons
    .firstButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstDisabledSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstDownSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstOverSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedDisabledSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .buttonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonDisabledSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonDownSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonOverSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonSelectedDisabledSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_buttonUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .lastButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastDisabledSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastDownSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastOverSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastSelectedDisabledSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_lastUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .roundedFirstButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstUpSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="ButtonBar_firstSelectedDisabledSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_firstUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .roundedButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_buttonUpSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_buttonUpSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_selectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_buttonUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    .roundedLastButtonBarButton
    disabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastUpSkin");
    downSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    overSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    selectedDisabledSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastUpSkin");
    selectedDownSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    selectedOverSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    selectedUpSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastSelectedUpSkin");
    upSkin: Embed(source="wmp11.swf",
    symbol="roundedButtonBar_lastUpSkin");
    color: #000000;
    textRollOverColor: #000000;
    textSelectedColor:#000000;
    }[/code]
    with the wmp11.swf contained in the same folder as my css
    file but nothing happens !
    Does anybody knows how to resolve it ?
    Thanks !

    Hello Casperloo, 
    Your last statement makes me a liitle suspicious of what's going. So you cannot create a property node such as the ones below. 
    What about manually left clicking one of the properties and changing it like in the image below?
    Also is this only occurring with the specific property you are trying to utilize or all Daqmx Timing properties?
    Best Regards,
    Izzy O.
    Applications Engineer
    National Instruments
    www.ni.com/support

  • GPO Security Zones and Content Ratings "Modify Settings" buttons are disabled

    Task: Trying to modify a GPO so that specific users who logon to Remote Desktop Servers will have a lower Internet security level for Internet Explorer.
    We have two Windows Server 2008 Domain Controllers, when I access the GPO using the Group Policy Management Console and Editor on either of the two Domain Controllers, then navigate to User Configuration > Policies > Windows Settings > Internet Explorer
    Maintenance > Security > Security Zones and Content Ratings, the available "Modify Settings" buttons are both disabled.
    I've read through several forum posts relating to this and the closest solution mentioned was to turn off IE ESC for Administrators on both Domain Controllers. I've done this and it nothing has changed as a result. Is there a way enable the "Modify Settings"
    buttons, or is there another way to achieve the task mentioned at the top of this post?

    Hi,
    We need to import these settings before we modify them.
    To import security zones and privacy settings from our computer using IEM:
    Click
    Import the current security zones and privacy settings 
    To import content ratings from our computer:
    Click
    Import the current Content Ratings settings
    Regarding how to configure Security Zones and Content Ratings, the following article can be referred to for more information.
    Configure Security Zones and Content Ratings
    http://technet.microsoft.com/en-us/library/cc772410.aspx
    Best regards,
    Frank Shen

  • FBL5N - disable the modify document button

    Hi All!
    I have to perform the following task:
    When a user use the TCode FBL5N (Customer Line Item Display) there is a Modify button (which allows to modify the document). I have to disable this functionality.
    OR, in the Change Document screen, I have to modify the properties of two fields (output only): Terms of payment (BSEG-ZTERM) and Baseline date for due date calculation (BSEG-ZFBDT).
    I tried to perform the task using authorization objects (for the role which includes FBL5N transaction). It doesn't work because there are other roles with the same authorization object and 02 (Modify) as Activity allowed.
    Any suggestion will be appreciated.
    Best regards,
    Florina C.

    Max,
    Can I modify the authorization check for FBL5N and add one authorization created by me? Could be this one a solution for my problem?....This authorization should be check when those certain users press Modify button...
    Do you have some information about how can I create an authorization object?
    Thanks.
    Florina C.
    Message was edited by:
            Florina Cheta
    Message was edited by:
            Florina Cheta

  • Modifying Calendar buttons ?

    Hi,
    How can I modify the navigation buttons in the calendar template. I use HTML buttons everywhere else in my application and I would like the same for the calendar buttons.
    Thank you.

    OK I found the solution, just changed the button properties in the region.

  • Cannot Modify Navigation Button Text

    Is it possible to change the font, color, size, etc. for the navigation text buttons in iweb? I've tried everything (or maybe not everything!) and can't figure it out. I know how to modify text for everything else on the page. Thank you in advance!

    there certainly is a way
    in your inspector panel there is an option to not include navigation bar
    since you already know how to create text, etc
    you can create your own and then just hyperlink them to the designated page
    good luck

  • Modify facet buttons names

    I have af:panelCollection, in af:panelCollection's toolbar facet I insert af:toolbar. How can I change the names of the default buttons which appear like view and detach. I would like to translate them.
    <?xml version='1.0' encoding='windows-1251'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1251"/>
    <f:view>
    <!--<f:loadBundle basename="gdin.isin.uicli.bundles.MaritialStatusesBundle.properties"
    var="bundle"/>-->
    <af:document>
    <af:messages/>
    <af:form>
    <af:panelCollection>
    <f:facet name="menus"/>
    <f:facet name="toolbar">
    <af:toolbar>
    <af:commandButton actionListener="#{bindings.Create.execute}"
    text="Create"
    disabled="#{!bindings.Create.enabled}"/>
    <af:commandButton text="Edit"
    action="#{MaritalStatusBean.onEditRowAction}"
    disabled="#{MaritalStatusBean.disableEditButton}"/>
    <af:commandButton actionListener="#{bindings.Find.execute}"
    text="Find"
    disabled="#{!bindings.Find.enabled}"/>
    <af:commandButton actionListener="#{bindings.Commit.execute}"
    text="Commit"/>
    <af:commandButton actionListener="#{bindings.Rollback.execute}"
    text="Rollback" immediate="true">
    <af:resetActionListener/>
    <af:setActionListener from="#{false}"
    to="#{MaritalStatusBean.disableEditButton}"/>
    </af:commandButton>
    </af:toolbar>
    </f:facet>
    <f:facet name="statusbar"/>
    <af:table value="#{bindings.MaritalStatusesView.collectionModel}"
    var="row" rows="#{bindings.MaritalStatusesView.rangeSize}"
    first="#{bindings.MaritalStatusesView.rangeStart}"
    emptyText="#{bindings.MaritalStatusesView.viewable ? 'No rows yet.' : 'Access Denied.'}"
    fetchSize="#{bindings.MaritalStatusesView.rangeSize}"
    filterModel="#{bindings.MaritalStatusesViewQuery.queryDescriptor}"
    queryListener="#{bindings.MaritalStatusesViewQuery.processQuery}"
    filterVisible="true" varStatus="vs"
    selectedRowKeys="#{bindings.MaritalStatusesView.collectionModel.selectedRow}"
    selectionListener="#{bindings.MaritalStatusesView.collectionModel.makeCurrent}"
    rowSelection="single"
    binding="#{MaritalStatusBean.maritalStatusTable}"
    width="688" columnStretching="last" rowBandingInterval="0"
    inlineStyle="margin:2%;">
    <af:column sortProperty="Code" filterable="true" sortable="true"
    headerText="#{bindings.MaritalStatusesView.hints.Code.label}">
    <af:inputText value="#{row.Code}"
    required="#{bindings.MaritalStatusesView.hints.Code.mandatory}"
    columns="#{bindings.MaritalStatusesView.hints.Code.displayWidth}"
    readOnly="#{!(row.Code == MaritalStatusBean.selectedMaritalStatusCode)}">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.MaritalStatusesView.hints.Code.format}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Description" filterable="true"
    sortable="true"
    headerText="#{bindings.MaritalStatusesView.hints.Description.label}">
    <af:inputText value="#{row.Description}" simple="true"
    required="#{bindings.MaritalStatusesView.hints.Description.mandatory}"
    columns="#{bindings.MaritalStatusesView.hints.Description.displayWidth}"
    readOnly="#{!(row.Code == MaritalStatusBean.selectedMaritalStatusCode)}"/>
    </af:column>
    </af:table>
    </af:panelCollection>
    <af:commandLink text="&lt;&lt; Назад " action="back"
    inlineStyle="margin:2%;"/>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>

    The translation should be taken care of when you change the locale of your runtime environment.
    --Ric                                                                                                                                                                                                               

  • Modifying extra buttons to a Control?!?!

    I want to change a simple numerical control that has the increment/decrement buttons so that it has two sets of the increment/decrement buttons on. I want to be able to use one set for jumps of say the standard 1 unit but then the second set for smaller, say 0.1.
    Is this possible, I've looked through the control editor with no luck?
    If anyone knows that would be great.
    If this cannot be achieved is it possible to speed up the increments when you press continuously on it because at the moment they are painfully slow?
    Cheers

    Here's what i've done so far, but using three controls, two for the buttons and then they add together to write into the third control. Anyone got any way of making it so the buttons directly change control 3, i.e how it is each set of buttons have got to be pressed to get to zero.
    Thinking about it the increment/decrement buttons could be bouleans which just add a number each time to the property node of the third control.Bit messy though
    Chris
    Attachments:
    throttle button.vi ‏14 KB

  • AS3 stops working if text button is modified

    I have a perfectly working text based button positioned inside a movie clip and being called from the main time line.
    Then I decided to add a color changing effect on the up state of the button. Originally button had a static text for the Up, Dow, Over, Hit frames. As soon as I modified the text into a mc I am getting an error code:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at acolyte24A_fla::mainsite_mc_2/frame30()[acolyte24A_fla.mainsite_mc_2::frame30:4]
    Here is line 4 from frame 30:
    HowTo_maininfo_mc.HowTo_jtv4u_link_btn.addEventListener(MouseEvent.CLICK, onClick_openJTV);
    "HowTo_jtv4u_link_btn" is the button in question. It was working right before I modified the Up state into an MC.
    What is the proper steps to modify a button in this way?

    Thank You.
    I obviously had and still have some problems with tutorials from developphp, but 90% of my site is based on his staff. I always attributed the problems to my minimal level of expertise rather than his shortcomings. Would you be able to recommend a better, more reliable source of tutorials I can rely on?
    I have added a line of code right before the line as you instructed.
    So here is the line of code in question before I add the text line to an image based button:
    HowTo_maininfo_mc.HowTo_jtv4u_link_btn.addEventListener(MouseEvent.CLICK, onClick_openJTV);
    function onClick_openJTV(event:MouseEvent) :void {
    navigateToURL(new URLRequest("http://www.ubloom.com/index.php?option=com_content&task=view&id=718&It emid=152"));
    here how it looks when I add trace function:
    trace(HowTo_maininfo_mc);
    trace(HowTo_maininfo_mc.HowTo_jtv4u_link_btn);
    HowTo_maininfo_mc.HowTo_jtv4u_link_btn.addEventListener(MouseEvent.CLICK, onClick_openJTV);
    function onClick_openJTV(event:MouseEvent) :void {
    navigateToURL(new URLRequest("http://www.ubloom.com/index.php?option=com_content&task=view&id=718&It emid=152"));
    This is what I have in the OUTPUT panel:
    [object HowTo_mainInfo_221]
    [object SimpleButton]
    [object HowTo_mainInfo_221]
    [object SimpleButton]
    The button is working and opens a site as intended.
    Now I add a line of text to the button as my design intention is for user to see the link being written out and click on it. ( I do not want to do it as dynamic text because I want it to have Over and Out states where link lights up and in Up state it changes colors on the screen)
    So after adding a line of text
    [object HowTo_mainInfo_221]
    null
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at acolyte24A_fla::mainsite_mc_2/frame30()[acolyte24A_fla.mainsite_mc_2::frame30:6]
    I confirm I left the working button intact, all I did is added a text based mc to it.
    Here is the line 6 from frame 30:
    HowTo_maininfo_mc.HowTo_jtv4u_link_btn.addEventListener(MouseEvent.CLICK, onClick_openJTV);
    How can it be a null object reference if it was just working before I added text, I did no even remove the drawing object from the button, just added the text?

  • Control Enable/Disable of Save/Delete/Modify buttons

    Hi Friends,
    Have some one written a program how to enable disable the buttons on a for. Like i have 4 buttons
    1) Add New
    2) Save
    3) Modify
    4) Delete
    Now i want to control the enable/disable of these butons. Like when a blank record. ADD NEW, MODIFY, DLETE button shuld remain disable and ONLY SAVE button remains Enable. Similarly when there a change in record. MODIFY BUTTON is enabled.
    Similarly other functions. Have someone written the code for this control. I am trying but no desire results.
    Pliz Help,
    Imran

    Hello Imran
    You have to write a code like
    If <condition> the
    set_item_property(button,enable,property<true/false>);
    ELSIF <condition2>
    set_item_property(button,enable,property<true/false>);
    ELSIF <condition3>
    set_item_property(button,enable,property<true/false>);
    ELSE
    set_item_property(button,enable,property<true/false>);
    END IF;
    the condition can be checked :SYSTEM.form_status.
    Regards
    Mel

  • How do modify the highlight color of a button to RED?

    HI! I want to know what is the easiest way to modify the
    highlight color or
    a button to RED. ( I want the helo-green or orange theme).
    I know how to change the theme or by using the
    setStyle("themeColor",
    "haloOrange"); BUT there is no RED. so what is the easiest
    root to modify
    all button instances.?
    PaulD

    David Stiller wrote:
    > Paul,
    >
    >> I know how to change the theme or by using the
    setStyle("themeColor",
    >> "haloOrange"); BUT there is no RED. so what is the
    easiest root to
    >> modify all button instances.?
    >
    > Instead of named themes (like haloOrange), just specify
    a hexadecimal
    > color as the second parameter. setStyle("themeColor",
    0xFF0000); --
    > You'll have to experiment whether that second parameter
    needs to be in
    > quotes or not.
    >
    >
    > David Stiller
    > Adobe Community Expert
    > Dev blog,
    http://www.quip.net/blog/
    > "Luck is the residue of good design."
    HI! Thanks it worked. below is the whole script to modify an
    instance to
    RED -- or any color.
    import mx.styles.CSSStyleDeclaration;
    var new_style:Object = new CSSStyleDeclaration();
    _global.styles.myStyle = new_style;
    new_style.setStyle("color", 0x666699);
    setStyle("styleName", "myStyle");
    // my_button.setStyle("styleName", "myStyle"); --- Use this
    to only modify
    this instance.
    _global.styles.myStyle.setStyle("themeColor", 0xC83F3F);
    Hope this helps someone else. :)
    Paul D

  • What is the best way to modify the closed captioning button to read "FR" instead of "CC"

    I'm considering using Flash to modify the button text for the CC button in one of the playbars.
    Just wanted to know if there is a better way than hacking the playbar fla file.
    And if this is the only way, if there are publishing settings to watch out for with the swf file output.

    Other than hacking it from Flash, you can insert a button (Labelled FR) to appear for your project and user can click on it to toggle the Closed Caption on/off, you can use the cpCmndCC variable, 0/1, Enable/disable closed captioning (CC). You can keep the Closed Caption button unchecked from Skin.
    This should be easier, I guess.
    Alternately, you can learn in depth about customzing Playbars here --
    http://blogs.adobe.com/captivate/2010/11/playbars-demystified.html
    Good luck.
    Thanks,
    Anjaneai

  • Delete all instances of a button in a project - Captivate 4

    Hi there.
    It seems that with Captivate 2 (or maybe 3), you could copy a button and paste it on all the rest of the slides in your project.  Then if you had to modify that button, you could select it from the Library (memory's fuzzy here, that may not be accurate), then delete it, and it would delete the button from every slide.
    With Captivate 4, I don't see any buttons in the Library.  It also appears that if I paste a button onto all of my slides, each button is renamed and lives as a separate instance, and it's not just replicas of the original button.
    Is this the case? 
    Basically, I want to delete a button from my project that's been pasted on all of my slides.  Without deleting it slide by slide.  Can this be done in Captivate 4?
    I am aware of persistent buttons available via the Widgets functionality, but that wasn't appropriate for my project in this case.
    Thanks,
    Tichelle

    Here's a way to at least delete all Back buttons in a project at once:
    1.    Select Preferences from Edit menu.
    2.    In the Category pane on the left side of the Preferences window, select Quiz>Settings.
    3.    Under the Settings part of the window, uncheck the box next to “Allow backward movement.”
    4.    Click the OK button.
    NOTES:   • Depending on how many slides are in your project, it can take several seconds to complete the process. The Preferences window will disappear when it has completed removing all Back buttons.
                     • Also, if this doesn’t work for some reason (it didn’t remove the Back buttons from all my slides a couple of times), start by first selecting all slides (from Edit menu or Ctrl+A).

  • How to disable a button using Java Script in Apex

    Hi All,
    I was trying to disable a button when the value of a select list item in the same page is equal to zero. Following are the steps which I did.
    1) Created a new button template as <table class="t9StandardButton" id="#BUTTON_ID#" cellspacing="0" cellpadding="0" border="0" summary="">
    2) Changed the existing button template to the newly created button template.
    3) Added onchange="javascript:fdisplay(this);" to form element value of select list
    4) Added the following java script in the page header
    <script type="text/javascript">
    function fdisplay(some) {
    if (some.value==0){
    html_GetElement ('#BUTTON_ID#').disabled = true;
    else
    html_GetElement ('#BUTTON_ID#').disabled = false;
    </script>
    But the script doesn't work. Is there anything I am missing here. Please advice.
    Thanks,
    Vikas

    Vikas:
    In the 'Button Attributes' field of the button enter 'id='thisButton'.
    Modify the button template to include the substitution string #BUTTON_ATTRIBUTES# . This should be put in the anchor tag in the template defintion.
    Modify your Javascript to reference the above id as
    html_GetElement ('thisButton').disabled = true;
    ....Varad

Maybe you are looking for