How to collapse a folder in the project bin?

Hi there.
I'm trying to figure out how to collapse/expand a folder in the project bin.
I whipped up a AEGP that listens and reports any/all command IDs, but when I collapse/expand the folder, I'm not getting any command ids.
I've noticed there are many events that don't send any sort of command ID.
Any ideas, or do you happen to know the command code that I could issue to collapse/expand a folder?
I have not yet investigated if the javascript API offers a means to collapse/expand folders.
Looking at the SDK, a folder is just another AEGP_ItemH.  Is there an attribute on it that I can set to toggle the collapse/expand? I was under the impression that AEGP_ItemH are opaque objects, but I'm still pretty new to this SDK (and well, C programming) so I wasn't sure how to go about inspecting the object.
thanks!!
-Andy

Tom,
I have now discovered that your suggestion works, but ONLY IF there are NO BACKGROUND TASKS running.  I kept trying this over & over and I did eventually discover an almost imperceptible & very brief extra bolding of the folder name.  However, the focus would never stay on the label.  At some point I noticed my Background Tasks had stopped and then I could change the folder name as any Mac user would expect.  So, there is some undesirable effect associated with the background tasks.
Thanks for confirming how it is supposed to work.

Similar Messages

  • How to rename a new folder in the project library in FCPX

    How do I rename a new folder in the project library in FCPX?
    Thanks

    Hi
    Why not ask in FinalCut Pro X forum.
    My guess is as in iMovie'11 - point at it and ctrl-click on it - may be there is a re-name function in this menu.
    Why they didn't name it iMovie Pro X is beyond me.
    Yours Bengt W

  • I am attempting to upgrade from Adobe Premier Elements 9 to Adobe Premier Elements 13 after using 13's trial version for a few weeks.  I am unable to find where and how to do this without losing the project I have been working on.  Please help?

    I am attempting to upgrade from Adobe Premier Elements 9 to Adobe Premier Elements 13 after using 13's trial version for a few weeks.  I am unable to find where and how to do this without losing the project I have been working on.  Please help?

    Vere Clarke
    Premiere Elements 9.0/9.0.1 and Premiere Elements 13 are standalone products.
    So, you can have both on the same computer, but only open one for your work.
    The classical recommendation is to finish a project in the version in which it was created since there
    is no guarantee that a project from an earlier version will open in the later version. Probably will, but
    no guarantees. And, when you do explore this, do it from a copy of the earlier version project. Once you
    take the earlier version project into a later version one, you cannot go back to edit the later version edited
    project in the earlier version program.
    If you have both versions (9 and 13) on the same computer and you have not moved, deleted, renamed any of the version 9's files/folders,
    right click the saved closed Premiere Elements 9.0/9.0.1 project file, select Open With, and then Adobe Premiere Elements 13.
    (Your 9.0/9.0.1 saved closed project file should be found in Libraries/Documents/Adobe/Premiere Elements/9.0.)
    Please review and consider. If any questions or need clarification, please do not hesitate to let me know.
    Thank you.
    ATR

  • How to create a validation for the project coding mask

    Hi,
    Would just like to ask how to create a validation for the project coding mask wherein the WBS elements hierarchy will be checked against the template saved. For example,
    project coding mask is XXXX-XXXXX-XX-X-X-X-00-X
    mother WBS should be XXXX-XXXXX-X and lower level WBS would be XXXX-XXXXX-XX.
    The validation should not allow a mother WBS to be XXXX-XXXXX-XX.
    How can we go about this?

    Hi Jacquiline Bersamin,
    You can use validation with the combination of the level and the coding mask.
    In the validation:
    Pre requisite: WBS level = 1
    Validation: Prps-posid = prps-posid :1-12:
    Message : Error
    If required you can give the parameters for your detail error message.
    Please let me know if this does not work.
    Thanks
    Regards
    Srinivasan Desingh

  • How do you make the project bin window Not come up in quick edit in PE9?

    A few weeks ago I started to notice the Project Bin coming up whenever I went to quick edit. I don't think it did it before that. I always have to go to windows and uncheck it to get more screen space to work with.
    How do I get the Project Bin to Not automatically come up when I press Quick edit in Premier Elements 9?

    This is the Premiere Elements forum.
    Quick Edit is a function of Photoshop Elements. If this is a question about Photoshop Elements, you're more likely to get an answer in the Photoshop Elements forum.

  • How do you make the project bin window Not come up in quick edit?

    How do I get the Project Bin to Not automatically come up when I press Quick edit in Photoshop Elements 9?

    Yes, thanks, I understand how to close it by what you said and also clicking on Project Bin title bar.
    I would like to know how to change the default so the project bin does not automatically open when I open quick edit.
    Anybody know how to change the default to do this?

  • HOW TO CREATE SEVERAL folder for the generation and READING FILE

    HOW TO CREATE SEVERAL folder for the generation and READING FILE WITH THE COMMAND utl_File.
    please give an example to create 3 folders or directories ...
    I appreciate your attention ...
    Reynel Martinez Salazar

    I hope this link help you.
    [http://www.adp-gmbh.ch/ora/sql/create_directory.html]
    create or replace directory exp_dir as '/tmp';
    grant read, write on directory exp_dir to eygle;
    SQL> create or replace directory UTL_FILE_DIR as '/opt/oracle/utl_file';
    Directory created.
    SQL> declare
      2    fhandle utl_file.file_type;
      3  begin
      4    fhandle := utl_file.fopen('UTL_FILE_DIR', 'example.txt', 'w');
      5    utl_file.put_line(fhandle , 'eygle test write one');
      6    utl_file.put_line(fhandle , 'eygle test write two');
      7    utl_file.fclose(fhandle);
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> !
    [oracle@jumper 9.2.0]$ more /opt/oracle/utl_file/example.txt
    eygle test write one
    eygle test write two
    [oracle@jumper 9.2.0]$
    SQL> declare
      2    fhandle   utl_file.file_type;
      3    fp_buffer varchar2(4000);
      4  begin
      5    fhandle := utl_file.fopen ('UTL_FILE_DIR','example.txt', 'R');
      6 
      7    utl_file.get_line (fhandle , fp_buffer );
      8    dbms_output.put_line(fp_buffer );
      9    utl_file.get_line (fhandle , fp_buffer );
    10    dbms_output.put_line(fp_buffer );
    11    utl_file.fclose(fhandle);
    12  end;
    13  /
    eygle test write one
    eygle test write two
    PL/SQL procedure successfully completed.
    SQL> select * from dba_directories;
    OWNER                          DIRECTORY_NAME                 DIRECTORY_PATH
    SYS                            UTL_FILE_DIR                   /opt/oracle/utl_file
    SYS                            BDUMP_DIR                      /opt/oracle/admin/conner/bdump
    SYS                            EXP_DIR                        /opt/oracle/utl_file
    SQL> drop directory exp_dir;
    Directory dropped
    SQL> select * from dba_directories;
    OWNER                          DIRECTORY_NAME                 DIRECTORY_PATH
    SYS                            UTL_FILE_DIR                   /opt/oracle/utl_file
    SYS                            BDUMP_DIR                      /opt/oracle/admin/conner/bdumpRegards salim.
    Edited by: Salim Chelabi on Apr 4, 2009 4:33 PM

  • How to completely hide the Project Bin in PSE 6?

    Is there any way to completely hide the Project Bin in Photoshop Elements 6 for Mac? I don't need it, and it's hogging screen real estate. I've seen posts that say it can be hidden using the Window menu in PSE 10, but that doesn't work in PSE 6.
    Thanks!

    Hi Barbara:
    Thanks for your reply. I get no action clicking anywhere near the left edge, the right edge, or any edge.
    The thing I want to hide is the entire gray bar that's obscuring the bottom of my screen. In the following image, it's the area that contains the words "Show Project Bin", plus the frame edge above it (the area for which the cursor turns into the double-arrow resizer).
    Apparently, Adobe's idea of "hiding" the Project Bin means reducing it to the size shown in the above image from its expanded size, as shown in the following image:
    I can "Hide" that large area by clicking on the "Hide Project Bin" button. But that doesn't remove the annoying project bin frame. I want the entire thing gone. That's what I haven't been able to figure out how to do. No amount of probing and clicking with the mouse reveals any way of exterminating that nuisance.
    I'm probably missing something. It is unconscionable that Adobe would arbitrarily reduce my usable screen size by stealing control of my workspace, so I assume there must be a way to eliminate that "feature".
    Thanks again.

  • How can I merge folder with the same name so that the content does not replace the other

    How can I merge folder with the same name so that the content does not replace the other?

    >
    That's only a good idea if the semantics of sayHello
    as defined in MyInterface suggest that a
    RemoteException could occur. If not, then you're
    designing the interface to suit the way the
    implementing classes will be written, which smells.
    :-)But in practice you can't make a call which can be handled either remotely or locally without, at some point, dealing with the RemoteException.
    Therefore either RemoteException must be part of the interface or (an this is probably more satisfactory) you don't use the remote interface directly, but MyInterface is implemented by a wrapper class which deals with the exception.

  • Clean the project bin - how?

    Prompt a command like "remove unused clips" in Premiere to slightly clean up the project bin.

    I don't know why FCP doesn't do this.
    Another bug bear for me coming from other Non Linear systems is that there isn't an icon or anything to indicate if the media is being used in a sequence.
    Let's hope they address this soon, it was in Premiere 3 back in the mid nineties!

  • Saving Edited pics from the project bin

    I am a little rusty as I havent used my PSE 9 for quite some time and I cant remember how to save the files that have been edited in the project bin.  I click on File - Save As........But it will only allow me to save one pic at a time.  Thats it.  Can someone please refresh my memory on this.  I may be doing it all wrong..

      You need to double click on your main image and then drag your second image up from the project bin. That creates separate images on separate layers.
     

  • Show organizer files in the project bin.

    In the project bin the default option is to "show open files".  But there is an additional oprion in the drop down menu "Show files from Orgainzer".  I am just learning to use elements 8 and am reading a book that describes this and see the drop down menu in my program but when I choose that option nothing is displayed.  The open file thumbnail goes away but nothing from orgaizer replaces it.  Is this a bug in the program or am I doing something wrong?   Julie

    Sorry for the perhaps silly question, but did you send multiple files from the organizer to the editor? It's not just a shortcut to see all the photos in the organizer--it only shows the images you've sent over for editing. Are you saying you did send a bunch of files and they still don't appear? If you click back to the organizer do those images show the red band with a lock on it?

  • Open multiple images from the project bin

    In Elements 9 I can only seem to open 1 image from the project bin at a time! What am I doing wrong?
    Bob Dunkerley.

      You need to double click on your main image and then drag your second image up from the project bin. That creates separate images on separate layers.
     

  • The project Bin has disappeared

    Please can someone help...I have somehow maximized the editing pane and have consequently 'lost' the project bin which I urgently need for moving between projects and layering.

    See if Reset Panels helps:

  • How to have projectname_edge.js in a subfolder? (not in the same folder as the project file)

    Hello,
    Is it possible to have the file projectname_edge.js in a subfolder? Not in the same folder with projectname.html.
    It seems that edge.5.0.1.min.js looks for dependencies only in the same place as the main file of the project. Moving projectname_edge.js to other folder (js, script, etc) causes the animation not to run. Can I store it in different folder? I would like to put it into "Content" or "Scripts" folder on the server.
    I am trying to integrate edge animation into ASP.NET MVC application, and I do not have any index.html file. I am inserting the <!--Adobe Edge Runtime--> section into the view  (the .cshtml file stored in subfolder). Having the projectname_edge.js in the main server path require to deal with security settings, so I would like to put it in 'Scripts'.
    I found the video showing the solution for the older API: http://www.edgedocks.com/content/edge-animate-publish-files-and-js-folder but it is no longer valid with Edge 5.0 API
    Any ideas how to achieve this?
    Thank you in advance!
    Eric

    Thank You! This is exactly what I looked for!
    Additionaly having runtime projectname_edge.js in htmlroot in ASP.NET MVC website, is slowing down the animation show up. Now (with subfolder) it working fast and fluid
    Many, many thanks!

