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}

Similar Messages

  • [JS CS3] JS method for Object Styles Break Link to Style

    I have pages full of objects that are assigned the pesky "Basic Graphics Frame" object style. I need to do the equivalent of choosing "Break Link to Style" in the Object Styles panel on all the objects in many files.
    I haven't been able to find anything equivalent to the "Break Link to Style" functionality in looking through the Object Browser. Finding all objects with [Basic Graphics Frame] object style and applying an object style of [None] doesn't do the same result. Any ideas?

    hi:
    //FindObjectPreference
    myDoc = app.documents[0];
    app.findObjectPreferences = NothingEnum.nothing;
    app.changeObjectPreferences = NothingEnum.nothing;
    app.findChangeObjectOptions.properties =
      objectType: ObjectTypes.allFramesType, //graphicFramesType, textFramesType, unassignedFramesType
      includeFootnotes: true,
      includeHiddenLayers: true,
      includeLockedLayersForFind: true,
      includeLockedStoriesForFind: true,
      includeMasterPages:true
    //var graphicOStyleName = "[Normal Graphics Frame]";
    app.findObjectPreferences.appliedObjectStyles = myDoc.objectStyles.item(1);
    var dstStyle = myDoc.objectStyles.item(0);
    var founds = myDoc.findObject(0);
    var foundsLen = founds.length, i, found;
    for(i = 0; foundsLen > i ; i++){
      //app.select(founds[i]); alert(founds[i].appliedObjectStyle.name);
      founds[i].applyObjectStyle(dstStyle, false, false);
    <pre>
    jxswm

  • Break Link with Style

    Hello all,
    I need to break a link to an object style via script. I found this discussion:
    http://www.adobeforums.com/webx?128@@.59b4d4d7
    jxswm suggests the line founds[i].applyObjectStyle(dstStyle, false, false); but this is the same as clicking on "None" and not the same as calling "Break link to style". I.e. the formatiing is lost and replaced by [None].
    Has anyone found out how to break the link without the object changing its formatting?
    Thank you very much.

    Ah, not quite. "myObj.appliedObjectStyle = myTempStyle" removes overrides. But myObj.applyObjectStyle(mytempStyle, false false) does not, so this is easily fixed.
    For any lurkers or archive-diggers (like myself ;) ) my entire routine:
      var myMenuAction = app.menuActions.item("$ID/Copy");
      app.clearOverridesWhenApplyingStyle = false;
      if (app.selection.length > 0) {
        var noStyle = app.documents[0].objectStyles[0];
        for (var n=0; n < app.selection.length; n++) {
          var myObj= app.selection[n];
          var myStyle = myObj.appliedObjectStyle;
          if (myStyle != noStyle) {
            var myTempStyle = myStyle.duplicate();
            myObj.applyObjectStyle(myTempStyle, false, false);
            myTempStyle.remove();
      } else {
        beep();
        beep();
      app.copy();

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

  • How do you select all paragraphs using the same style in Pages 5.2?

    I'm trying to find how to select all paragraphs using the same style in Pages 5.2 without any success.  I writing a book and I need to able to adjust all my paragraph styles globally.  I see how upgrade my paragraph style when I do something new, but not how to revert back to the orginal template.
    For example, in my custom template for my book I have 12 font for a review questions paragraph style.  I changed the font size for all this paragraph style to 18 font.  Now I want to change it back to size 12 font.  But I have this paragraph style at the top and bottom of my document.  How to I select all of my review questions style so I can make the font change to all at the same time? 
    I just upgrade to Pages 5.2 from Pages '09. 
    Thanks for the help,
    Rob

    The Pages User Guide might help here.
    Better to post your topic in the Pages designated community > Pages: iWork: Apple Support Communities

  • [JS][CS3] Break Link to Style

    Hello everyone.
    A while back ago I wrote a script to Brake Links to Paragraph Styles and Character Styles. That was easy since you can set to false the option "Clearing Overrides" when applying "No Paragraph Style" [0] or "None" [0]. But I cannot do such a thing with objectStyles "None" [0] even when setting the options to False. Every time the TextFrames get the ObjectStyle "None". And the GUI Palette is not showing a "+" as being modified.
    It does work when using "Break Link to Style" in the GUI.
    Any help would be appreciated...
    Alex.

    CTC Imaging wrote:
    Yes I did think of that solution, but I am trying to keep it clean. Especially if you are doing several document input as copy and pasting into a single document. Since I am trying to doing this automaticaly (The script is assigned to the COPY command through eventListener), if I choose ONE generic name to rename to, I will run into the same issue. Of course I could scan the DESTINATION document for that GENERIC names and add a prefix (counter) to the one I am going to rename in the ORIGINAL document. But It would not work if the DESTINATION document is not open YET! And I can't do it as PASTE because I have to copy with the correct naming FIRST.
    So the best option is to break the link. So how can I emulate "Break Link to Style" in the ObjectStyles menu from the GUI???
    Alex.
    Then you should add Date&Time at the end of name of current Char/Para/Object/Cell/TableStyle
    "MyHeaderStyle" -> "MyHeaderStyle(2010-01-04 16:12:35)"
    I don't think that you can do this TWICE in the same second in two different documents I've done something like that in one of my script and I've added 2 second extra loop to be sure that "random" name can't be duplicated
    robin
    www.adobescripts.co.uk

  • Best workflow to select all text in object

    I regularly copy text filled objects to reuse them and need to change the text within. Does anyone have a fast way to select all text?
    Currently I have to double click the text to get a cursor and then use a control+A to select all text in the box.
    I would love to have a single to 2 button press to do this or better yet a fast way to do this with the mouse. Even an contextual right click option would rock!
    All ideas appreciated and will be tested.
    David

    Nice tip! I have also found you can right click to edit text, I wish it would select all when you do that.

  • Select all text boxes (help)

    I will try to explain this as best I can, bare with me.
    I'm using Acrobat X 10 and I'm trying to print a PDF file that are slides from one of my university classes. The problem I'm having is that some of the text is not printing or printing very lightly. I have solved this problem by going to the tools panel and then edit document text tool. From there I select a text box, select all text in said text box, select properties, click on the text tab and then changing the fill from white to black(following so far?). Now my issue is that there are many text boxes, to the point where only one word occupies a text box. So what I'm wondering is if there is a way to select all the text boxes so I can do this proccess for the whole file rather than selecting each text box and repeating the proccess, as this is very time consuming.
    Any help is appreciated.

    Why don't you see if your printer driver has an option for printing B&W (not grey or greyscale), that might do the trick.

  • I need a simple script (Break Link To Style)

    Hi nice guys,
    Can someone please provide a simple script that will break the links to styles in all the paragraphs in a document.
    Thanks in advance
    Maria*
    *An non coder designer that simply is not capable of understanding javascript... (but I have tried!)

    Hi Maria,
    Jongware's post (http://forums.adobe.com/message/1890625#1890625) gave me a clue on how to do this.
    Give this a try:
    var i, j, myDoc = app.activeDocument,
              allStories = myDoc.stories,
              thisStory,
              thisPara;
    for (i = 1; i < allStories.length; i++) {
              thisStory = allStories[i];
              for (j = thisStory.paragraphs.length - 1; j >= 0; j--) {
                        thisPara = thisStory.paragraphs[j];
                        thisPara.applyParagraphStyle(myDoc.paragraphStyles[0], false)
    alert ("Job Done!");

  • How do you selected all text boxes in a document

    Say you have 100 pages in a document and you have a threaded text box placed on pages 1 through 100. How do you selected all the text boxes at the same time? You might do this to change the size of the boxes, or lock all of the boxes, or apply an object style to all of the boxes.

    Depending upon how well your document is set up though, layout adjustment might work.
    If changing text box size is on your agenda, and every text box is lying exactly on guides, then layout adjustment might work.
    The only way I can think of to lock all frames in a story, or to change the size of all text frames in a story, would be to write a Javascript. And, even after years of practice, I know that it'd still be faster for me to just step through the document and make the changes by hand than it would be to bang my head against Javascript for n hours before I found a good solution.
    Barring these exceptions, I think that Bob's statement
    You don't because you can't.
    is actually pretty accurate. Terse, maybe, but accurate.

  • How to select two text boxes (linked) separated by a distance?

    dear all,
    how to select two boxes in an indd CS6 document? I tried to label them also but unable to select.
    Virender

    Dear Uwe, Many thanks for your points.
    I have 10 indd files and each file has one page and a table is only item present on page. So few files has table present in one table and few files has two text boxes because table has many rows so spiltted in two linked text boxes.
    I somehow able to select both text boxes but while exporting them only one text box table get exported as png because of improper code.
    #target Indesign
    var sourceFolder = new Folder ("/Users/admin4/Desktop/INS");
    var myFiles = sourceFolder.getFiles();
    //alert (myFiles.length);
    var destFolder = new Folder ("/Users/admin4/Desktop/folder3");
    for (i=0; i < myFiles.length; i++)
         if (myFiles[i].name !=".DS_Store")
         var sourceDoc = app.open(myFiles[i]);
         app.activeDocument.pageItems.everyItem().select();
         //app.activeDocument.stories[0].tables[0].parent.select();
         var destFile = File(destFolder + "/" + myFiles[i].name + ".png");
         app.selection[0].exportFile(ExportFormat.PNG_FORMAT, destFile, false);  
         // here i need to correct code.
         sourceDoc.close(SaveOptions.NO);

  • Adobe X - How to select all text in a file

    I have a feeling this is a dumb question, but I need to select all the text in a pdf file and I can not figure how to do it with Adobe X.  It was very simple in previous versions.  Any answers would be greatly appreciated!
                                                                    mathguy06

    ariel0 wrote:
    why are you sending this question to me
    Nobody is sending anything to you.
    Did you subscribe to the forums accidently?

  • No select all text in text field when I mouse in

    Hello
    How can I go to next row in a multi-text field when I point my mouse in?
    That is, I don't want (when I fire in) have all text select but i want write soon, otherwise as soon as i begin to write all text inserted in it is deleted
    Thanks

    HI user560737,
    After over 170 post still
    a. No Forms version
    b. No friendly handle
    c. Inadequate and incomprehensible description
    Perhaps one or more of the following are true
    1. Members of this forum are not equipped to help you.( So, why bother to post?)
    2. You are not appreciative of the help being extended to you, in the form of marking posts helpful / correct
    3. You do not articulate and follow through on your post.
    How else can one explain
    Handle:      user560737 Status Level:      Newbie
    Registered:      Feb 24, 2007
    Total Posts:      171
    Total Questions:      37 (35 unresolved) >
    How can I go to next row in a <b>multi-text field</b> when I point my mouse in?That is, I don't want <b>(when I fire in)</b> have all text select but i want write soon, otherwise as soon as i begin to write all text inserted in it is deleted

  • (PS CS3) Selecting all text to change fill color?

    I have a graphic with text - the text was not inserted by Photoshop, and it's not selectable as text; it's just part of the graphic.  I'd like to change the color of the text.
    I can select each letter and individual block of punctuation, etc. by using the Magic Wand and Shift+Click on each item.  Is there a way, though, to simply select all of the text - or at least one complete line - with one or two moves or commands, vice the tediousness of clicking in each letter, comma, i dot, and so forth?
    Ed

    Given that the text is uniformly colored against a colorless background, a VERY easy shortcut can be to just use Image - Adjust - Hue/Saturation, pick a color, then change the Hue slider.
    Literally only a few seconds work...
    -Noel

  • Why can't I select all text in mail?

    I just upgraded my iPhone 4 to IOS 5, and noticed that I no longer have the option to 'select all' in a mail document?!?  If I tap &amp; hold on the document, my choices are 'copy', 'define', and 'speak'. The select all option is no longer present. I use this feature quite a bit &amp; I really want it back.  Is there some setting I can change somewhere?
    Thanks, anyone who can help
    Natalie

    i got same issue like you on iOS 5.0.1, not only in mail but also in safari or other apps.
    sometimes i can make the 'select all' option out but when i did it, did nothing.

Maybe you are looking for

  • Default Carriage return in the last column when data is downloaded to Excel

    Problem: When you download data into Excel and if the last column of your excel is a numeric field, XMLP will add a carriage return (special character) to your numeric field. This feild will be considered as character field by excel. Work Around: Whe

  • Help! Tampered with files-can't open photos in iPhoto any longer

    I was doing some stuff with my Photo folders in the Finder, accidentaly deleted some and even after dragging them out of the trash I can't view my photos in the iPhoto anymore. What do I do? All the pictures are still in the Finder folders but iPhoto

  • Macbook won't recognize password!!

    I have a Linksys Wireless-G broadband router model no. WRT54G. It has connected the main PC with another PC, but I recently got a macbook laptop, and it will not connect. It found the signal, but will not recognize my router password. Does anyone kno

  • Resolving an transaction error of posting to expense instead of revenue.

    Hi everyone, We have a client who had created an item with an incorrect Item Group.  Without realizing it, they had already posted the Sales and Delivery transactions for the item.  Once the error was caught, the item was changed back to the correct

  • Losing file pointers in library

    I'm have a fairly major problem where my library loses pointers to files in my iTunes library. I have set iTunes to manage my music files, and they're kept on an external drive. I know to make sure that the drive is accessible before I launch iTunes.