Text find and change problem in CS3 and CS4 script

I use the script below to find some text and change into others.
There is one thing the script can't do it for me.
Example:
(g) Management
(1) that no law which is enacted in the Cayman Islands imposing any tax to be levied on profits, income, gains or appreciation shall apply to the Company or its operations; and
(2) that the aforesaid tax or any tax in the nature of estate duty or inheritance tax shall not be payable on or in respect of the shares, debentures or other obligations of the Company.
Example:(END)
I got a lot of topics or points in the passage. And I want to change the space between '(g)' and 'Management' into a tab character. So I revised the plain text file 1text.
PS: 1text.txt is filled with what to change.
text {findWhat:"^p(^?) "} {changeTo:"^p(^?)^t"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false} Find all space-dash-space and replace with an en dash.
The result is:
(^?)^tManagement
(^?)^tthat no law which is enacted in the Cayman Islands imposing any tax to be levied on profits, income, gains or appreciation shall apply to the Company or its operations; and
(^?)^tthat the aforesaid tax or any tax in the nature of estate duty or inheritance tax shall not be payable on or in respect of the shares, debentures or other obligations of the Company.
PS: ^t is a tab character.
result (END)
This is not what I want.
It should be '(g)^tManagement'.
PS: ^t is a tab character.
Please someboady help me out to revised the script below to change the text into what I want. Thanks so much.
Here is the script.
//FindChangeByList.jsx
//An InDesign CS4 JavaScript
@@@BUILDINFO@@@ "FindChangeByList.jsx" 2.0.0.0 10-January-2008
//Loads a series of tab-delimited strings from a text file, then performs a series
//of find/change operations based on the strings read from the file.
//The data file is tab-delimited, with carriage returns separating records.
//The format of each record in the file is:
//findType<tab>findProperties<tab>changeProperties<tab>findChangeOptions<tab>description
//Where:
//<tab> is a tab character
//findType is "text", "grep", or "glyph" (this sets the type of find/change operation to use).
//findProperties is a properties record (as text) of the find preferences.
//changeProperties is a properties record (as text) of the change preferences.
//findChangeOptions is a properties record (as text) of the find/change options.
//description is a description of the find/change operation
//Very simple example:
//text {findWhat:"--"} {changeTo:"^_"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false} Find all double dashes and replace with an em dash.
//More complex example:
//text {findWhat:"^9^9.^9^9"} {appliedCharacterStyle:"price"} {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false} Find $10.00 to $99.99 and apply the character style "price".
//All InDesign search metacharacters are allowed in the "findWhat" and "changeTo" properties for findTextPreferences and changeTextPreferences.
//If you enter backslashes in the findWhat property of the findGrepPreferences object, they must be "escaped"
//as shown in the example below:
//{findWhat:"\\s+"}
//For more on InDesign scripting, go to http://www.adobe.com/products/indesign/scripting/index.html
//or visit the InDesign Scripting User to User forum at http://www.adobeforums.com
main();
function main(){
var myObject;
//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 "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));
  else{
   //Nothing was selected, so simply search the document.
   myFindChangeByList(app.documents.item(0));
else{
  alert("No documents are open. Please open a document and try again.");
function myDisplayDialog(){
var myObject;
var myDialog = app.dialogs.add({name:"FindChangeByList"});
with(myDialog.dialogColumns.add()){
  with(dialogRows.add()){
   with(dialogColumns.add()){
    staticTexts.add({staticLabel:"Search Range:"});
   var myRangeButtons = radiobuttonGroups.add();
   with(myRangeButtons){
    radiobuttonControls.add({staticLabel:"Document", checkedState:true});
    radiobuttonControls.add({staticLabel:"Selected Story"});
    if(app.selection[0].contents != ""){
     radiobuttonControls.add({staticLabel:"Selection", checkedState:true});
var myResult = myDialog.show();
if(myResult == true){
  switch(myRangeButtons.selectedButton){
   case 0:
    myObject = app.documents.item(0);
    break;
   case 1:
    myObject = app.selection[0].parentStory;
    break;
   case 2:
    myObject = app.selection[0];
    break;
  myDialog.destroy();
  myFindChangeByList(myObject);
else{
  myDialog.destroy();
function myFindChangeByList(myObject){
var myScriptFileName, myFindChangeFile, myFindChangeFileName, myScriptFile, myResult;
var myFindChangeArray, myFindPreferences, myChangePreferences, myFindLimit, myStory;
var myStartCharacter, myEndCharacter;
var myFindChangeFile = myFindFile("/FindChangeSupport/1test.txt")
if(myFindChangeFile != null){
  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;
   } while(myFindChangeFile.eof == false);
   myFindChangeFile.close();
function myFindText(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions){
//Reset the find/change preferences before each search.
app.changeTextPreferences = NothingEnum.nothing;
app.findTextPreferences = 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;
function myFindGrep(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions){
//Reset the find/change grep preferences before each search.
app.changeGrepPreferences = NothingEnum.nothing;
app.findGrepPreferences = 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;
function myFindGlyph(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions){
//Reset the find/change glyph preferences before each search.
app.changeGlyphPreferences = NothingEnum.nothing;
app.findGlyphPreferences = 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;
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;

It takes me a lof of time to comprehend the sentence you write. Cause I am a Chinese. My poor English.
I have to say "you are genius". I used to use the indesign CS2. There is no GREP function in CS2. When I get the new script, I do not know how to use it. Just when I saw the
'grep {findWhat:"  +"} {changeTo:" "} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false} Find all double spaces and replace with single spaces.'
Being confused.
Thanks so much. It seems I have to relearn the advanced Indesign.

Similar Messages

  • I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it. help help help please - I have latest version of indesign - thanks

    I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it.
    Is it not possible to create a text box, fill it with dynamic (data driven) text, but make the font size either scale up or down automatically, so that the entire text box is filled? This is a feature in PrintShop Mail Pro called COPY FIT. but no such feature in Indesign??
    help help help please - I have latest version of indesign - thanks, DJ

    lol... it seems to work, but I have another huge problem!
    Apparently .CSV files cannot contain page breaks in the data! The data I am trying to merge is a 'letter', with paragraphs, line breaks, etc.,
    But, after data merging, it ignores page breaks and only merges the first paragraph of each letter. (sigh)
    Solution? Hopefully, an EASY solution. lol as we have thousands of records.
    Is there a third party indesign plugin that will allow .xml, or .xls data merge import??
    Thx,
    DJ

  • Forgot to sign out of old id and changed icloud email address and cant sign out of find my phone

    I have a iphone 4s and changed icloud email address and forgot to sign out of find my phone. How can I turn it off to change to the new email address that I changed in icloud?

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iDevice, then sign back in with the ID you wish to use.  When you do this you may find that the password for your old ID isn't accepted.  If this should happen, and if your old ID is an earlier version of your current ID, you need to temporarily recreate your old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I cannot download any apps on my Iphone.  It keeps telling me to go to Itune store and change my billing informationa and I have done this and it stiil says the same thing and won't let me download any apps.

    I cannot downlaod any apps on my IPhone.  It keeps telling me to go to the ITune store and change my billing information and I have done that and it still won't let me download apps.

    This may not be the exact message that you are getting, but the reasons explained in here might be why you are getting this message. Take a look.
    http://support.apple.com/kb/ts1646

  • I backed up my iphone 4 and did an upgrade and changed my Apple ID and password but my phone has not recognised the new ID to upgrade my apps via the iphone.

    I backed up my iphone 4 and did an upgrade and changed my Apple ID and password but my phone has not recognised the new ID to upgrade my apps via the iphone.  How do I get rid of the old Apple ID when it comes to upgrading apps.
    I have been into setting>store and signed out and signed back in and it still asks for old ID and password.

    Everything you've had up to now has been tied to your old Apple ID. You cannot switch it over to a new Apple ID. You should contact iTunes support to help you with this:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support visit online support site.
    For Mac App Store: Mac App Store Customer Service.
    For iTunes: Apple Support for iTunes - Contact Us

  • I am still getting redirected to various web sites when using Safari.  My PC is not affected but my I phone and I pad are.  I have reset my router and changed my admin name and password.  I am still being redirected.

    I am still getting redirected to various web sites when using Safari.  My PC is not affected but my I phone and I pad are.  I have reset my router and changed my admin name and password.  I am still being redirected.

    Chances are you mis-typed a character in the Wifi password and the devices saved that information.  Now whenever you try to connect the device refers to the wrong password and the Jetpack does not accept your connection.  Tell your devices to forget the wireless connection and start over.
    Once you enter the proper WiFi credentials the Jetpack will allow you to connect.

  • Mouse pointer Problem with CS3 and windows 7

    Upgraded
    to a new PC which has Windows 7(32bit) as an operating system. Installed my Photoshop CS3 and everything seems ok except when I magnify in the navagator panel. Once I zoom in my mouse pointer changes to 3 hands in the navigator panel. I powered up my old laptop which has Vista and my CS3
    then matched up the mouse settings in the control panel on the new PC. Used the same usb mouse on both PC's, the older Vista laptop worked fine but the windows 7 PC would get a tripple pointer in the navigation panel when I magnified. In the windows 7 laptop I then set the compatibility for Photoshop CS3 to run in XP mode but the problem did not clear. I see in FAQ for CS4 people have complained about tripple cursers in windows 7 but the replies indicated that the recommended fix did not work. Any help apreciated.
    Tom

    Thanks for your solution. I by changing the setting to 125% I am now able to use CS3 without tripple pointers.
    My eyesight is challenged so the decrease in text is a challenge but I can change the setting when I will use CS3 so I have a workarount.
    Thanks,
    Tom

  • Encore CS3 - Hangs and import problems with menus and avi footage with audio tracks present.

    I'm trying to import some footage files in .avi format into Encore CS3 and am having several problems.
    In what follows when I say "crash" I mean Encore quits with a standard Windows error. When I say "hang" I mean Encore does not quit but rather becomes an unresponsive process that must be killed manually using Windows Task Manager.
    My System:
    WinXP Pro SP2
    2.93 GHz Intel Celeron CPU - single core
    Intel PERL mobo
    3GB 400MHz RAM
    NVidia 7800GS video
    I mention these specs however I am not experiencing any hardware
    related bugs or issues (like out of memory or video driver crashes
    etc) when using any CS3 app.
    The footage files (as reported by GSpot) and problems I am seeing. In all cases GSpot reports that I have the appropriate codec installed:
    footage1.avi - Dx50 XVid 1.0.3, Dolby AC3 48kHz 192kb/s, 716834 KB
    Attempting to import as timeline causes Encore CS3 to hang.
    Importing as an Asset allows it to import but when I try to click
    on it in the project windown to add it to a new empty timeline,
    Encore hangs. It plays fine in Windows Media Player.
    footage2.avi - Dx50 XVid 1.0.3, MPEG-1 Layer 3 48kHz 128kb/s, 718302 KB
    Imports fine as either a timeline or asset but no audio track comes
    with it, even though there is an audio track in the footage. It plays
    fine in Windows Media Player. Video imports perfectly, just no audio.
    footage3.avi - Dx50 XVid 1.0.3, MPEG1-Layer3 48kHz 112kb/s, 717606 KB
    Imports fine as either a timeline or asset but no audio track comes
    with it, even though there is an audio track in the footage. It plays
    fine in Windows Media Player. Video imports perfectly, just no
    audio. I tried converting this one using AVS to both MPEG3 and DivX,
    each using MPEG1-Layer3 44kHz 192kb/s audio, and got the same issue
    upon importing into Encore CS3. I also loaded it into Camtasia
    Studio and it looked fine over there. The audio was present and I
    was able to export it as a .WAV file. When I tried looking at the
    file in Soundbooth CS3, there was no audio track or, more
    accurately, the audio track was a flat line.
    By way of comparison these are importing perfectly:
    footage4.avi - XVID XviD 1.1.0 Beta2, MPEG1-Layer3 48kHz 189kb/s Two mono
    channels LAME3.96r, 717436 KB.
    footage5.avi - XVID XviD 1.1.0 Final, Dolby AC3 48kHz 448kb/s Six
    channels (3/2 .1), 716418 KB.
    footage6.avi - XVID XviD 1.1.0 Final, Dolby AC3 48kHz 448kb/s Six
    channels (3/2 .1), 716418 KB.
    footage7.avi - XVID XviD 1.0.3, Dolby AC3 48kHz 448kb/s 6 channels
    (3/2 .1), 717502 KB
    footage8.avi - XVID XviD 1.0.3, Dolby AC3 48kHz 448kb/s 6 channels
    (3/2 .1), 717180 KB
    footage9.avi - XVID XviD 1.1.2 Final, Dolby AC3 48kHz 448kb/s 6 channels
    (3/2 .1), 2291904 KB
    Although this one imported & transcoded correctly, when I went to
    build it to a DVD image file I got some strange errors during the
    "planning video" stage that prevented the process from completing.
    Unfortunately I neglected to write down the error message I recieved
    which read like quite nonsensical babble to me, and I have since
    deleted the project folder. I remember it was not a memory or
    display related error and it included a timestamp where the error
    was happening. I played the footage in the preview panel thru the
    identified timestamp but it previewed perfectly without even a
    jitter in either the video or audio. Took forever to transcode so I
    doubt I'll be doing this one again anytime soon.
    Another issue I am having is with the motion menus. I burned a DVD and it does not load correctly in one of my DVD players (a Sony rdr-gx330 recorder/player). It appears to take extra time to recognize the disk, the startup (first-play) menu does not show automatically, and I must press the Main Menu button on the

    Another issue I am having is with the motion menus. I burned a DVD and it does not load correctly in one of my DVD players (a Sony rdr-gx330 recorder/player). It appears to take extra time to recognize the disk, the startup (first-play) menu does not show automatically, and I must press the Main Menu button on the remote control to make it appear. Other than that it seems to play ok in that player. Also tested it in 2 other DVD players (a Panasonic and Zenith) and it worked just fine like it's supposed to in them. Also plays perfectly in my computer's DVD player/burner using Windows Media Player v10. I tried burning to Memorex +RW single-layer single-sided disks at 6, 7, & 8Mbps project settings but got the exact same result every time.
    Encore CS3 crashes fairly often during authoring, particularly during imports, and when I go to edit things like calling up a timeline in the timeline panel, dragging footage into an existing timeline, or changing button links in a menu etc.. I have also experienced seemingly random hangs even more often, probably 5 or 6 times as often as a crash. Saving the project after every little change I make, then closing and restarting Encore allows me to make progress albeit at a significantly reduced workflow rate. Accessing Photoshop from Encore appears to be working flawlessly so far aside from the slow load times. Encore hangs sometimes during video transcoding, repeat the process and it works ok. If I try to import a menu from the library after importing my footage files, Encore hangs trying to import it either at the 50% mark or the 99% mark (it varies even with the same exact menu selected from the library). If I import the menu first and the footage after, then no problems. Also trying to render motion menus after importing footage causes Encore to hang, render before footage import and everything works ok. Interestingly enough, previewing my project in Encore's monitor or preview panels works perfectly even in High quality mode -- in fact it operates quite smoothly in comparison to other apps I have tried. Although those footage files that had missing audio tracks on import obviously played silently, I have yet to experience a hang or crash during a preview or when scrubbing through a timeline in the monitor panel.
    The last problem I've seen is with the project cache files. It doesn't always get rid of cache files when stuff is deleted from the project. I was working on one project and surprisingly ran out of disk space. When I tracked it down I found that there were some two dozen copies of a footage file I had repeatedly imported and deleted from the project still sitting in the cache folder. The file was an avi about 2GB so it was taking up some 40 GB of disk space for stuff that was no longer in the project. I tried shutting down Encore and manually deleting all the cache files, and that worked for most of them, but there was one 2GB file that kept reappearing in the cache folder even though it was no longer in the project. The XML file in the cache folder still had references to it in there so I can only assume that was the reason it kept showing up. I eventually had to delete and totally recreate the project from scratch to regain my lost disk space. This included having to sit thru a 6 hour long transcoding session which pissed me off to no end.
    Encore CS3 appears on the surface to be a very powerful, feature rich, and approachable app with a simple easy to use interface, but it is awfully bugged in just about every area I have explored and still needs lots and lots of work for it to be really useful. Frankly for me it is pretty damn annoying that I have invested so much money in this suite only to find several of the apps in it (Encore & Premiere in particular) behaving this poorly. In my opinion every single app in the suite exhibits lousy performance whenever you must do anything at all involving the disk from the time you click to start it up until the time you click to close it down. Several of them are just as seriously bugged as Encore too, and being a long time Photoshop v5.5 user I expected much more from Adobe. Even Photoshop is two or three times as slow now (e.g. it takes about 20-30 seconds to simply create an empty 500x500 pixel image file and almost a full minute to load a 30x60 pixel single-layer gif). So far I have attempted to create 6 DVDs using Encore and after 3 weeks of effort have only succeeded in getting one of them onto a final disk -- and that one is kinda limping to work correctly in my DVD player. Three of those projects became so corrupted while working on them that I had to delete them completely and recreate them from scratch, only to find that I still couldn't get them to completion for one reason or another. Seriously disappointing.

  • Username and password problems with CS3

    I have Dreamweaver CS3 Version 9.0 Build 3481
    When I close Dreamweaver and reopen it I lose any usernames
    and passwords for FTP.
    How do I solve this? The 8.0.2. Updater does not work for my
    version.
    Thank you

    Adobe got back to me and gave me some info I'll share that
    might help others who have this problem. YES the fix did work for
    me, I'm running Dreamweaver 9 or the CS3 version and was losing
    user name and password each time I re-opened the program.
    You can find the fix at
    http://kb.adobe.com/selfservice/viewContent.do?externalId=3491671c&sliceId=2
    Basically it's a registry fix, appears when you have Explorer
    7.0 installed.
    Warning: Editing the Windows Registry incorrectly can cause
    serious problems that may require reinstalling your operating
    system. Adobe does not guarantee that problems caused by editing
    the registry incorrectly can be resolved. Edit the registry at your
    own risk.
    1. Launch the Registry Editor by clicking the Start button,
    choose Run, then type "regedit". In the Registry Editor, navigate
    to this folder:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\
    Explorer\User Shell Folders\
    2. See if there is a key called AppData.
    # Backup the Users Shell Folders registry branch as follows:
    1. Right-click the Users Shell Folders folder and select
    "Export".
    2. In the "Export range" section, choose "Selected branch".
    3. Save the .reg file to the desktop.
    4. If problems occur after editing the registry,
    double-clicking the .reg file will re-install that registry branch.
    # If the AppData key is missing, then perform the following
    steps. If the AppData key exists, then skip to Step 5.
    1. On the right side of the Registry Editor explorer pane,
    right-click in a blank area anywhere under the last key in the
    list. You should get a context menu that says "New" with a flyout
    menu.
    2. In the flyout menu, select "Expandable String Value" and
    name the new key AppData.
    # Right-click the new AppData key (or the existing one if it
    was already there), select Modify, and enter the following in the
    Value Data field: %USERPROFILE%\Application Data. If the values for
    the other keys in your User Shell Folders directory don't start
    with %USERPROFILE%, then use the value that your other keys use.
    For example, if your Local Settings key has a value of u:\Local
    Settings, then try usingu:\Application Data.
    # Open Dreamweaver, re-enter the FTP login information for
    one of your sites, and see if the FTP login is now saved when you
    close and re-open Dreamweaver.
    Worked for me.
    Thanks Adobe

  • XMP Schema problem Photoshop CS3 and Bridge

    Hi All,
    I am in the process of creating a XMP schema to contain custom metadata.
    I have created a schema that works 80%. The problem I have is that although the schema shows up and displays all the fields, the data I input is not savced to the image file. This is the same in both Photoshop CS3 and Bridge.
    Has anyone come across this problem before?
    I would be happy to send the schema to anyone who is happy to check it over for coding problems.
    Many thanks
    Andrew

    Hi Thomas,
    I am not sure how to do this. Do I do this through Console?
    I tried and received a nul return.
    Also is the file you are referring to the image file or the Schema text file?
    Sorry, I am a beginner when it comes to XML....
    Thanks
    Andrew

  • Activation problems with CS3 and PS6

    I own CS3 standard edition for Windows. Recently I upgraded Photoshop only to CS6.
    All works well with PS/CS6. However, when I go back to use CS3 applications, the programs won't run. In Acrobat - the program I'm trying to run now - I get the error "Adobe Acrobat 8.1.3 cannot be launched..." and am told to open another CS3 program. I tried that, only to be told my CS3 is no longer registered.
    I got out the CS3 disks, entered the serial number, and am now told I have too many activations. This makes no sense at all, as I just removed CS3 from my laptop.
    Can someone tell me how I can run my CS3 programs with PS/CS6? I cannot afford to update the whole suite; that's just not an option.
    Thanks,
    Ed B

    Hi Ed B,
    First, if I understand your initial question, you have two fully purchased licensed Adobe products: CS3 Standard and PS6.  Second, you had CS3 installed on your desktop and laptop…within Adobe is licensing agreement.  Third, when you began to experiencing problems, you uninstalled CS3 from your laptop and proceeded to reregister CS3 on your desktop—I can help you with that.
    If you did not “deactivate” CS3 on your laptop prior to its uninstallation, it’s still showing as one of your two permissible registrations.  I ran into the same issue with CS5.5 after a rebuild.  I had to call Adobe licensing division and tell them what I did; they corrected my error on their part and I was good to go.  For future uninstalls:
    fire up any CS3 app
    click the Help button on the main menu
    select “Deactivate”
    then uninstall your product.
    Now, as to PS3 and PS6 being on the same system…there’s no problem.  Just make sure that PS6 has its own/correct license number.  To check this is the same method as when you deactivate:
    Open PS6
    click Help button
    select Activate and make sure the code displayed is correct, or put in the new product code. 
    After that, you should be good to go.
    Hope this helps.

  • Printing Problems with CS3 and Epson R1800

    Recently upgraded to CS3 and have now lost most printing options for Epson Stylus Photo R1800. Had no problems with CS2 running in Leopard. Anyone know what has happened?

    >"Unfortunately then I'd have to say all bets are off. The only true test is to print with the standard materials that Epson has designed their printer for. Only if that works well should you be trying third-party materials. For example, third-party inks in general are of poorer quality, are inconsistent, clog more, and in the long run, do not save you anywhere the amount of money they advertise over the genuine Epson products."
    Getting very nice results with an R1800, Inkjetfly CIS, and Red River paper. The R1800 has never had Epson ink run through it and has no abnormal clogging problems. In fact, clogs are rare.
    Getting near perfect matches to the monitor with both Colorvision and x-rite calibrating/profiling equipment. The printer stays on 24-7 so the only ink used, other than printing, is a periodic nozzle check. I am not alone in this, so blanket statements like the above are specious at best.
    And no, I don't sell prints for big bux, so whether they are going to last a hundred years is not a concern. Besides, until someone is around long enough to verify those claims, the jury is out. I've got color prints from the wet days that are fading after 20+ years. Third party inks are not necessarily lower quality than OEM. One of the reasons for the development of high quality third party inks was the dissatisfaction of B&W and fine art printers with the OEM products.
    Of course the cheap refilled/knockoff carts being hawked on ebay and the like are a different story.
    MBP, OS 10.4.11, CS3 10.0.1, R1800 with latest driver

  • Problems with CS3 and CS4 installations

    Hello, I have a problem when I install any product CS3 or CS4. When the program starts establishing, a window appears in the one that says " verifying the profile of the system " but the window being blocked always to 90 %. Does someone know the solution?
    Thank you.

    This is a fairly common problem.  Has to do with orphaned files on your system which have to be cleaned first up to make it work.  Use the search above and type in      installation fails at 90%.
    Here is one link.    http://forums.adobe.com/click.jspa?searchID=309763&objectType=2&objectID=883869

  • Problems with CS3 and Leopard

    Having a bit of a nightmare with Indesign and Photoshop CS3 since upgrading to Leopard. Running a Dual 2.5 GHz PowerPC G5 With 2GB DDR SDRAM. Anyone else having problems?

    Below is the Adobe Marketing Line (copied verbatim). It's what I was told by Adobe Sales and what I read at Adobe.com, FAQ, before buying CS3 in October 07. Imagine my surprise when I discovered all of the issues with CS3 and Leopard, even after the update to Acrobat 8.1.2 Professional which promised full compatibility (see chart at bottom).
    Apple and Adobe... ARGH.
    Oh yes, for all of the new suckers out there who are about to buy CS3 for their new Macs, the exact same FAQ is at Adobe.com, even now, Thursday, 12 Jun 2008.
    ADOBE CREATIVE SUTIE 3 Frequently Asked Questions
    Support for Mac OS X Leopard
    Q. Is Mac OS X Leopard (v10.5) important to Creative Suite 3 customers?
    A. Yes, Mac OS X Leopardthe latest version of Apples operating systemdelivers an elegant,
    productive new computing experience for creative professionals. Adobe and Apple have been
    collaborating closely for months to ensure that Adobe Creative Suite® 3 applications can run
    smoothly and reliably on Mac OS X Leopard. We are proud to support this impressive new
    operating system, and to ensure that our creative customers can take full advantage of the
    performance and value of using Creative Suite 3 applications and Mac OS X Leopard on
    Intel-based and PowerPC Macs.
    Q. Are Adobe Creative Suite 3 applications compatible with Mac OS X Leopard (v10.5)? If
    some are not fully compatible today, when will they be compatible?
    A. Thanks to close collaboration between Adobe and Apple, most of the CS3 applications and associated technologies, such as Adobe Bridge CS3, Version Cue CS3, and Device Central CS3, are compatible with Mac OS X Leopard without requiring additional updates. However, the following CS3 applications will require updates for full compatibility with Leopard: Adobe Acrobat 8 Professional and our professional video applications, including Adobe Premiere Pro CS3, After Effects CS3 Professional, Encore CS3, and Soundbooth CS3. We expect to publish free Leopard compatibility updates for the video applications in December 2007 and for Acrobat 8 Professional and Adobe Reader 8 in January 2008. For a complete overview of compatibility between Adobe creative applications and Mac OS X Leopard, see the chart on page 2 of this FAQ.
    Q. Will older versions of Adobe creative softwaresuch as Creative Suite 2 and
    Macromedia Studio 8 softwaresupport Mac OS X Leopard?
    A. While older Adobe applications may install and run on Mac OS X Leopard, they were
    designed, tested, and released to the public several years before this new operating system became available. You may, therefore, experience a variety of installation, stability, and reliability issues for which there is no resolution. Older versions of our creative software will not be updated to support Mac OS X Leopard. For a complete overview of compatibility between Adobe creative applications and Mac OS X Leopard, see the chart on page 2.
    Q. Will Adobe continue to test CS3 applications on Mac OS X Leopard?
    A. Yes. Adobe sets high standards of quality, stability, and reliability for our professional creative
    products, and we have worked closely with Apple to test Creative Suite 3 applications on both pre-release versions and the final shipping version of Mac OS X Leopard. While this testing showed that most CS3 applications perform well on Leopard (and that others run well but need updates for a few identified issues), we recognize that other issues may unexpectedly arise on any new operating system. We plan to continue testing and to monitor user experience closely to address any such issues. If you encounter any issues, please report them by going to www.adobe.com/misc/bugreport.html and clicking Report
    A Bug. Please note that we dont respond to submissions, but we do review them closely with the appropriate CS3 product teams.
    Q. Which CS3 applications will need patches to be compatible with Mac OS X Leopard?
    A. The following table summarizes compatibility between Adobe creative applications and Mac OS X Leopard. It notes which CS3 applications require updates for full Leopard compatibility and when Adobe expects to release those free updates.
    At A Glance: Mac OS X Leopard Compatibility
    ADOBE APPLICATION COMPATIBLE WITH REQUIRES UPDATE NOTES ABOUT
    Mac OS X Leopard For Mac OS X Leopard Compatibility
    Creative Suite 3 Design Premium ✔ Requires update to Acrobat 8.1.2
    Professional for full compatibility.
    Expected to be available
    in late January 2008.
    Creative Suite 3 Design Standard ✔ Requires update to Acrobat 8.1.2
    Professional for full compatibility.
    Expected to be available
    in late January 2008.
    Creative Suite 3 Web Premium ✔ Requires update to Acrobat 8.1.2
    Professional for full compatibility.
    Expected to be available
    in late January 2008.

  • Step and Repeat Problem in CS3-Urgent!

    I was working on a file, step and repeats was working just fine. Then suddenly within the same file it got messed up somehow.
    Whenever I type in a decimal point (say 4.5) and I move on to the next field it will default to a higher number (say 5). It is not letting me do decimal points!
    I did replace preferences (and yes I got the pop up on the start menu). And the problem is still there.
    And it happens in all files, not just the one.
    Please help, the MUST be working right or else I can't do my job!
    CS3 5.0.4 Mac 10.5.8

    Well, it wasn't. But I rebooted again (after replacing preferences) and so far it seems ok. Weird.
    I'll post back up again if I have any problems.

Maybe you are looking for

  • Jpeg images in email?

    how do i transfer an image to email as a jpeg instead of the picture itself appearing on the email?

  • Batch No Variable in Inventory Transfer

    Dear Experts,     I am trying to design a PLD with Inventory transfer screen. I need to capture the Batch Nos of the items transferred. I am unable to find the field name (or) system variable of Batch Nos. How can I find the system variable nos of Ba

  • After changing the Oracle password - Shared services is not running

    Hi All, I am getting the below error after changed my oracle password. SharedServices Log: com.hyperion.hit.registry.exceptions.RegistryException: java.sql.SQLException: [Hyperion][Oracle JDBC Driver][Oracle]ORA-28001: the password has expired      a

  • Dreamweaver Upgrade

    Hello, The office I work for has a copy of Dreamweaver MX. Can we upgrade from Dreamweaver MX to Studio 8? Thank You; Jeremy

  • Exporting then importing projects back into imovie so I can re-edit

    If I have almost completed a project but want it off my hard drive for awhile, is there a way to save that project on a portable drive, then latter, if I need to make changes, import that project back into imovie so I can add video or change the tran