Maybe you are looking for

  • No longer able to receive photos in gmail or firefox, through chrome

    As of 11 am this morning EST i have been unable to receive emails that have photos attached to them. I have checked and this is happening in both my gmail acocunt and in my firfox account - I run both of these through Chrome. I have also had unusual

  • How to manage a deck?

    I do edit in my mac g4, and I do use a deck DSR11 without a problem, but now I am trying to edit in my macbook with the same deck, via firewire and the computer not even reconized the firewire, someone knows what shoul I do?

  • ORACLE instance terminated. Disconnection forced

    Hi, When I am trying to login , it is throwing "ORACLE instance terminated. Disconnection forced" Below is the message logged in ALERT Log Completed: ALTER ROLLBACK SEGMENT RBSL1 OFFLINE Sun Jun 23 00:42:35 2013 Errors in file D:\HA_salesupp\Dump_fil

  • Total Number of ASNs

    Hello all, How can i find the total number of ASNs processed by Supplier and the Total number of Received.? I know that we can find ASN from LIKP, but i dont understand how to distinguish between total number of ASNs processed and Total number of Rec

  • Hyperion Planning and Varying attribute

    Hi Can some help me in having varying attribute in Hyperion Planning application. Does Hyperion planning support Varying attribute concept? Regards Shyamkant