Selecting all items in Project manager

Using Robohelp HTML 9.
My main problem is getting the TOC to alphabetize. I have searched and read the two topics on this but the solution doesn't work for me.
The solution was to alpha the PM list, then delete the current TOC topics and drag and drop the newly alphabetized PM topics over to the TOC, but I can only drag one topic at a time from PM and move it over to the TOC pane and drop it? Surely there must be a way to grab them all and drag and drop?
Then I thought maybe I need to do it from the TOC folder in Project Manager? But when I open the TOC folder under PM it just shows me the name of my help file rather then a list of TOC topics.
So I'm stumped, this is a new product for me and my self learning is not very far along but I'm trying!
Thank you! Below I have posted a screen shot of what I am trying to do. Ahd below that the TOC folder under PM just shows me the filename?

Hi there
You would likely have better luck selecting topics in the Topic List pod. In that pod you can sort topics alphabetically and even filter the view to specific folders.
Just select the topics in the pod, then click the column of icons and drag to the TOC to insert.
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7, 8 or 9 within the day!
Adobe Certified RoboHelp HTML Training
SorcerStone Blog
RoboHelp eBooks

Similar Messages

  • Programmatically select all items in a list

    Hi, I've been looking through the online docs trying to find
    a way to programmatically select all items in a list. I have a
    checkbox that when checked should select all items in a list. I
    found a method to clear all selections but not one to select all.
    Did I just miss it? Thanks!

    I don't know of any built-in functions to select all list
    items, but here is an example function to select all items in a
    list:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*" layout="absolute">
    <mx:Script>
    <![CDATA[
    [Bindable] private var people_xml:XML =
    <people>
    <person>Jen</person>
    <person>Brian</person>
    <person>Scot</person>
    </people>;
    private function select_all():void {
    var indices:Array = new Array();
    for (var i:uint = 0; i<people_xml.children().length();
    i++) {
    indices.push(i);
    peopleList.selectedIndices = indices;
    ]]>
    </mx:Script>
    <mx:Button x="125" y="10" label="Select All"
    click="select_all()"/>
    <mx:List x="10" y="10" allowMultipleSelection="true"
    dataProvider="{people_xml.person}" id="peopleList"
    labelField="person" width="107"></mx:List>
    </mx:Application>
    Vygo

  • How to Create a Parameterized Report - The select "- ALL-" for department and manager not working.

    I downloaded the OEHR Sample Objects application and followed the steps in Oracle® Application Express Advanced Tutorials
    Release 3.2.
    The parameters and report seem to be working correctly except when I enter "all" for department or manager I get no matching hits.
    What's the most efficient way to retrieve "all" if the users selects all for dept and mgr - thus we'd want to return all records in the table.
    Region snipprt
    Enter Search
    Search Employee
    Dept
    - ALL -
    Administration
    Marketing
    Purchasing
    Human Resources
    Shipping
    IT
    Public Relations
    Sales
    Executive
    Finance
    Accounting
    Treasury
    Corporate Tax
    Control And Credit
    Shareholder Services
    Benefits
    Manufacturing
    Construction
    Contracting
    Operations
    IT Support
    NOC
    IT Helpdesk
    Government Sales
    Retail Sales
    Recruiting
    Payroll
    Mgr
    - ALL -
    Steven King
    Neena Kochhar
    Lex De Haan
    Alexander Hunold
    Nancy Greenberg
    Den Raphaely
    Matthew Weiss
    Adam Fripp
    Payam Kaufling
    Shanta Vollman
    Kevin Mourgos
    John Russell
    Karen Partners
    Alberto Errazuriz
    Gerald Cambrault
    Eleni Zlotkey
    Michael Hartstein
    Shelley Higgins
    The following is the sql that was provided as part of the turitoral.
    SELECT
       "OEHR_EMPLOYEES"."EMPLOYEE_ID" "EMPLOYEE_ID",
       "OEHR_EMPLOYEES"."FIRST_NAME" "FIRST_NAME",
       "OEHR_EMPLOYEES"."LAST_NAME" "LAST_NAME",
       "OEHR_EMPLOYEES"."EMAIL" "EMAIL",
       "OEHR_EMPLOYEES"."PHONE_NUMBER" "PHONE_NUMBER",
       "OEHR_EMPLOYEES"."HIRE_DATE" "HIRE_DATE",
       "OEHR_EMPLOYEES"."JOB_ID" "JOB_ID",
       "OEHR_EMPLOYEES"."SALARY" "SALARY",
       "OEHR_EMPLOYEES"."COMMISSION_PCT" "COMMISSION_PCT",
       "OEHR_EMPLOYEES"."MANAGER_ID" "MANAGER_ID",
       "OEHR_EMPLOYEES"."DEPARTMENT_ID" "DEPARTMENT_ID"
    FROM
       "#OWNER#"."OEHR_EMPLOYEES" "OEHR_EMPLOYEES"
    WHERE
         (lower(first_name) like '%' || lower(:P1_NAME) || '%' OR
          lower(last_name) like '%' || lower(:P1_NAME) || '%')
    AND department_id = decode(:P1_DEPT,'%null%',department_id,:P1_DEPT)
    AND manager_id = decode(:P1_MGR,'%null%',manager_id,:P1_MGR)

    Hi,
    Use this..
    SELECT
       "OEHR_EMPLOYEES"."EMPLOYEE_ID" "EMPLOYEE_ID",
       "OEHR_EMPLOYEES"."FIRST_NAME" "FIRST_NAME",
       "OEHR_EMPLOYEES"."LAST_NAME" "LAST_NAME",
       "OEHR_EMPLOYEES"."EMAIL" "EMAIL",
       "OEHR_EMPLOYEES"."PHONE_NUMBER" "PHONE_NUMBER",
       "OEHR_EMPLOYEES"."HIRE_DATE" "HIRE_DATE",
       "OEHR_EMPLOYEES"."JOB_ID" "JOB_ID",
       "OEHR_EMPLOYEES"."SALARY" "SALARY",
       "OEHR_EMPLOYEES"."COMMISSION_PCT" "COMMISSION_PCT",
       "OEHR_EMPLOYEES"."MANAGER_ID" "MANAGER_ID",
       "OEHR_EMPLOYEES"."DEPARTMENT_ID" "DEPARTMENT_ID"
    FROM
       "#OWNER#"."OEHR_EMPLOYEES" "OEHR_EMPLOYEES"
    WHERE
        (:P1_NAME IS NULL OR
            (:P1_NAME IS NOT NULL AND
                    (lower(first_name) like '%' || lower(:P1_NAME) || '%') OR
                    (lower(last_name) like '%' || lower(:P1_NAME) || '%')
        ) AND
        (:P1_DEPT IS NULL OR department_id = :P1_DEPT) AND
        (:P1_MGR IS NULL OR manager_id = :P1_MGR)

  • Forms in PowerShell: clear checkedlistbox items when "select all" is deselected

    Hello all,
    I recently got help to add a "select all" checkbox to my checkedlistbox, and it works great. However, I'd like to have it also work where, when the "select all" checkbox is consequently unchecked, it clears all the checkboxes. Is this
    easy to do, or would it be easier to just have an "unselect all" checkbox? Code is as follows:
    [void][system.reflection.assembly]::LoadWithPartialName("System.Drawing")
    [void][System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
    $objForm = New-Object System.Windows.Forms.Form
    $objForm.Text = "Test"
    $objForm.Size = New-Object System.Drawing.Size(700,300)
    $objForm.StartPosition = "CenterScreen"
    $CheckedListBox = New-Object System.Windows.Forms.CheckedListBox
    $CheckedListBox.Location = New-Object System.Drawing.Size(20,20)
    $CheckedListBox.size = New-Object System.Drawing.Size(300,100)
    $CheckedListBox.CheckOnClick = $true
    $CheckedListBox.Items.Add("Select All") > $null
    $CheckedListBox.Items.AddRange(1..20)
    $CheckedListBox.ClearSelected()
    $CheckedListBox.Add_click({
    If($this.selecteditem -eq 'Select All'){
    For($i=1;$i -lt $CheckedListBox.Items.Count; $i++){
    $CheckedListBox.SetItemChecked($i,$true)
    $objForm.Controls.Add($CheckedListBox)
    $Form = $objForm.ShowDialog()

    Rhys,
    Can you explain the $checkedlistbox.checkeditems[0] part? are you looking at the first item in the checkedlistbox object, or what is the .checkeditems[0] part referring to?
    Boe,
    Is this also what your code is referring to when you say $this.getitemcheckstate(0) ?
    The [0] refers to the first item in the listcheckedbox (which in this case is the 'Select All' item) and checks to see if it is checked or not. Rhys's example looks at the first item in the array of checked items ('Select All' would always be the first if checked
    and wouldn't exist if it was unchecked).
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • MIRO select all column items on PO Reference tab

    I have a user running 4.6C that wants to select all items in a specific column at the same time rather than having to select each one individually.  I have found the documentation to change the column sequence but I can not find anything regarding how to do this.  Is there a way to do this other than creating a customized user exit or ABAP code?  Thanks

    Please check these answered links:
    Re: Hide Fields in MIRO
    Miro
    MIRO
    Edited by: Afshad Irani on May 6, 2010 8:42 AM

  • "unexpected error" when w export a film from Adobe CS6 Project manager? Help?

    When trying to copy over a production via Project manager to another drive the system seems to be exporting the media etc and at the very end it says "Unexpected Error. Save yoru file and retry." We've done this several times and been on the phone with tech support for eleven hours and no joy.
    Anyone have any ideas? We are on 6.01 and this is still a buggy program.

    Yes,
    I am producing TV shows for FOX TV in LA. We completed editing a 30 minute special for local broadcast. We need to get the piece off of our machine in the contract studio and over to sound so that we can do a sound EQ. I am using the following process.
    Project Manager> Source is the film sequence with a small animation piece> Collect files and copy to a new location (our esternal media/show drive) Includes all files The project size is 125 GB. and resulting project size calculates at 125 Gb.
    We next select OK and the project manager seems to be copying the project to a new location. It takes about 30 minutes and when the time bar reaches 98% it cashes. We get a diaglouge that says "an unexpected error has occured please save and try again."
    We have spent hours on the phone with tech support and gone through a number of ideas inclduing checking for Microsoft conflicts etc. No joy. The machine this is on is not a server. It's a Dell on Windows 7 running 16GB of RAM but no Cuda card.
    We have deadline to meet and this is not helping. If we can;t do this here we will recut the show in FCP on the MAC. I prefer Premiere but at least FCP works.
    Please advise and thank you.

  • Using (Select All) for report parameter

    Hi there,
    I am Looking for assistance in making the the (Select All) option work for a particular report. The parameter is for product families (which there are about 47 unique results for). The report is also influenced by two other parameters, one being a date type
    i.e 'MTD' 'YTD' 'MAT'. When a long date type such as MAT is selected, selecting all families causes the report to get stuck in an endless loop.
    I've tried creating my own <Select All'> item in the parameter dataset, then I have the opposite issue, the <Select All> selection works perfectly but when I try and tick two or more product families I recieve the following error:
    "An expressions of non-boolean type specified in a context where a condition is expected, near ',' "
    Parameter Dataset:
    SELECT '<Select All>' AS family_description, '<Select All>' AS family_code
    UNION ALL
    SELECT DISTINCT family_description, family_code
    FROM dim_item AS item
    ORDER BY family_description
    Snippet From Main Report Dataset:
    Where
    sales.oe_branch_code IN (@Branch)
    And
    sales.order_status <> 'X' and sales.line_status <> 'X'
    AND (item.family_code IN (@Family) OR @Family = '<Select All>')
    Any help is appreciated
    Thanks Kindly
    SQL Novice

    Hi KCBA,
    I have check the query you have provided the issue cause by the query "
    AND (item.family_code
    IN (@Family)
    OR @Family =
    '<Select All>')" you are using which is incorrect.
    If the parameter @Family have set as "Allow multiple values" then you don't need to add new label "Select All" for the multiple value parameter already have this section, if the parameter @Family is not the multiple values
    parameter and you want to select all the values or just select one, you can modify the query as below which will works fine:
    "AND (item.family_code =
    (@Family) OR
    @Family = '<Select All>'
    If you are using the stored procedure and have issue about add multiple value parameter in the where clause, you are take reference to below similar case about how to create an function to make it work:
    Passing multi-value parameter in stored procedure ssrs
    If I have some misunderstanding, please try to provide more details information about the relationship of all the parameters (Cascading or not ), current result  you have got and expect result you want(Snapshot).
    Any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • How do you SELECT ALL on a page (used to CTRL L-CLICK in margin then mouse over selection)?

    In Pages 4x you could hold CTRL+LEFTMOUSE while in the margin area then select multiple things on that page you were looking by mousing over them (including selecting all).  Now you have to go one item at a time to delete? Is there a work-around?

    Ghazgkull wrote:
    . ctrl+clicking in iTunes selects all.
    No, it does not. You are still incorrect.
    ctrl + click does NOT select anything.
    It checks all boxes when you ctrl click on one box.
    If you want to select a bunch of consecutive songs...
    Select one then Shift click another, This will select all items from the first selection to the last selection.
    This is just plain nutty and is normally achieved on Windows 7 using ctrl+a,
    No it doesn't
    ctrl + a selects all.
    You are not selecting anything when you check all boxes. You are sinmply checking all boxes.

  • How to delete all items in download folder under bookmark in the shortest time?

    I understand that all downloads from internet and yahoo/google mail are stored in the "Download" folder which I see under bookmark when I want to delete. I think that if the download folder is never emptied, then my mac will slow down. Therefore I want to delete these downloads which I have already seen. How do I delete ALL items in the shortest time? Deleting items, even in groups, takes a long time. Is there a method that I can use so that all items in the folder are deleted in one stroke?
    Thanks.
    Unguja

    Try (first button on toolbar) Organize > Select All (Command + A) to select all items in the right pane in the Library.

  • Selecting all "similar" text - is it possible?

    I have a feeling this isn't possible but i thought best go ahead and ask anyway...
    I have converted a document from Quark (gasp!) to InDesign. All has gone well except the leading is a bit too close. The character styles haven't been correctly brought through from Quark so it's not simply a case of changing those, and i was thinking, you know the way in Illustrator for example you can select all items with the same colour stroke or fill and then change all accordingly, is there a way of selecting all the text with the same properties or am i going to have to go through every little text box in this 800 page document and change all the leading one by one?!
    Using mac 0s x 10, InDesign CS3

    You should have used Paragraph Styles instead of character styles.
    Use a Paragraph Style for whole paragraphs of text (even if one line) and use Character styles to give attributes to single characters/word(s) withing a paragraph.
    With everything having Paragraph Styles you can have Space Above and Space Below attributes for the paragraphs.
    If you want to give everything Paragraph styles, then select a paragraph and make a new paragraph style.
    Search for your Body character style and replace it with your Pargraph style.

  • Key Command for Selecting All in Stack?

    - Hi, I'm wondering if there is a key command that I missed that allows you to select all items in a stack when it is collapsed?
    I'm mostly using Bridge for the Stacks feature. I actually prefer to use cataloging programs for DAM. But shooting HDR, stacks are a must!
    But when I want to do things with the images in a stack, such as deleting them all, opening in Photoshop (individually or to merge), etc., it only selects the top image by default.
    I must be missing something. It's a drag to have to open/close all the time.
    And a separate but related issue:
    - Does anyone know why all stacks are removed when you do a Batch Rename on a set of photos?
    I let Photoshop churn for 30min. + on the 'combine HDR/Panorama into stacks' command. Got all my HDR sets grouped nicely as stacks. Then decided to batch rename them and presto - no more stacks! Had to do it all over again!!!

    Hi Kenny,
    To apply a command to all photos in a collapsed stack, you must select them all by clicking the stack border, not the top image. See
    Stack files in Bridge Community Help.
    I'm not sure about the batch rename issue that you describe. Maybe someone else can chime in on that.

  • Synching of Item and Project definition status

    Hi There
    Currently, I would like to know 2 things as below. (Using PPM 5.0)
    1) Project Definition status to 'On Hold' and synch to item (Decision point status) to set 'on hold'(created in SPRO -> Proftfolio Management).
       - Is this possible? I am not able to find the on hold in the drop down or the standard DFM
    2) Existing project definition status can be set to Lock or unlock. Can this be synch to the item (Decision point status) to
    on hold  or project in progress status (created in SPRO -> Proftfolio Management). Do we need to set in the DFM.
    If there is any clarification required, please let me know.
    Thanks.
    Kannan

    Hi Lashan.
    I have done the testing with the recommended steps provided it is working fine. However, now I am trying to do from portfolio Item to project management. So if the project is set to project on hold, the project definition need to change to Lock.
    Change statue to on hold at item.
    Project definition. It didn't change.
    Configuration  as below.
    1) Map Business Transaction for Synchronisation.
    2) Map portfolio Management Status to DFM business Transaction.
    3) Map DFM Business Transaction to Portfolio Management Status.
    Is there anything else I missed. Hope you can shine some light on my configuration. Thanks.

  • HT1343 How do I select multiple items?

    How do I highlight and select multiple items?

    Welcome to Apple Support Communities
    There are different ways to do what you want:
    Hold the Command key and press the items you want to select.
    Press Command and A keys to select all items in a folder.
    You can do the same with the mouse or trackpad by clicking in one part of the window and dragging it until all the items you want are highlighted

  • Items in project report(query) are listed under the "not assigned" (column)

    Hi All,
    Items in project reports (query) are listed under the "not assigned" (column name) Why it is so ?
    Start query : project reports & ask for period April 2008 (Period from/to). .
    You will see items listed under  Not assigned WBS Element (column name)
    If you choose for a period of April until June 2008 then you see more items under u201Cnot assignedu201D .
    Items should be under Assigned (column name) & not under the Not assigned (column name )
    Any suggestions highly appreciable.
    Thanks.

    Hi,
    How are you displaying the ITEM field in the BEx query designer? Is it displayed with "Key and Text"? If so and if the text is not loaded for this master, this may happen.
    Regards,
    Yogesh.

  • Cursor scans all items on toolbar

    My Magic Mouse starts selecting all items within a menu. It continues to scan the tool bar or menu bar until I move it off the bar. I have rebooted, reloaded the software. So far nothing I have done helps. It is a real strange problem. It also makes it hard to select an item in the menu. Any ideas? Early 2012 iMac Magic Mouse, wireless keyboard, and magic track pad, mountain lion os.

    I suspect the "Magic" has left the mouse, but may be Trackpad also, do you have a USB Mouse to test with?
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for selection problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

Maybe you are looking for