"Select all" in InDesign?

Hey,
How can I select all my content in the InDesign file? I'm "selecting all" from the edit menu but it doesn't seem to select all the content in all the pages, just the page that I'm on. Is there a way to select all of the content? For example I've got 100s of images and I want to select all of them to reduce their size instead of going to each image and selecting transform again.
Thanks in advanced.

Someone will likely respond here eventually, but you might want to try asking in the scripting forums for a quicker answer.
I feel like this question's been asked before, but I couldn't find the solution in my hasty forum searching.

Similar Messages

  • Is it possible for Applescript to know what link is selected in the Indesign Links Palette?

    Hi there,
    I've written some ApplesScripts for Indesign that act on all links, missing links and/or selected links, but what if I wanted to perform an action on a link that is only selected in the links palette?
    Is it possible for AppleScript to know which link is selected in the Indesign links palette?
    Regards,
    David

    Hi czigrand,
    Thanks for visiting Apple Support Communities.
    Currently, you can gift dollar amounts or individual items (EG. songs) on the iTunes Store. See this article for more information:
    In the iTunes Store, you can gift a dollar amount or specific music, movies, TV shows, or apps from your iPhone, iPod touch, iPad, Mac, or PC. Follow these steps to send a gift from the iTunes Store.
    iTunes: Sending iTunes Gifts
    http://support.apple.com/kb/HT2736
    Best Regards,
    Jeremy

  • How to select all text in document?

    I need to select all text in a long document to export to rtf. I only seem to be able to select a story. Any ideas in how I can do it?
    Thanks
    Ian

    Can't be done. You'll have to link all text boxes together in one long story, or use the script "ExportAllStories.jsx" that comes with your default InDesign installation.
    There are other alternatives (all of them using scripts), and the best way may depend on what your intentions are with the exported file -- if, for example, you want to read it back into their original text frames after editing, well, there are ways to do that.

  • 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.

  • Javascript: select all text, break link to style

    Hi
    I'd like to select all text in a Document (in different independent textboxes) and then break the link to it's style (in the program in the Flyout-menu of the paragraph styles)
    Is this function scriptable (javascript)?
    How do I select all the text?
    InDesign CS6, OS10.7.4
    Thanks

    In fact, I use the adobe findchangebylist to modified, I want to do a clear setting script, not only break link to style, but when i run the script that will get error, can u help me to fix it, my script is shown as below:
    main();
    function main(){
    var myObject;
    //var myCheckSelection = false;
    //Make certain that user interaction (display of dialogs, etc.) is turned on.
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
    if(app.documents.length > 0){
      if(app.selection.length > 0){
       switch(app.selection[0].constructor.name){
        case "InsertionPoint":
        case "Character":
        case "Word":
        case "TextStyleRange":
        case "Line":
        case "Paragraph":
        case "TextColumn":
        case "TextFrame":
        case "Text":
        case "Cell":
        case "Column":
        case "Row":
        case "Table":
         myDisplayDialog();
         break;
        default:
         //Something was selected, but it wasn't a text object, so search the document.
         //myFindChangeByList(app.documents.item(0));
                        //alert("Nothing Selected, Please Select Text Frame or Text.");
      else{
       //Nothing was selected, so simply search the document.
                //myFindChangeByList(app.documents.item(0));
                alert("Nothing Selected, Please Select Text Frame or Text.");
    else{
      alert("No documents are open. Please open a document and try again.");
    function myDisplayDialog(){
    var myObject;
    var myDialog = app.dialogs.add({name:"Joan New Clear Setting_v1.0"});
    with(myDialog.dialogColumns.add()){
       with(dialogRows.add()){
       with(dialogColumns.add()){
    staticTexts.add({staticLabel:"Search Range:"});
         var mySearchButtons = radiobuttonGroups.add();
         with(mySearchButtons){
         radiobuttonControls.add({staticLabel:"Current Document", checkedState:true});
                       if(app.selection[0].contents != ""){
        radiobuttonControls.add({staticLabel:"Selection", checkedState:true});
       with(dialogColumns.add()){
        with(borderPanels.add()){
         staticTexts.add({staticLabel:"Clear Setting:"});
         var myDateButtons = radiobuttonGroups.add();
         with(myDateButtons){
         radiobuttonControls.add({staticLabel:"English", checkedState:true});
         radiobuttonControls.add({staticLabel:"Chinese"});
    var myResult = myDialog.show();
    if(myResult == true){
      switch(mySearchButtons.selectedButton){
       case 0:
                     BreakLinktoStyleDocument();
                     TurnOffHyphenationDocument();
                     myObject = app.documents.item(0);
                     myCheckSelection = false;
        break;
                  case 1:
                     BreakLinktoStyleSelection();
                     TurnOffHyphenationSelection();
                     myObject = app.selection[0];
                     myCheckSelection = true;
        break;
      switch(myDateButtons.selectedButton){
      case 0:
      myFindChangeByList1(myObject, myCheckSelection);
      break;
      case 1:
      myFindChangeByList2(myObject, myCheckSelection);
      break;
      myDialog.destroy();
      //myFindChangeByList1(myObject);
    else{
      myDialog.destroy();
    function TurnOffHyphenationDocument() {
    app.activeDocument.stories.everyItem().texts.everyItem().hyphenation=false;
    myTables = app.activeDocument.stories.everyItem().tables.everyItem();
    myTables.cells.everyItem().paragraphs.everyItem().hyphenation=false;
    function TurnOffHyphenationSelection() {
    app.selection[0].texts[0].hyphenation=false;
    app.selection[0].cells.everyItem().texts[0].hyphenation=false;
    function BreakLinktoStyleDocument() {
    app.activeDocument.stories.everyItem().texts.everyItem().applyParagraphStyle(app.activeDoc ument.paragraphStyles.item(0), false);
    app.activeDocument.stories.everyItem().texts.everyItem().applyCharacterStyle(app.activeDoc ument.characterStyles.item(0), false);
    myTables = app.activeDocument.stories.everyItem().tables.everyItem();
    myTables.cells.everyItem().paragraphs.everyItem().applyParagraphStyle( app.activeDocument.paragraphStyles.item(0), false);
    myTables.cells.everyItem().paragraphs.everyItem().applyCharacterStyle( app.activeDocument.characterStyles.item(0), false);
    function BreakLinktoStyleSelection() {
    app.selection[0].texts.everyItem().applyParagraphStyle(app.activeDocument.paragraphStyles. item(0), false);
    app.selection[0].texts.everyItem().applyCharacterStyle(app.activeDocument.characterStyles. item(0), false);
    app.selection[0].cells.everyItem().texts[0].applyParagraphStyle(app.activeDocument.paragra phStyles.item(0), false);
    app.selection[0].cells.everyItem().texts[0].applyCharacterStyle(app.activeDocument.charact erStyles.item(0), false);
    function myFindChangeByList1(myObject, myCheckSelection){
    var myScriptFileName, myFindChangeFile, myFindChangeFileName, myScriptFile, myResult;
    var myFindChangeArray, myFindPreferences, myChangePreferences, myFindLimit;
    var myStartCharacter, myEndCharacter;
    var myFindChangeFile = myFindFile("/ScriptSupport/te.txt")
    if(myFindChangeFile != null){
            // Because the selection will change as we add/remove characters,
            // we'll need to reset the selection after each pass if we are
            // checking the selection. We'll get the index of the first character
            // in the selection (relative to the start of its parent story) and
            // the index of the last character in the selection (relative to the
            // *end* of the story, and we'll use them later in the script to
            // keep the ends of the selection in place.
      if(myCheckSelection == true){
       var myStart = myObject.characters.item(0).index;
       var myEnd = myObject.characters.item(-1).index;
       var myStory = myObject.parentStory;
       var myStoryEnd = myStory.characters.item(-1).index;
       myEnd = (myStoryEnd - myEnd)+1;
      myFindChangeFile = File(myFindChangeFile);
      var myResult = myFindChangeFile.open("r", undefined, undefined);
      if(myResult == true){
       //Loop through the find/change operations.
       do{
        myLine = myFindChangeFile.readln();
        //Ignore comment lines and blank lines.
        if((myLine.substring(0,4)!="text")||(myLine.substring(0,4)!="grep")||(myLine.substring(0, 5)!="glyph")){
         myFindChangeArray = myLine.split("\t");
         //The first field in the line is the findType string.
         myFindType = myFindChangeArray[0];
         //The second field in the line is the FindPreferences string.
         myFindPreferences = myFindChangeArray[1];
         //The second field in the line is the ChangePreferences string.
         myChangePreferences = myFindChangeArray[2];
         //The fourth field is the range--used only by text find/change.
         myFindChangeOptions = myFindChangeArray[3];
         switch(myFindType){
          case "text":
           myFindText(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions);
           break;
          case "grep":
           myFindGrep(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions);
           break;
          case "glyph":
           myFindGlyph(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions);
           break;
         if(myCheckSelection == true){
          myStartCharacter = myStory.characters.item(myStart);
          myEndCharacter = myStory.characters.item(-myEnd);
          myObject = myStory.texts.itemByRange(myStartCharacter, myEndCharacter);
          app.select (myObject);
       } while(myFindChangeFile.eof == false);
       myFindChangeFile.close();
    alert("Done");
    function myFindText(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions){
    //Reset the find/change preferences before each search.
    app.changeTextPreferences = NothingEnum.nothing;
    app.findTextPreferences = NothingEnum.nothing;
    app.findChangeTextOptions = NothingEnum.nothing;
    var myString = "app.findTextPreferences.properties = "+ myFindPreferences + ";";
    myString += "app.changeTextPreferences.properties = " + myChangePreferences + ";";
    myString += "app.findChangeTextOptions.properties = " + myFindChangeOptions + ";";
    app.doScript(myString, ScriptLanguage.javascript);
      myFoundItems = myObject.changeText();
    //Reset the find/change preferences after each search.
    app.changeTextPreferences = NothingEnum.nothing;
    app.findTextPreferences = NothingEnum.nothing;
    app.findChangeTextOptions = NothingEnum.nothing;
    function myFindGrep(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions){
    //Reset the find/change grep preferences before each search.
    app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences = NothingEnum.nothing;
    app.findChangeGrepOptions = NothingEnum.nothing;
    var myString = "app.findGrepPreferences.properties = "+ myFindPreferences + ";";
    myString += "app.changeGrepPreferences.properties = " + myChangePreferences + ";";
    myString += "app.findChangeGrepOptions.properties = " + myFindChangeOptions + ";";
    app.doScript(myString, ScriptLanguage.javascript);
    var myFoundItems = myObject.changeGrep();
    //Reset the find/change grep preferences after each search.
    app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences = NothingEnum.nothing;
    app.findChangeGrepOptions = NothingEnum.nothing;
    function myFindGlyph(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions){
    //Reset the find/change glyph preferences before each search.
    app.changeGlyphPreferences = NothingEnum.nothing;
    app.findGlyphPreferences = NothingEnum.nothing;
    app.findChangeGlyphOptions = NothingEnum.nothing;
    var myString = "app.findGlyphPreferences.properties = "+ myFindPreferences + ";";
    myString += "app.changeGlyphPreferences.properties = " + myChangePreferences + ";";
    myString += "app.findChangeGlyphOptions.properties = " + myFindChangeOptions + ";";
    app.doScript(myString, ScriptLanguage.javascript);
    var myFoundItems = myObject.changeGlyph();
    //Reset the find/change glyph preferences after each search.
    app.changeGlyphPreferences = NothingEnum.nothing;
    app.findGlyphPreferences = NothingEnum.nothing;
    app.findChangeGlyphOptions = NothingEnum.nothing;
    function myFindFile(myFilePath){
    var myScriptFile = myGetScriptPath();
    var myScriptFile = File(myScriptFile);
    var myScriptFolder = myScriptFile.path;
    myFilePath = myScriptFolder + myFilePath;
    if(File(myFilePath).exists == false){
      //Display a dialog.
      myFilePath = File.openDialog("Choose the file containing your find/change list");
    return myFilePath;
    function myGetScriptPath(){
    try{
      myFile = app.activeScript;
    catch(myError){
      myFile = myError.fileName;
    return myFile;
    and here is my text file, te.txt
    //001
    grep {findWhat:"."} {appliedLanguage: app.languagesWithVendors.item("English: USA"), kerningMethod: "無"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, includeLockedStoriesForFind:true, widthSensitive:true}
    //002
    grep {findWhat:"."} {kinsokuSet: "繁體中文避頭尾(s)"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, includeLockedStoriesForFind:true, widthSensitive:true}
    //003
    grep {findWhat:"."} {mojikumi: "nothing"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, includeLockedStoriesForFind:true, widthSensitive:true}
    //004
    grep {findWhat:"."} {ligatures:false} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, includeLockedStoriesForFind:true, widthSensitive:true}
    //005
    grep {findWhat:"."} {gridAlignment: 1852796517} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, includeLockedStoriesForFind:true, widthSensitive:true}
    //006
    grep {findWhat:"."} {leadingModel: 1248619858} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, includeLockedStoriesForFind:true, widthSensitive:true}
    //007
    grep {findWhat:"."} {characterAlignment: 1247896172} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, includeLockedStoriesForFind:true, widthSensitive:true}

  • Does cs6 allow you to select ALL frames in a document?

    I am doing a wedding book.  So I have many image frames on each page.
    I want to add a border (stroke) to all these frames.  But to my surprise, it appears that the Select All command only selects the frames in the current spread.  I did a bit of research here and on the net and it seems that, at least for the previous versions, there is no way to select all frames in a document.  This seems very odd to say the least.
    Does cs6 allow you to do this now?  Or is there a workaround to quickly add a stroke to all frames in a document?
    Thank you for any help.
    LD

    Unfortunately no, but there's a trick you can use. Shapes drawn with the sahpe tool DO accept default settings, so you can use the shape tools instead of the frame tools and place images in them, but that probably doesn't help you at this point.
    It actually should be pretty easy to apply an object style to all frames by script -- one or two lines I would think. You can ask over in InDesign Scripting
    It might also be possible to use find/change. I just checked, and yes, you can search for the [None] object style and change all, so that may be the best approach.

  • Selecting All Images in a Document over multiple pages

    Hello,
    Is there anyway to select all the images in a document, not just a spread.
    For example, if I want to apply an object style to every image.
    I can only do one page (spread) at a time
    There was a post out there that started like this, but started talking about converting to outlines, so this part was never answered.
    I was teying to find something through GREP, but nothere there either.
    Is this possible?
    thanks
    babs

    Oh bait. I like bait.
    for (a=0; a<app.activeDocument.allGraphics.length; a++)
         if (app.activeDocument.allGraphics[a].imageTypeName in {"JPEG":0, "PNG":0, "TIFF":0, "Windows Bitmap":0, "CompuServe GIF":0, "Photoshop":0})
    app.activeDocument.allGraphics[a].parent.appliedObjectStyle = app.activeDocument.objectStyles.item("test");
    //     else
    //          alert (app.activeDocument.allGraphics[a].imageTypeName);
    .. and perhaps some more raster formats -- I don't know exactly which types ID distinguishes by name. You can find the type name per image in the Info palette -- it doesn't seem to differentiate between TIF and TIFF, for example. "Photoshop" is any PSD file.
    An Illustrator file is tagged "Adobe PDF" (not weird, if you know how it works), and a placed InDesign page as "InDesign". Didn't find a real EPS quick enough to test that as well, but you could try.
    If you remove the comment slashes from the 'else' part the script will show an alert for the image types it did not change.
    All of these types are distinguished by type name only, you cannot check for a PDF only containing a single raster image, or a PSD containing vector info.

  • How to 'Select All Layers' when background is locked?

    I've just tried to Select > All Layers and was very surprised when the Background, a locked layer, was not included in the selection. Is it possible to select all layers, included the background?

    This could be a tricky one and needs some explanation. I have about 1600 images to process. I would prefer to do so from within InDesign, to which the images are linked. I want to apply Smart Filters to all the images. That's only a part of the story, but it will do for the moment.
    Method 1 and Why it Won't Work
    I could apply a Smart Filter by choosing a certain image in InDesign; selecting Edit Original and the image opens in PS. Then I was hoping to use Select All Layers and apply a Smart Filter. But... Select All Layers doesn't select all layers, and you can't apply a Smart Filter unless all layers are selected.
    Method 2 and Why it Won't Work
    I could open the images within PS by using Open as Smart Object, which DOES select all the layers and allows you to apply a Smart Filter. But for a very good reason (I can explain the reason, but it would take a few more paragraphs), I want to open the images from within InDesign. So, method 2 is unsuitable.
    Method 3 and Why it Won't Work
    I could batch all the images using an Action to unlock the Background. But, not all my 1600 images have a background. Some have ordinary unlocked layers, some have text layers. I could set up an Action to unlock Background layers (double-click, followed by a Return to name the layer "layer 0"), but if the Action came across a text layer on the bottom -- big problem. For a text layer, double-click followed by a Return  does nothing. I'd have one locked-up Action.
    Method 4 - A script working from within InDesign could open the images as Smart Objects -- but I'm not a script man.
    Seems a bit silly that Select All Layers doesn't allow me to select all layers.

  • • INDD crash when select "all unused swatches"

    Hello -
    I think all is in the topic title…
    My InDesign® CS5 (7.0.4) crash when I select "all unused swatches" (from swatches palette).
    This happens in opened document, but also in a new empty document.
    • I delete (an rebuild) the préférences of the software.
    • I repaired the authorizations of the Mac
    Does someone know why?
    Thank you, have a nice day…
    - Dimitri
    [link removed by moderator]

    Hello Peter -
    Thank you for your answer.
    But I didn't trash manually the prefs. files.
    I did it via the keyboard keys combination (when InDesign® is launched).
    So is there another trick?
    Thank you, have a nice day…
    - Dimitri

  • How to select all textframes

    Hi,
    I am using Indesign CS4 version 6.0.6 on a macosx 10.6.
    I want to select all text frames to check if they contain paragraphs without style.
    I am using javascript :
                myAllTextFrames = myAllPages[myCounterPages].textFrames;
    It gives me all textframes in the page but the textframes in groups in the pages are not included.
    Is there a way to select all textFrames of a page nested in group (at any level, in a group in a group in a group...) or not ?
    Regards,
    Lionel

    Hi,
    I am sorry I used the wrong word, I do not want to "select" all paragraphs without style, I want to address them and select the first one for the user to choose a style for it.
    Thank for your answers, I'll use allPageItems.
    Best regards,
    Lionel

  • Selecting all consecutive paragraphs of the same style in GREP?

    Hello,
    Is there anyway to select all consecutive paragraphs of the same style using GREP and append something after it?
    My problem is that I need to add a tag to the start and end of all footnote sections, they are not embedded in InDesign, but rather they are simply listed after every section. I've managed to add the tag to the start of every footnote section but how can I use GREP to select all of the footnotes and add the tag after it?
    I have tried (among others)
    (.+)
    but it only finds each footnote one at a time, rather than the whole section's worth of them.
    Leaving the Find field blank and just using Find Format will find the whole section but I can't find anyway to append the tag. I tried
    $0\rTAG
    but it seems to cut a lot of the footnotes out randomly?
    There must be a way to do this?

    It's possible to have a GREP span multiple paragraphs (use the flag (?s) for this), but I think it would have the same result as your 2nd try, just supplying the paragraph style name. Since that fails, I suspect it's just too much text to fit in '$0'.
    How about circumventing the problem in its entirety? Put your paragraph style name in the Find Formatting field, then search for
    \r(?!.)
    -- this will find the very last hard return in that style "followed by nothing". You can replace it with
    \rTAG\r
    -- it needs a return right after 'TAG' because otherwise this will be pasted in front of the next (unrelated) paragraph.

  • SSRS 2012: How to get a "Select All" that returns NULL instead of an actual list of all values from a multi-select parameter?

    I have a multi-select parameter that can have a list of thousands of entries. In general, the user will pick a few entries from the list or "Select All". If they check "Select All", I would much prefer that I get a NULL or an empty string
    instead of a list of all values. Is there any way to do that?
    In experimenting with a work-around, I tried putting an "All" label with a null value in the list, but it is ignored (does not display in the drop-down). If I use an empty string for the value, my "All" entry does get displayed, but so
    does "Select All", which is confusing. Is there a way to suppress "Select All"?
    - Mark

    I adapted the following from a workaround posted by JNeo on 4/16/2010 at 11:14 AM at
    http://connect.microsoft.com/SQLServer/feedback/details/249227/multi-value-select-all-parameter-in-reporting-services
    To get a null value instead of the full list of all values when "Select All" is chosen:
    1) Add a multi-value parameter "MyParam" that lists the values to choose.
    2) Add a DataSet "ParamCount" identical to the one used by "MyParam", except that it returns a single column named [Count] that is a COUNT(*) of the same data
    3) Add a parameter "MyParamCount", set it to hidden and internal, then set the default value to 'Get values from a query', choosing "ParamCount" for the Dataset and the one [Count] column for the Value field.
    4) Change the parameter for the main report DataSet so that instead of using [@MyParam], it uses this expression:
    =IIF(Parameters!MyParam.Count =
    Parameters!ParamCount.Value, Nothing, Join(Parameters!MyParam.Value, ","))

  • Using Itunes 12.0.1.26 on iMac with Yosemite 10.10.1.  I 'select all' to highlight, dragg

    I have Itunes 12.0.1.26 on my home iMac (mid-2011) with OS X Yosemite 10.10.1. I have been using 'select all' to highlight a playlist of 42 songs which I've purchased on iTunes and dragging and copying them to a Lexar USB flash drive. They appear to copy onto the flash drive but my philips shelf CD USB player shows "no songs" when I put the flash drive into it. I've also noticed that the songs on the flash drive under "kind" show either "protected MPEG-4 audio" or "Apple MPEG-4 audio". What I am I doing wrong that I can correct so I can take this flash drive around with me and listen to my music on other devices with USB ports?
    Thanks, Nick

    I would like to join this discussion. here is my contribution:
    It has been a problem for me over time (spans several versions of both iPhone, iTunes and MACOSes)that iTunes does not sync properly between my MacBookPro and my iPhone.
    The problem persists even on iPhone 6.
    The problem is easily described: I buy a song on iTunes on my MaBookPro iTunes client, and add it to a playlist. Then I ask the same client to sync the new song and the playlist addition of it to my iPhone. This never works the way you would expect from Apple software. The efforts I have to make to get the new song and the playlist addition over to my iPhone (like restarting both MacBookPro and iPhone, repeating the Sync-request until one of the devices hangs, or else the Sync-process uses huge amounts of time and behaving strangely and illogically from one request to the other, etc) remind me of the worst and most clumsy versions of Windows.
    Obvioulsy this problem has been reported many times. Why isn't it solved? Is it because Apple does not want to, or is it because they can't?

  • Using 12.0.1.26 Im trying to move photo's from an app on the pad to laptop but the select all in Edit is not hilighted, how to you select all?

    the select all under edit is not highlighted in 12.0.1.26, I need to move a large number of photos from pad app sharing area to laptop, how do I select all? Thanks

    the select all under edit is not highlighted in 12.0.1.26, I need to move a large number of photos from pad app sharing area to laptop, how do I select all? Thanks

  • In history displays. put checkmarks and select all.

    In history displays. put checkmarks and select all.

    Can you clarify what you mean?
    Do you have a problem with the history?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    *Use a compressed image type like PNG or JPG to save the screenshot
    *Make sure that you do not exceed the maximum size of 1 MB

Maybe you are looking for

  • Date in miliseconds

    hi, i try to store current date value as integer in my database so i will be able to compare dates by sql command simply like comparing integer values. this is the method i use when i code in PHP. so for this purpose i use Date classes getTime() meth

  • Increments Of 100 With Grad Filter and Adj Brush Using Scroll Wheel and Arrows

    For Vista 64 bit and Nvidia GeForce 8500 GT driver version 7.15.11.6960, both the graduated filter and adjustment brush change at increments of 100 or 200 using the scroll wheel or arrows for everything except exposure. Brightness goes from -200 to 0

  • Web template layout with divs

    Hello Dreamweavers. Id like know if I am thinking correctly, I'm coming from Indesign into Dreamweaver, and trying to understand the philosophy of DW. ive have done a rough website layout just for educational purposes. So am I thinking correctly, tha

  • [Ann] FirstACT 2.2 released for SOAP performance testing

    Empirix Releases FirstACT 2.2 for Performance Testing of SOAP-based Web Services FirstACT 2.2 is available for free evaluation immediately at http://www.empirix.com/TryFirstACT Waltham, MA -- June 5, 2002 -- Empirix Inc., the leading provider of test

  • Web Expression fontface

    Having issues with fontface. It displays correctly in Chrome and Firefox but not in Internet Explorer 9-11. If I make a change in the css I can then make it work in IE but not in Chrome of Firefox. I obviously am missing something but I'm just not su