Hide/show element on click out of an other symbol

Hi,
i want to hide an element by click. The element which is clicked is inside an other symbol, which the one that should be hidden.
Please tell me how i can handle this.
Thank you very much

// Get the symbol element "kitten_1" and hide the element "kitten_paw"
sym.getComposition().getStage().getSymbol("kitten_1").$("kitten_paw").hide();

Similar Messages

  • When downloading anything from anywhere, firefox 3.6 freezes with the hourglass showing, browser can closed out with affecting other computer operations. any suggestions? thanks

    I have McAfee antivirus plus, and still have situtation when Mcafee is turned off. Mcafee seems to think the problem lies with firefox. This have been happening for quite awhile now, not being able to get any downloads to go thru, although update for XP, Virus definitions, etc. seem to work fine. any help out there? thanks

    I have McAfee antivirus plus, and still have situtation when Mcafee is turned off. Mcafee seems to think the problem lies with firefox. This have been happening for quite awhile now, not being able to get any downloads to go thru, although update for XP, Virus definitions, etc. seem to work fine. any help out there? thanks

  • Knowing which Row was selected when Hide/Show is clicked

    Hi everyone,
    I have an advanced table, with some search criteria that works. I have added a "detail" flag and when I click the link Hide/Show, the details are displayed.
    How can I get in the code which Hide/Show link was clicked? I am more interesting in getting the Row from the VO which the Hide/Show link was clicked?
    When I get the "event" parameter from the pageContext (pageContext.getParameter("event") ) it returns "hide" or "show", but I don't know which was row that was clicked.
    What I am trying to accomplish is the following. In my advanced table I have "Select" checkBoxes. I want to add the "Hide/Show details" functionality and try to have the details displayed in an advanced table with its own "Select" checkBoxes.
    Can it be done?

    Hi,
    Create a Primary Key in View Object's Query for the table.
    Now to know on which row hide/show has been clicked you need to capture the row reference which is nothing but Primary Key for that row.
    Use this code in processformrequest:
    if(("hide".equalsIgnoreCase(pageContext.getParameter("event"))))
    String rowReference = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    TestMassDeleteSearchVORowImpl row = (TestMassDeleteSearchVORowImpl)am.findRowByRef(rowReference);
    String lname = (String) row.getSelectFlag();//to get the value of checkbox
    Thanks,
    Gaurav

  • Query Regarding Hide/Show Bean

    All,
    Is there any way by which we can control rendering (Controller processRequest call)of the Hide/Show and one click and disclose it, Render it.( Controller processRequest call)
    Seen that even if the hide/show is in hidden state , still the Region controller processRequest is being called. If this is the case, how the hide/show component is advantageous over other webBeans on performance view point?
    Thanks
    Joseph

    My requirement is not call the processRequest of the region when its not rendered in disclosed mode.
    >>> When a bean is enabled on a page, its associated controller will always be called. Its the standard behavior. How would you otherwise do the related processing if some action is performed on the bean? Check the initial chapters of dev guide on the page bean rendering and controller method calls.
    If you have some conditional code, put it inside the main page's controller and execute on show/hide bean's status.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Display Hide screen elements on radio button select

    Hi all,
    We have requirement to display some elements if radio button 1 is selected and display others elements if radio button 2 is selected .
    All elements should display/hide on radio button click not on any other button .
    <REMOVED BY MODERATOR>
    Regards,
    Edited by: Alvaro Tejada Galindo on Jun 12, 2008 5:34 PM

    Hi,
    Refer the code below:
    *Radiobuttons for selecting single material or range of BOM components
    SELECTION-SCREEN:BEGIN OF BLOCK b1 WITH FRAME TITLE text-001 .
    *Radiobutton for selecting material
    PARAMETERS:rb_mat RADIOBUTTON GROUP g1 DEFAULT 'X' USER-COMMAND com1.
    *Radiobutton for selecting BOM components
    PARAMETERS:rb_comp RADIOBUTTON GROUP g1.
    SELECTION-SCREEN END OF BLOCK b1.
    *Enter BOM header and details
    SELECTION-SCREEN BEGIN OF BLOCK sub1 WITH FRAME TITLE text-002.
    PARAMETERS:p_matnr TYPE mara-matnr MODIF ID id1.                 "Material Number
    PARAMETERS:p_werks TYPE marc-werks MODIF ID id1.                 "Plant
    PARAMETERS:p_stlan TYPE mast-stlan MODIF ID id1.                 "BOM usage
    PARAMETERS:p_stlal TYPE mast-stlal MODIF ID id1.                 "Alternative BOM
    PARAMETERS:p_capid TYPE rc29l-capid MODIF ID id1.                "BOM Application
    SELECTION-SCREEN END OF BLOCK sub1.
    *Enter BOM components
    SELECTION-SCREEN BEGIN OF BLOCK sub2 WITH FRAME TITLE text-003.
    SELECT-OPTIONS:s_matnr FOR marc-matnr MODIF ID id2.              "Material Number(BOM component)
    SELECTION-SCREEN END OF BLOCK sub2.
    *Enter document details
    SELECTION-SCREEN BEGIN OF BLOCK sub3 WITH FRAME TITLE text-004.
    *Document number
    PARAMETERS:p_doknr TYPE draw-doknr.
    *Document Type
    PARAMETERS:p_dokar TYPE draw-dokar.
    *Document Part
    PARAMETERS:p_doktl TYPE draw-doktl DEFAULT '000'.
    *Document Version
    PARAMETERS:p_dokvr TYPE draw-dokvr DEFAULT '00'.
    SELECTION-SCREEN END OF BLOCK sub3.
    *Display screen based on selection of radio button
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF rb_mat = 'X'.
          IF screen-group1 = 'ID2'.
            screen-active = 0.
          ENDIF.
        ELSEIF rb_comp = 'X'.
          IF screen-group1 = 'ID1'.
            screen-active = 0.
          ENDIF.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.

  • HT201914 how do I get the Tool bar on my screen the show toolbar is greyed out

    How do I get the Toolbar on my screen the open toolbar in view is greyed out thanks

    Which application are you using where Show Toolbar is grayed out?

  • Using an array to show/hide multiple elements?

    I have two elements that need to be hidden:
    "mov-imp"
    "mov-pim"
    Currently, I am doing this:
    var arr = ["mov-imp", "mov-pim"];
    // This is the onclick function
    sym.$.each(arr, function(){
                        $(this).hide();
    What's the best way to show/hide multiple elements/symbols in AE?
    Thanks!

    Hi Ashish, here is how you can hide all symbols in an array on button click. I'm not sure what you're asking in your second post, if you can clarify that.
    Example:
    www.timjaramillo.com/code/edge/arrays_hide_objects
    Source:
    www.timjaramillo.com/code/edge/_source/arrays_hide_objects.zip
    Code on button.click event:
    // if this button stays at root, you can just call sym.hideObjects();
    // this is in case you nest your button inside other symbols
    sym.getComposition().getStage().hideObjects();
    Code on Stage.compositionReady:
    var arr = ["obj1", "obj2"];
    sym.hideObjects = function(){
              $.each(arr, function(index, value) {
                        sym.$(value).hide();

  • When I go to About This Mac and click on Storage it shows 421.93GB as Other. This only leaves 46.85GB of 499.25GB free. How do I find out what this "Other" is so I can remove the stuff I don't need?

    When I go to About This Mac and click on Storage it shows 421.93GB as Other. This only leaves 46.85GB of 499.25GB free. How do I find out what this "Other" is so I can remove the stuff I don't need?

    What kind of use do you make of your MBP?  A lot of photo or video?  If so, you may be storing a lot of large files.  Look at Finder and see what the file system looks like.  Do you have large libraries of data files associated with applications?
    You may want to think about an external hard drive to use for backups and data storage, you can point applications to the external drive as the default storage location.
    A good source of external drives at a reasonable price is the Mac specialist, OWC, http://www.macsales.com
    I bought their Mercury Elite Pro 2 TB dirve last September and set it up to use part for Time Machine backup and part for other work space.  Setup with Disk utility into two partitions is very quick and easy.  Just remember to format as Extended Journaled with GUID partition table.  Setting the partition sizes is by using a braphical image on screen in DU so it is like falling off a log, so easy.

  • Trying to hide/show all series in legend with click on 'deselect' option.

    Hi Friends,
    I am trying to hide/show all series in legend with click on 'deselect' option. Please see the code below, let me what change i need to do:
    $(function () {
    $('#container').highcharts({
    chart: {
    type: 'line',
    marginRight: 130,
    marginBottom: 25
    title: {
    text: 'Monthly Average Temperature',
    x: -20 //center
    subtitle: {
    text: 'Source: WorldClimate.com',
    x: -20
    xAxis: {
    categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
    'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    yAxis: {
    title: {
    text: 'Temperature (°C)'
    plotLines: [{
    value: 0,
    width: 1,
    color: '#808080'
    tooltip: {
    valueSuffix: '°C'
    legend: {
    layout: 'vertical',
    align: 'right',
    verticalAlign: 'top',
    x: -10,
    y: 100,
    borderWidth: 0
                   plotOptions: {
    series: {
    events: {
    legendItemClick: function(event) {
    //var visibility = this.visible ? 'visible' : 'hidden';
    // (!confirm('The series is currently '+
    //visibility +'. Do you want to change that?')) {
    // alert ('other legend');
                                                                     if (this.name == 'Deselect')
    alert('hi');
    series.hide();
    //return false;
    series: [{
    name: 'Tokyo',
    data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
    name: 'New York',
    data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
    name: 'Berlin',
    data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
    name: 'London',
    data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
    name: 'Deselect',
    data: []
    Edited by: oracle_student_777 on Mar 27, 2013 10:05 PM
    Edited by: oracle_student_777 on Mar 28, 2013 4:08 AM
    Edited by: oracle_student_777 on Mar 28, 2013 8:59 PM
    Edited by: oracle_student_777 on Mar 28, 2013 11:15 PM

    More generally, Show All will only show when the Organizer isn't showing all your photos.  For example, if you click on a tag to show just the photos with that tag, the Show All button will show up.
    Alas, what I said above isn't completely true.   There are a number of situations where this rule doesn't hold:
    - When you've restricted the photos shown to a date range using Find > Set Date Range.
    - When you've restricted which media types to show using View > Media Types.
    - When you type text quickly into the search box and hit enter (on a large catalog).

  • Horizontally laid-out hide-show regions/ mini-tabbed pages

    I'd like a mini-tabbed page layout, I can almost achieve this by having hide-show regions in which only one hide-show region is visible at a time, however the regions are stacked vertically, not horizontally. I don't want to use regular tabbed regions, because
    a) I'm already using two levels of tabs,
    b) I want these tabs to be all on the same page so I can use page-level processes.
    Cheers, Mark

    Hello Murray
    Thanks for going to the trouble of creating the little test site.
    Other browsers appear to load the pages much quicker. This may be because they are able to more inteligently handle our code, I don't know. Safari on our Macs zooms through it.
    In IE6 if I open a large Lesson and click next I see, at the bottom of the screen in the Status Bar, "(21 items remaining)" and then "(20 items remaining)" etc. which counts down and then disappears. Interestingly if the next screen happens to display the same image this does not happen, just the message "Done". If the next screen has a different image then the count down from "(21 items remaining)" again as all the linked resources (I presume) are downloaded.
    I have opened your site in IE6 (Windows XP Pro) and I don't see the message. However the image is so small that I may not because it is so fast to load.
    It may be related to how IE6 handles Temporary Internet Files, I'm not sure.

  • Inbox Doesn't Show New Mail Until I Click Out of Inbox and Click Back In

    Hello, I originally posted this in the Microsoft Community, but I was told to post here instead. HELP!!! Nobody I know seems to have an answer for this.
    I have Outlook 2010 connected to Exchange (work email). Whenever I get new mail, I have to click out of the Inbox and then click back in, in order to see and open my new mail. I do receive the pop-up notification in the lower right hand corner, and
    I receive the "(1)" notification next to "Inbox" on the left side menu (that's how I know when I have new mail), but no actual email shows in the Reading/Window Pane. It's like I have to refresh my Inbox.
    The problem does not exist with any of my Inbox subfolders - only the Inbox itself.
    When I had my department help desk remote in, the problem ceased (making me sound crazy), but when the technician logged off remote access, boom, the problem was back.
    I've searched the internet, contacted my help desk multiple times, and deleted and re-created my Outlook profile, but nothing has worked so far.
    Any insight into this issue would be greatly appreciated, as this problem is a pain!

    Hi,
    Please check whether you can see the items in your Inbox using Online mode or Outlook Web Access or Outlook Web App (OWA). If you just cannot see them in your Cached mode profile, please start Outlook using the following command-line (Click
    Start and then click Run) to have a try:
    Outlook.exe /cleanips
    http://support.microsoft.com/kb/2330226
    If it doesn’t work, please change a new computer to have a try.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Show/Hide AP Element Works Once

    I have an element on a page that is hidden.  I use a picture thumbnail to reveal it the element when clicked.  In the element I have a detail photo and some text that hides the element.  Once I have revealed and then re-hidden the element, I can no longer reveal it again.  Any ideas why this is.  Please let me know if you need any further info to diagnose the problem.
    Thanks,
    Pharaoh

    Hi,
    look here this could be a(n other) solution for you:
    http://www.d.umn.edu/itss/support/Training/Online/DreamweaverIntro4/example2.htm
    Hans-G.

  • Hide/Show a graph based on button click .

    I have to show a graph based on the values selected in the shuttle . The graph should be drawn only when a button( "Show graph") is clicked . My question is
    1) If the set the button's action to submit, it resets and empties the selected values in the shuttle . How do I prevent that ?
    2) How do I make the graph appear and disappear based on the button click ( Like a toggle button ) ?
    3) As I can draw the graph only from the values selected in the shuttle , the query parsing fails . However , the graph displays when the shuttle get populated with selected values . Is there a way to get around that .
    Thanks for your help .

    There is nothing wrong with your code, so I'd look elsewhere for the problem. Is this a direct copy of what you have on your page?
    :P1_COMBO1 in ('Option 1', 'Option 2')
    And
    :P1_COMBO2 = 'Option Combo 2'And the page item values are exactly as you have in the quoted strings? You might run the page in debug and confirm the page item values are exact.
    Edited by: Bob37 on Dec 6, 2011 2:18 PM

  • Show/hide field options are grayed out

    If a drop down value is 1, I want to show field #1. If the drop down value is 2, I want to show fields #1 & 2. If the value is 3, I want to show fields # 1 2 & 3, etc. This appears not to be possible; a show hide rule is already created for value 1 and appears unavailable for a new rule for value 2. Any ideas for a workaround?

    Yes you can do this using the hide show logic. In the case you describe you want to use the if any rule rather than the if all rule. For drop down item one the logic is if any (1, 2 or 3) are selected show item one. For item two the logic is if (2 or 3) are selected show item 2.
    Andrew

  • Hide / Show region template - how to make it stay visible after NEXT& PREV?

    Hello,
    I am using the Hide / Show region template (by the way great idea to create this template ;)
    By default the region is hidden. If i want to see the region content (it is a report) I click on that icon and it becomes visible. For my report I use the pagination "ROW Ranges X to Y of Z (with pagination)".
    The issue is that if I click NEXT of Previous, the region is closing (hidding).. and in order to see the next / previous page of my report I have to re-open it..
    Is there any known workaround for this?
    Thank you in advance
    Anca

    I would start at Re: Toggle all hide show regions on a page open/closed
    It references the using javascript to manipulate your hide/show regions. It should get you started in the right direction. It is about the most straight-forward example I have seen for what you are trying to do<br><br>
    You could trigger the javascript after your page is rendered by calling it from the page footer and reference the values of page items to determine if you are supposed to hide the region(s).<br>
    Create a page item called P88_HIDESHOW_REGION1 and set it's value to Y or N depending on whether the #REQUEST# has a string in it that is part of report pagination. If you hover over a "next page" button in a report, check out the resulting URL that pops up in your browser.....it looks like ..../f?p=900:210:8352027355600111016:pg_R_241403738845262873:NO&pg_min_row=31&pg_max_rows=30&pg_rows_fetched=30
    <br>
    You could do an instr(:REQUEST,'pg_R_') > 0 then set P88_HIDESHOW_REGION1 = 'Y' else P88_HIDESHOW_REGION1 = 'N'. Your javascript called at the footer of the page could set the display of the region to on or off depending on the result of P88_HIDESHOW_REGION1

Maybe you are looking for

  • Save and Open Dialog Boxes

    Hi, Newbie I have been programing in VB.NET for around 18 months and know that there is an object in the environment that adds an open and a save dialog box onto a form as well as ones for other dialog boxes for other jobs. However i was wondering if

  • How do I create a library of quotations that I can use in any Pages document

    I live in France and write letters to different people. Unlike a simple "Sincerely" or "Best Regards" sign-off in US letters, French etiquette uses a number of  "Formules de Politesses" to sign-off a letter. According to one's position in regards to

  • Can't drag mp3's from itunes library into iphone 3G S

    My entire itunes library has been synced with my iphone, however, I cannot remove any of the songs that were automatically synced; when I click on the iphone library in itunes it is all grayed out. Also, I cannot drag songs into my iphone library. I'

  • Can i run all the SQL And PL/SQL in Oracle SQL Developer?

    hi all I have heard that Oracle Sql Developer is a free editor for Oracle DB from Oracle. Is it possible to run all the the procedres and functions in that editor is there any limitation for that ,can i run all the things that we can run on the SQL P

  • Setting up FMS in an ISP Senario

    Hi there, I have just set up FMS on a server within our datacentre. I have opened up the ports on the firewall for that servers IP address but I still cant connect to the application from the outside world!!! Any ideas? Thanks David