Why is help missing from help dropdown menu?

Why is help missing from Ps CC help dropdown menu in preferences?

bumpkin wrote:
Why is help missing from Ps CC help dropdown menu in preferences?
???? I see help being shown in some of Photoshop  preferences pages but both of you questions confuse me.

Similar Messages

  • Why are options missing from the Insert Menu in DW CS6?

    I'm trying to learn how to use CS6 with a Classroom in a Book. Unfortunately when the book tells me to insert something using the Insert Menu I often cannot find the options. This is true for Image Placeholder, for server-side includes, and also true for insert tabular data. Maybe I am just too stupid to find these options, but using Windows 7 x64 I cannot seem to find them. Maybe somebody can point out these menu items to me?

  • Why is the "Send to iDVD" command missing from the share menu in iPhoto 9.4.3 when trying to send a slideshow to iDVD?

    How come the "Send to iDVD" command is missing from the share menu? In iPhoto I used to be able to send my slideshows to iDVD simply my clicking on the slideshow, selecting the "Share" menu at the top and going to "Send to iDVD". Now in iPhoto 9.4.3 that option is missing.
    Further i am also using iDVD 7.1.2 and running OSX version 10.8.3.
    Thanks!

    Export the slideshow via the Export button at the bottom of the slideshow window with Size = Medium or Large.
    Open iDVD, choose a theme and drag the exported movie file to the menu window being careful to avoid any drop zones.
    Follow this workflow to help ensure the best quality video DVD:
    Once you have the project as you want it save it as a disk image via the  File ➙ Save as Disk Image  menu option.  This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image and launch DVD Player and play it.  If it plays OK with DVD Player the encoding was good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • Help Needed in creating dropdown menu in excel using JXL

    Hi,
    I am trying to create dropdown menu in using JXL.
    The Code:
    private void createRequiredRows(WritableSheet writableSheet, List unallowCodeList,int rowCount
                   , int startRowNo,int colCount) throws WriteException {
    Label unallowCode = null;
              WritableFont noBoldFont = new WritableFont(WritableFont.ARIAL, 8,WritableFont.NO_BOLD);
              WritableCellFormat dropDownCellFormat = new WritableCellFormat(noBoldFont,new NumberFormat("000"));
              dropDownCellFormat.setAlignment(Alignment.RIGHT);
              WritableCellFeatures writableCellFeature = new WritableCellFeatures();
              writableCellFeature.setDataValidationList(unallowCodeList);
              for (int rowNo = startRowNo; rowNo < startRowNo + rowCount; rowNo++) {
                   unallowCode = new Label(colCount, rowNo, "Select",dropDownCellFormat);
                   unallowCode.setCellFeatures(writableCellFeature);
                   writableSheet.addCell(unallowCode);
    it creates a drop down in the Excel.
    But writableCellFeature.setDataValidationList(unallowCodeList); has a limitation of characters .So the dropdown menu gets truncated when it exceeds the limitation.
    Can anyone help me in creating dropdown menu in excel without any limitation using JXL..
    Thanks,
    Bisin

    Hi,
    I dont know the solution for this, but heres a work arround
    //create new label some where else in the excel sheet as shown below
    Label lblcmbdata;
    for(int i=0; i<1000; i++)
                 lblcmbdata = new Label(75, i, (i+1)+" satish", format);
                 sheet1.addCell(lblcmbdata);
    }//set the validation range as shown below
    writableCellFeature.setDataValidationRange(75,0,75,1000);
    Label cmb = null;
    cmb = new Label(0, 1, "Select",format);
    cmb.setCellFeatures(writableCellFeature);
    sheet.addCell(cmb);this will create a combo list with 1000 values
    also you can keep the data to be populated in the different sheet in same workbook by creating a named range as below
    workbook.addNameArea("cmbdata", sheet1, 0, 0, 0, 1000);
    // then fill the data in sheet1
    Label lblcmbdata;
    for(int i=0; i<1000; i++)
                    lblcmbdata = new Label(0, i, (i+1)+" satish", format);
                    sheet1.addCell(lblcmbdata);
    //set the validation named range as below
    writableCellFeature.setDataValidationRange("cmbdata");
    Label cmb = null;
    cmb = new Label(0, 1, "Select",format);
    cmb.setCellFeatures(writableCellFeature);
    sheet.addCell(cmb);Thanks and Regards
    Satish

  • How to get all the values from the dropdown menu

    How to get all the values from the dropdown menu
    I need to be able to extract all values from the dropdown menu; I know how to get all those values as a string, but I need to be able to access each item; (the value in a dropdown menu will change dynamically)
    How do I get number of item is selection dropdown?
    How do I extract a ?name? for each value, one by one?
    How do I change a selection by referring to particular index of the item in a dropdown menu?
    Here is the Path to dropdown menu that I'm trying to access (form contains number of similar dropdowns)
    RSWApp.om.GetElementByPath "window(index=0).form(id=""aspnetForm"" | action=""advancedsearch.aspx"" | index=0).formelement[SELECT](name=""ctl00$MainContent$hardwareBrand"" | id=""ctl00_MainContent_hardwareBrand"" | index=16)", element
    Message was edited by: testtest

    The findElement method allows various attributes to be used to search. Take the following two examples for the element below:
    <Select Name=ProdType ID=testProd>
    </Select>
    I can find the element based on its name or any other attribute, I just need to specify what I am looking for. To find it by name I would do the following:
    Set x = RSWApp.om.FindElement("ProdType","SELECT","Name")
    If I want to search by id I could do the following:
    Set x = RSWApp.om.FindElement("testProd","SELECT","ID")
    Usually you will use whatever is available. Since the select element has no name or ID on the Empirix home page, I used the onChange attribute. You can use any attribute as long as you specify which one you are using (last argument in these examples)
    You can use the FindElement to grab links, text boxes, etc.
    The next example grabs from a link on a page
    Home
    Set x = RSWApp.om.FindElement("Home","A","innerText")
    I hope this helps clear it up.

  • How to select an item from a dropdown menu using Enter key

    A website I frequently use opens with a dropdown menu. Using my former browser, I was able to select the an item from the dropdown list by hitting the first letter with my keyboard and then hitting Enter. (Think of entering an address and selecting TX from a dropdown menu of states. Often you can hit T twice to get to TX and then the Enter key will advance the cursor to the zip code field.) Since converting to Firefox, the Enter key no longer works to advance to the next screen...I now have to move the mouse to a "Go" button and click it after selecting the desired item from the downdown menu. It's a small thing, but constantly switching back and forth between mouse and keyboard is becoming annoying. Is there an option in Firefox to select items simply by highlighting them in the dropdown menu and hitting the Enter key, instead of having to use the mouse to click a "Go" button? Thanks

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Photomerge command has gone missing from File Automate - menu

    Was using Photomerge command successfully in PS and at some point later PS crashed and locked my Mac. I restarted and now the Photomerge command is missing from the File Menu. I asked Adobe support for help, they had me reinstall latest PS but it's still not there.
    Is there anywhere in the PS Folders I can check for a file associated with this command (like there are for Scripts for example) and could possibly replace?
    I also tried initiating the command from Lightroom with a set of images selected and using the relevant contextual menu and it produces an error saying Photoshop could not be launched (it is launch though).

    Hi and thank you. Yes Photomerge.jsx is there in the scripts folder. Although when I go to launch other scripts from within PS using the File> Scripts… menu I get the following error:
    Could not complete the Image Processor command because Photoshop was unable to find the JavaScript plug-in
    How can I get it?

  • Why is audio missing from movie

    why is audio missing from movie

    I think I may have confused you a little bit, sorry.  Hope this might be easier to follow.
    1.  Copied nieces VHS tape to DVD discs.  Tape runs approximately 2hr. 39min.
    2.  Put first part on work copy 1.  This consisted of the lead up to the ceremony and the ceremony itself, ending with still shots of the wedding party, in the park.  About 1hr. 1min.
    3.  Put second part on work copy 2.  This consisted of the wedding reception, beginning to end.  About 1hr 38min.  No possibility of overlapping content.
    4.  Ran both work copy 1 and work copy 2 on the VCR that's hooked up to the TV.  (Not the Toshiba copy machine).  Both ran through, beginning to end with no glitches.
    5.  Opened Adobe Premiere Elements and loaded work copy #1 so as to make three finished copies, one for bride and groom, one for bride's parents, one for groom's parents.
    6.  When placed on the timeline, contents of work copy 1 had no audio for VTS_01_1.VOB while VTS_01_2.VOB and VTS_01_3.VOB were whole.
    7.  Tried for several days to eliminate the problem with no success.  A.P.E. showed file sizes of .99GB, .99GB and 47MB respectively.  The 47MB is actually about 2 minutes of still pictures of       the wedding party.  I was not going to attempt to burn the project until correcting the audio problem.
    8.  Wrote in to the community forum and happily received your response.  Tried every thing you offered without success.  Though I am thankful for all your time and effort.  While nothing worked       so far, I have learned a few things and will retain my notes so as to keep this information at hand.  (Don't know how you're able to maintain all that info).
    9.  At this point, in view of the results of step #4, I thought to try Windows DVD Maker to see what developed.  Loaded work copy 1 into that program, which recognized the audio in the first clip       (VTS_01_1.VOB).  I did not run the work copy, beginning to end, in this program.  But I felt that as long as the audio was present in the first clip, this program would allow me to burn the           copy.  When the burn button was pushed, I received the error message "Will Not Fit", and the duration of 30 min for clip 1, 30 min. for clip 2 and 25 hours and 30 min. for clip 3.  Clip 3 being       the 2 minutes of still pictures.  After trying unsuccessfully to remedy this problem it was time to try a different approach.
    10.  Opened A.P.E. and loaded work copy 2 onto the timeline.  Successfully made three finished copies of this disk in a short period of time.
    11.  Took the VHS tape back to the Toshiba to make another copy (work copy 1A) of the first segment.
    12.  Played copy 1A in the TVs VCR and it played fine, no glitches.
    13.  Opened A.P.E. and put work copy 1A on the Timeline.  This time there was audio in clip 1, which could be seen on the audio line, but it was the audio from work copy 2.  This, even though       I had deleted the files from work copy 2.
    14.  Accepted the fact that this has become a career.  Can't imagine what you're thinking.  Since beginning this endeavor I have become much older and grouchier.  My dog will no longer walk         with me.  Neighbors go back in the house when they see me coming.  Oh, and my wife sticks out her tongue and makes funny noises whenever I turn my back. 

  • When I select an email address from the dropdown menu and hit return, Thunderbird then fills in a different email address. Yosemite upgrade?

    I just upgraded to OS X Yosemite and this new "feature" appeared. I often have several email addresses that contain the same set of characters. I just type the first few characters and then select the appropriate email address from the dropdown menu that appears. But if I hit return afterwards to enter another email address, the first address gets switched back automatically to the first one that appeared in the dropdown menu. The more characters I type, the more accurate it is, but it totally defeats the purpose of autofill if I have to type the entire email address! Anyone else having this problem? And can you guys please fix it? If you select something from the dropdown menu, it should stay selected.
    Thanks!

    This forum is filled with this same complaint. There is a bug reported on it. If and when they fix it is another question.
    Version 24.6 works if you want to go back to a working version.

  • Help needed for as3 dropdown menu and html

    First of all hello!  I have to create a html website for a company. The design i've made is in photoshop ....and i have to create a dropdown menu. The first question is : Can i create the dropdown menu in flash without having to use html frames? Can i link one of the buttons of the menu in a html page so that it loads in the same browser window another html page (if so .... with what function?)?  Please ... i need to know ... because i simply prefer to implement it in flash rather then html. And the second big question is : Can the stage in flash be transparent? Because if i make the menu in it, it will be impossible to match any dimensions of the stage .... and i would like to embed it into a html page...if possible without the stage color >..... Thanks in advance!!!!    Tudor

    For opening pages you want to look into using the navigateToURL() function.  The help documentation provides information abiout it an how to control the window aspect as well.
    To make the stage transparent is more of an html aspect than a Flash aspect, though you can set it up to publish that way.  The key is to set the wmode paraemter that is in the html embedding code to "transparent".  I am not sure if all browsers supports this feature, but I think more are willing to.

  • "Toolkit for CreateJS" Missing from Flash CC Menu

    I'm a Creative Cloud user running the latest version of Flash Professional CC on my 27" iMac running OSX Mavericks. I want to export an animation file using CreateJS. However, the "Toolkit for CreateJS" option is missing from my "Window" drop down menu - it's not even grayed out, it's just not there. Using the alternate of Shift+F9 doesn't work either. I tried downloading the CreateJS extension from Adobe but is says I need to be running CS6 for it to work, and that "Toolkit for CreateJS" is supposed to come pre-installed in Flash CS Pro. But it's not there. This is very frustrating, and I'd be deeply grateful for any help someone could give me. Thanks!

    HTML5 publishing with the new update is now more inetgarted with the application and we now have a new document type called "HTML Canvas" which publishes using the same CreateJS libraries.
    The Toolkit for CreateJS panel is no longer present with the new update, but the HTML5 publishing using the toolkit is now intgerated as part of the HTML canvas document type that you will see new in this update.
    Please refer to:
    http://helpx.adobe.com/flash/using/whats-new.html#Creating%20and%20pub lishing%20HTML5%20Canvas%20content
    Also you can convert your previously created AS3 document that publish to HTML5 into HTML5 Canvas documents. This is also mentioned in the documentation below:
    http://helpx.adobe.com/flash/using/creating-publishing-html5-canvas-do cument.html
    -Sujai

  • "Rename" missing from Finder context menu

    The Rename feature on the Finder Context menu has been very useful to me.
    Got an error message while trying to rename several folders.
    Now the Rename feature is missing from the Finder context menu.
    OS 10.10 Yosemite, 27" iMac
    Just recently purchased at Thunderbolt hard drive enclosure (Akitio Thunder2 Quad enclosure) and the error happened while renaming files on the Thunderbolt drive. Now the rename feature is missing from all drives.
    I've tried:
    rebooting - no help
    ejecting the Thunder2 quad and rebooting - no help
    power down the Thunder2 and rebooting - no help

    Welcome to the world of Mac. Some ‘light’ reading to help the transition. I don’t recommend trying to get through all of this at once.
    
A guide for switching to a Mac
    Anatomy of a Mac
    
Mac Basics—Tutorials on using a Mac
    
Mac OS X keyboard shortcuts,
    Mac Basics – Switching From Windows
    Mac OS FAQ
    MacTips,
    Quick Assist
    Switch Basics
    Switching to Mac Superguide
    Switching to the Mac: The Missing Manual, Mountain Lion Edition
    
Take Control E-books
    
Welcome to the Switch To A Mac Guides

  • Why are Albums missing from the Albums "tab" in Photos app?

    I just upgraded to the new version of OS X with the new Photos app.  All of my photos transferred over to the new app correctly, but not all of my Albums are showing up in the new Albums "tab" in the Photos app. 
    For instance, my "Honeymoon" album does not show up on the Albums "tab," but when I search for in the Photos app it will appear. 
    How do I get all of my Albums to show up on this tab?
    Additionally, does anyone know how to change the "timestamp" on photos?
    Any help would be greatly appreciated!

    Terence,
    I appreciate the reply, but that did not solve my issue.  Several of my albums are still "missing" from the list, even though I can find them when I search:

  • Why is PowerView Missing From My Site Collection?

    I'm setting up a test lab with SQL Server 2012 SP1 and SharePoint 2013.
    I successfully setup the integration using PowerShell and Central Administration. I can see the service application and it is related to my web application, however the PowerView/SSRS features are missing from my site collection and so are the content types.
    I even tried creating a new site collection and no dice.
    Any thoughts on this would be great!
    Cheers!

    Hi Anthony,
    Based on the current information, I suggest that you make sure the Reporting Services Add-in for SharePoint has been installed when installling SQL Server 2012 SP1. Then, please verify the Reporting Services installation referring to the following article:
    Verify a Reporting Services Installation
    If you can create the Reporting Services Service Application and a site collection successfully, please verify the Report Server Integration Feature is active. After that, please active the Power View Integration Feature for the site collection.
    Additionally, I suggest that you refer to the following blog for the SQL Server Reporting Services Integration with SharePoint 2013:
    Installing and configuring SQL Reporting services on SharePoint 2013
    Hope this helps.
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • Save Image ..why is it missing from Firefox when IE has it ?

    Such a fundamental thing to have as the ability to save an image is missing from Firefox and as I have gone over to Firefox from IE I am dumbfounded as to why Mozilla fails to feature this. Why is this ? I have the add on but you get 'save images from current tab', when right clicking on an image that has launched on screen after clicking on a thumbnail, and you end up with hundreds of images, every damn bit of the webpage, the big image is indistinguishable from its thumbnail and every image has to be looked at and discarded until one finds the bigger versions. Who in their right mind would want every little bit of a webpage ? The large images look the same as the thumbnails and each one has to be enlarged to see if its the big image or not.
    A task that took seconds in IE takes half an hour.
    Can we see Firefox catch up with IE6 for image saving ?

    Having now tried another website, where images do not have thumbnails, I have 'save image as', though the dropdown window is empty, no options on file type, its those where clicking a thumbnail sees a new window appear, rotating dots then the image occurs. No save image as, only the save image plugin which proceeds to capture everything. Trying IE on this I see also no save image option, so I guess its the website not Firefox. I shall have to use printscreen button I guess.
    I dont know why the dropdown combobox gives no options of file type, IE6 didnt have much but jpg or bmp was offered.

Maybe you are looking for