Diacritics, CS6

Hello,
I need to make some shortcut keys for some characters in romanian and the examples I found in Findtochangebylist do not work for me for one reason or another, maybe I write them wrong, Would you please indicate on code what should I write exctly, for a cut-paste idiot proof operation?
//FindChangeByList.jsx
//An InDesign CS6 JavaScript
@@@BUILDINFO@@@ "FindChangeByList.jsx" 3.0.0 15 December 2009
//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
text  {findWhat....
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/FindChangeList.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;

I see no highlighted missing glyphs in your sample - but I don't see any barred L, and I am surprised you can get through a whole page of Navaho discussion without seeing it once. When you post such a sample, a screenshot of proper display (and/or a screenshot of the improper display on your side) is helpful.
Having worked in quite a few similar "languages of lesser diffusion" I've found that it very much matters how it was keyed, and whether or not the Word source relies on combining glyphs. I'm guessing it did.  Saving out raw Unicode text from Word (or RTF, alternately, but with more flaky results) is a trick I've used quite often to work around such issues. I think it boils down to complexities in the Word format versus InDesign's Word importer. 
You are placing text, aren't you? When you say "poured" I am guessing that you're not copy/pasting a book-length linguistic text and trusting MS Word and OS X clipboard to play nicely together.

Similar Messages

  • Navajo diacritics in ID

    I'm typesetting a book in ID CS6 that uses many Navajo diacritics, but I can't get them to show up with any font I've tried, including Times New Roman Navajo. The Word document that I poured uses plain old Times New Roman and most (but not all show up in Word, both on screen and printed. But when poured into ID they just show up as missing glyphs. Any ideas? Max OS 10.6.8, Suitcase Fusion 3.

    I see no highlighted missing glyphs in your sample - but I don't see any barred L, and I am surprised you can get through a whole page of Navaho discussion without seeing it once. When you post such a sample, a screenshot of proper display (and/or a screenshot of the improper display on your side) is helpful.
    Having worked in quite a few similar "languages of lesser diffusion" I've found that it very much matters how it was keyed, and whether or not the Word source relies on combining glyphs. I'm guessing it did.  Saving out raw Unicode text from Word (or RTF, alternately, but with more flaky results) is a trick I've used quite often to work around such issues. I think it boils down to complexities in the Word format versus InDesign's Word importer. 
    You are placing text, aren't you? When you say "poured" I am guessing that you're not copy/pasting a book-length linguistic text and trusting MS Word and OS X clipboard to play nicely together.

  • Diacritics disapear while exporting to RTF

    I am typesetting Croatian text, with lot of diacritics. When I export finished layout to RTF so I can import it back to Word or to some other text processor, these diacritis are repleced by some characters in wrong encodings. I am using InDesign CS5 (version 7.0.4) on Mac computer. The same thing happens with importing/pasting in Word, Pages, TextEdit, any e-mail program etc. Has anybody any idea about the solution?
    For those who are willing to play a little bit with this, here is the sample sentence in Croatian with some critical characters (čćžđš):
    "U zimskim mjesecima u toploj kuhinji djeca su pozorno slušala zanimljive priče iz starine, priče o duhovima i mrtvacima, o doživljenim događajima, kao i o događajima u kojima roditelji nisu sudjelovali, ali koje su se prepričavale u selu."
    Try to paste/input this sentence  in InDesign CS5, then export story to rtf, and then import the rtf in Word or Pages, or simply try to copy from InDesign and paste it to Word/Pages.
    I would appreciate any suggestions or solutions.

    Dear Joel,
    somehow I lost the contact with this thread, and I somehow used some ad hoc methods to help myself in those rare cases when I had to export anything from ID back to Word during last year. To my disapointment, today when I installed brand new CS6 and tried to export the text to epub and rtf- in all the three cases there was the same error: my source text in ID was
    čćžđšČĆŽĐŠ
    and what I have got in epub and rtf was:
    ËÊæπ»∆Æ–©
    and this happens with exporting as well as with copy-paste.
    Strangely enough, when I paste to another Adobe application there is no problem. Still more strange is that when I paste the text, for example in DW it is pasted corectly, then if I copy it from DW and paste it in Text Edit or Pages, for example, it goes without the problem. It really drives me crazy. I myself am not without experience with different typographies (devanagary, nastaliq) and I was very happy to see that the support for Devanagari is finally included in this new version of ID. But this problem with Croatian diactitics ramained mistery to me.
    (for your info, I was using Adobe Garamond Pro and couple of other fonts. They all went through bad, except Arial Unicode which gave almost exact result, messing just one character.)
    Thank you once more for your answer. 

  • Adobe Bridge CS6 stalls in Photoshop...

    I downloaded CS6 Design Standard from Adobe webpage and have tried several times to get mini bridge/bridge to run, but the message 'Waiting for Bridge CS6' runs for hours. I am using a 64-bit Dell desktop with Windows 7 Home Premium. I have tried option 4 on Error: Waiting for Bridge | Mini Bridge panel, but nothing changes on deleting the Switchboard from the registry. Some folks here have suggested looking up bridge.exe in the Task Manager, but my task manager doesn't even show it up.
    I would appreciate help, and soon.

    rekha_dev_sharma wrote:
    If the software installed I would expect it to work…
    Well… that's your expectation.  Did you pay for the download? During the first 30 days you'd be entitled to your money back, but it's been a heck of a lot longer since Adobe demanded or accepted any mnoney for "CS6 Design Standard".  If you just recently acquired that obsolete suite, it was certainly not through a legal purchase from the Adobe store. 
    rekha_dev_sharma wrote:
    …What is a 'newer version of Photoshop'?…
    E.g.: Photoshop CC2014 15.2.2.
    rekha_dev_sharma wrote:
    …So, can you answer why it seems to be launching but no jpg come up?
    I haven't got a clue what you mean by that nonsensical grammatical construction, nor does that question seem to have anything to do with your original post.    ??? ?? ?
    Also, please remember you are not addressing Adobe here in the user forums.  You are requesting help from volunteers users just like you who give their time free of charge. No one has any obligation to answer your questions.

  • I am trying to update Adobe Bridge and Photoshop CS6, because it is not opening my CR2 files taken by my Canon 6D.  I have tried to go to help updates, and the software says that it is "Up to Date".  However, if I view the plug-in, it says that Camera R

    I am trying to update Adobe Bridge and Photoshop CS6, because it is not opening my CR2 files taken by my Canon 6D.  I have tried to go to help > updates, and the software says that it is "Up to Date".  However, if I view the plug-in, it says that Camera Raw is only version 7.1.  I can not find a direct download for Camera Raw 7.3, only the DNG converter, NOT CAMERA RAW!  Please Help!

    Did you fix your issue?  I am having the same one

  • Set file type associations in Adobe Bridge for Photoshop CS6

    Is there a way I can edit the registry so that in Adobe Bridge, under edit, preferences, file type associations, the jpg extension is forced to use the 32-bit version of Photoshop?  I can do it manually, but is there a registry key i can export to apply it to multiple computers?

    Yes, in theory, but it is generally not recommended. But that location would depend on what OS you are on. This video give the locations for the Photoshop files, Bridge would just be in a neighboring folder: http://tv.adobe.com/watch/the-complete-picture-with-julieanne-kost/how-to-reset-photoshop- cs6s-preferences-file/

  • Font usage in CS6 Premiere , Open and Closed quotes??

    Hello
    I am trying to use open and closed quotes in CS6 Premiere, without any success.
    Using a Mac 10.8.5.
    When I try the alt shft [ and the shift [ it only uses one side of the quote.
    Any suggestions?
    Is this a software, settings or OS issue?
    Thank you
    I am working on deadline....
    Brian

    One side?  I'm confused.  You mean want these?
    But you're only seeing this?

  • PSE 10  and Adobe CS6: When running silent install help is not working afterwards

    Hello,
    I'm not sure if this is the correct forum. If not: Please help me find the correct one.
    I have a big issue with Adobe CS6 (and former versions like Photoshop Elements 10): When installing it from DVD running GUI everything is working fine afterwards. If I install e.g. Photoshop Elements 10 using "Silent Installation" help is not working afterwards. It states that it cannot locate the URL. I have not installed AIR and also do not plan to install it.
    I have 'played' a little around with Common Files\Adobe\helpcfg and help directory. Now at least I do not get an error message but still it's not the online help which opens in the browser but the web page that is defined as 'home'.
    The same I see now in Adobe CS6. I have e.g. packaged After Effects and Illustrator and when deploying it I'm not able to open help as well and I fear that this is the same issue.
    Has anyone deeper knowledge about how "helpcfg" is working? Any example files? Any other help appreciated as well.
    Kind regards
    János

    @hannilator Have you checked the exceptions folder contents for instructions on how to push to logged off computers? Here's what I get when I package CS6 (DesignWebPrem) and excude AIR/CHC:
    After you have deployed the package, separately install the products in the exception folder.
    IMPORTANT: Before you install the products in the exception folder, refer to the following Adobe Knowledgebase article for information on installing these products and configuring the settings correctly:
    http://www.adobe.com/go/aamee_exceptions
    NOTE: The installation commands provided below will work when the user is logged in to the client machine where the package is being deployed. For the scenario where the user is not logged in, prefix the following string to the command:
    sudo launchctl bsexec `ps auwwx |grep [l]oginwindow | awk '{ print $2 }'`
    As an example, here is the command to install "Adobe AIR" when the user is not logged in to the client machine (assuming Adobe AIR is part of the package):
    sudo launchctl bsexec `ps auwwx |grep [l]oginwindow | awk '{ print $2 }'` Adobe\ AIR\ Installer.app/Contents/MacOS/Adobe\ AIR\ Installer -silent
    ###################################### Command to install Adobe Dreamweaver Widget Browser ######################################
    Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer -silent -eulaAccepted -programMenu WidgetBrowser.air
    ###################################### Command to install AdobeHelp ######################################
    InstallAdobeHelp appVersion=4.0.244 appId=chc pubId=4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 installerArg1=-silent installerArg2=-eulaAccepted installerArg3=AdobeHelp.air

  • I am trying to open CR2 files from a Cannon EOS 1DX camera in Photoshop CS6 and I have already updated the Camera Raw Plug in but Photoshop is still giving me the cannot open files dialog box? Help?

    I am trying to open CR2 files from a Cannon EOS 1DX camera in Photoshop CS6 and I have already updated the Camera Raw Plug in but Photoshop is still giving me the cannot open files dialog box? Help?

    Canon 1DX support was added to ACR in version 6.7, 7.1.  An updated CS6 should be at level ACR 8.6.  If your ACR is not at level 8.6 try using CS6 menu Help>Updates.  If that does not install ACR 8.6 try downloading the ACR and DNG 8.6 converter and see if ACR 8.6 will install into your CS6.
    Adobe - Adobe Camera Raw and DNG Converter : For Windows
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh

  • Can This Laptop Be Used For Premier Pro CS6?

    Developed an interest in learning to edit video but have become confused in reading all of the posts about what is the true minimum hardware requirement/setup, as compared to what is listed as System Requirements by Adobe.  Probably best to start with my initial goals.
    Here is what I was looking at doing as this journey begins:
    Purchased Creative Suite 6 Production Premium Classroom in a Book(CIB) after reading a review it would be a better start than Premier Pro CIB, which I plan on getting, if one has no experience in this field.  During research feel that I would like to become a subscriber to the Creative Cloud as there are a number of products I would like to learn and use.  Basically, I am hopeful that I may use my current laptop for the beginning of my education and further down the road look at getting a more powerful system as knowledge/skills/requirements increase.  Initial video I wouild like to work with is that received from family members smart phones and will be looking at purchasing a simple video camera for short interviews and brief presentantions.  Will likely desire uploading some completed projects to the web.
    Current Hardware:
    Laptop:  Asus N53SV
    OS: Windows 7 64bit
    CPU: Intel i7-2670QM  2.2GHz Cores=4  Threads=8
    L3 Cache: 6mb
    RAM: 6MB
    Graphics: Intel HD Graphics 3000, NVIDIA GeForce GT 540M 1024 MB
    OpenGL: 3.1.0
    Display: 1920 X 1080
    Drives: (1) HD, Seagate 500GB @ 7,200 RPM partitioned as C: 186GB with OS and programs,  D: 254GB some documents
                  E: Optical DVD-RW
                  F: USB 3 connected 2 TB Seagate GoFlex External HD
    If this laptop can be used with current hardware, I wouild sincerely appreciate any suggestions for how to best utilize what is available to begin learning Premier Pro CS6.  As I will not have any time schedules that will have to be met I can accept that this may not be the ideal system.  Just hoping it can be a start.
    If any further information is required about the laptop please let me know and Thank You for your time with this question.
    James

    JEShort01 wrote:
    That's not a bad setup at all to get started with small projects.
    We all have different budgets and patience. You may be OK with what you have. And if it seems too sluggish - your rig would be for me , the following would help Premiere Pro performance:
    - increase RAM to 16GB (about $140 per eBay pricing from a seller with high ratings a few minutes ago)
    - add another drive; my favorite choice with your laptop would be a Seagate Momentus 750gb drive installed in a NEWmodeUS.com optical bay caddy (slips into your laptop)
    Regards,
    Jim
    Exactly what I have done, and it is great.
    You can get the caddy here:
    http://www.ebay.com/itm/2nd-Hard-Drive-Caddy-Adapter-Asus-N55-N73-N43-N45-N53S-N53SV-G73Jh -G73Jw-G73Sw-/320881591179
    I had this setup for my old HP and have a caddy ready to install for my new Dell Precision as well. You can either get an external house for your DVD drive, or get an external one - they are quite cheap.
    Ulf

  • Error message with a Serial Number after purchasing CS6 Design Standard

    Hello everyone,
    I have an error message "we are unable to validate this serial number for CS6 Design Standard" when using my official serial number.
    I got the Serial Number from my Adobe ID account and e-mail purchase validation.
    And no phone number to contact. Someone knows what I could do ?

    You should Contact Customer Care via chat; phone support is only available Mon-Fri during US daytime.

  • Error while editing a pdf using CS6

    Just recently, when I am attempting to edit a pdf it becomes unresponsive.  I am currently using CS6.  I have not done anything different.  Since I have been experiencing this problem, I have uninstalled CS6 and re-installed with no resolution to the problem.
    Any ideas?
    Thanks,
    Charla

    That’s weird.  How about this
    1.    which platform, Mac or Windows, and if possible please provide the operation system and its version?
    Windows 7
    1a. please provide your hardware info, that is, which CPU, how much RAM, and how much free space your hard disk still has available
    cid:[email protected]
    2.    which Acrobat version are you using? You can find this on the application's splash screen when you select "About Acrobat" (Mac: menu/Acrobat/About Acrobat & Windows: menu/Help/About Acrobat)
    Version 10.1.8
    3.    please provide the 'dot release' version you are using, such as Acrobat 10.1.8 and not just Acrobat 10
    10.1.8
    4. are all CS applications installed on the same computer and in the "Applications" folder?
    All on the same computer, but I apologize, where would I find the Applications folder?
    4.    was Acrobat installed as part of your CS installation, or was it independently installed?
    Yes, Adobe Acrobat was installed as port of the CS installation.
    6. if independently installed, was it before or after the CS apps?
    7. what kind of PDF's are you trying to edit where this happens - does it always happen with every PDF or just particular ones?
    Every pdf.
    - I am trying to get a picture of what kind of content inside the PDF you typically work with, e.g., text-only, forms, graphic images
    All the above
    8. are you working inside a local network, if yes, how many computers are connected to it?
    Local Network, 9 computers and I am th only one with access to the CS6 Suite 10.1.8
    9. do you use any kind of cloud storage (such as Box, DropBox, etc) or network syncing processes
    Drop Box
    10. are you able to see whether other processes are taking place at the same time as when you use Acrobat, for example virus scanning, updating, etc
    Yes, I think so.  By the task manager?
    Charla Szokola
    Literature Marketing
    Triad Process Equipment
    Ph: 248-685-9938
    Fax: 248-685-3204
    <mailto:[email protected]> [email protected]

  • Error message when saving a file in DW -CS6

    When I go to save a file in Dreamweaver CS6, using Windows 7 -
    I get this error message.
    "While Executing onLoad in bc_afterSave.htm, the follwing javascript errors occured"
    In File "bc_aftersave.htm";
    onload is not defined
    Everything was fine for years now I get this annoying error message. The file saves but the error message always pops up.
    I am using the Adobe Application Manager and getting my software through the Adobe Cloud.
    I tried deleting the configuration file with th expectation that DW would automatically create a new one but that did not work.
    I'd hate to have to unintsall and reinstall DW because I have dozens of sites that I would need to resetup
    Any help on this??

    bc_aftersave.htm is a file that lies within Dreamweaver's Configuration Commands. Usually is required when working with Business Catalyst.
    The error you see may be caused due to a faulty file.
    I'm attaching the file at fault - 'bc_aftersave.htm' in this thread. Download and restore it to the following folder:
    C:\Users\<username>\AppData\Roaming\Adobe\Dreamweaver CS6\<language>\Configuration\Commands
    Locate the file bc_aftersave.htm, replace that file with the one I'm attaching here to see if it solves the issue.
    -ST

  • Error message when Closing PS CS6

    I keep receiving a error message when closing PS CS6 which says "Adobe Media Core CS6 has stopped working"
    What can I do to resolve this issue?
    I'm running Windows Vista professional

    If you want help you may have to provide some more information … and a Forum- or web-search might also be worth trying.
    http://forums.adobe.com/message/4509053
    http://forums.adobe.com/thread/1025148
    http://forums.adobe.com/message/4495683

  • Blue screen of death on Toshiba P755-S5375 with ADOBE ENCORE CS6

    I recently purchased a new laptop and installed Adobe Master Collection CS6.  I purchased the laptop for video capture and editing, as well as for blu-ray authoring. 
    Unfortunately, although the computer and software works fine for video capture and editing, I am unable to author a blu-ray.  For authoring, I am using Adobe’s Encore CS6.  After checking and previewing my creation, I attempt to build to disc using Encore.  About 2 seconds after clicking the build disc in Encore, I get the “blue screen of death” (BSOD).  This happens every time I try to build to blu-ray (only blu-ray has this issue; I am able to build to a DVD).  I am using an external blu-ray drive on USB 3.0.  
    I am using Encore version 6.0.0.492
    Here are the blu-ray drive specs:
    Logitec USB 2.0/3.0 Bus powered portable bluray drive unit, LBD-PME6U3VBK
    PIONEER BD-RW BDR-TD05 USB Device
    Driver: 6.1.7601.17514
    C:\windows\system32\DRIVERS\cdrom.sys
    \windows\system32\Drivers\PXHlpa64.sys
    \windows\system32\DRIVERS\tdcmdpst.sys
    \windows\SysWOW64\drivers\Afc.sys
    Renesas USB 3.0 driver also installed
    The computer specs are as follows:
    Manufacturer: Toshiba
    Manufacturer Part Number: PSAY1U-05U027
    Product Line: Satellite
    Product Series: P755
    Product Model: P755-S5375
    Product Name: Satellite P755-S5375 Notebook
    Product Type: Notebook
    Processor Manufacturer: Intel
    Processor Type: Core i7
    Processor Model: i7-2670QM
    Processor Speed: 2.20 GHz
    Processor Core: Quad-core (4 Core)
    Cache: 6 MB
    Chipset Manufacturer: Intel
    Chipset Model: HM65 Express
    Standard Memory: 4 GB
    Memory Technology: DDR3 SDRAM
    Memory Standard: DDR3-1333/PC3-10600
    Number of Total Memory Slots: 2
    Hard Drive Capacity: 500 GB
    Screen Size: 15.6"
    Display Screen Type: Active Matrix TFT Color LCD
    Aspect Ratio: 16:9
    Screen Mode: WXGA
    Backlight Technology: LED
    Screen Resolution: 1366 x 768
    Graphics Controller Manufacturer: Intel
    Graphics Controller Model: HD 3000
    Graphics Memory Capacity: 1.65 GB
    Graphics Memory Accessibility: Shared
    Ethernet Technology: Fast Ethernet
    Wi-Fi: Yes
    Wi-Fi Standard: IEEE 802.11b/g/n
    Webcam: Yes
    Operating System: Genuine Windows 7 Home Premium with SP1
    Operating System Architecture: 64-bit
    Pointing Device Type: TouchPad
    Number of Cells: 6-cell
    Battery Chemistry: Lithium Ion (Li-Ion)
    Width: 15.0"
    Depth: 9.8"
    Weight (Approximate): 5.40 lb
    Package Contents:
    Satellite P755-S5375 Notebook
    Lithium Ion Battery
    AC Adapter
    Green Compliant: Yes
    Green Compliance Certificate/Authority: RoHS
    Installed programs:
    Name                                                            Version          
    Microsoft Application Error Reporting                           12.0.6015.5000   
    Microsoft Office Click-to-Run 2010                              14.0.4763.1000   
    Microsoft Office 2010                                           14.0.4763.1000   
    Windows Live Essentials                                         15.4.3502.0922   
    Apple Application Support                                       2.1.7            
    Windows Live Writer                                             15.4.3502.0922   
    Microsoft_VC90_MFCLOC_x86                                       1.00.0000        
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148  9.0.30729.4148   
    TOSHIBA Web Camera Application                                  2.0.3.3          
    Windows Live Messenger                                          15.4.3538.0513   
    Microsoft_VC90_CRT_x86                                          1.00.0000        
    Google Toolbar for Internet Explorer                            1.0.0            
    Microsoft Visual C++ 2010  x64 Redistributable - 10.0.40219     10.0.40219       
    Microsoft Visual C++ 2005 Redistributable (x64)                 8.0.61000        
    Microsoft SQL Server 2005 Compact Edition [ENU]                 3.1.0000         
    Microsoft Visual C++ 2010  x86 Redistributable - 10.0.40219     10.0.40219       
    Toshiba Online Backup                                           2.0.0.31         
    TOSHIBA ReelTime                                                1.7.21.64        
    Windows Live Remote Client Resources                            15.4.5722.2      
    Windows Live SOXE Definitions                                   15.4.3502.0922   
    Adobe AIR                                                       3.1.0.4880       
    Windows Live Mesh ActiveX Control for Remote Connections        15.4.5722.2      
    Windows Live Communications Platform                            15.4.3502.0922   
    Windows Live Movie Maker                                        15.4.3502.0922   
    Apple Software Update                                           2.1.3.127        
    Windows Live UX Platform Language Pack                          15.4.3508.1109   
    Windows Live Photo Gallery                                      15.4.3502.0922   
    bl                                                              1.0.0            
    Windows Live Mail                                               15.4.3502.0922   
    Java(TM) 6 Update 25                                            6.0.250          
    MSVCRT_amd64                                                    15.4.2862.0708   
    TOSHIBA Face Recognition                                        3.1.17.64        
    ph                                                              1.0.0            
    Adobe Widget Browser                                            2.0.348          
    Windows Live Writer                                             15.4.3502.0922   
    Mesh Runtime                                                    15.4.5722.2      
    TOSHIBA Supervisor Password                                     1.63.51.2C       
    Adobe Acrobat X Pro - English, Fran軋is, Deutsch                10.1.1           
    Adobe Reader X MUI                                              10.0.0           
    TOSHIBA Media Controller Plug-in                                1.0.7.5          
    Windows Live Photo Gallery                                      15.4.3502.0922   
    Windows Live Photo Common                                       15.4.3502.0922   
    Label@Once 1.0                                                  1.0              
    PDF Settings CS6                                                11.0             
    Toshiba Book Place                                              2.2.7530         
    Windows Live PIMT Platform                                      15.4.3508.1109   
    TOSHIBA Wireless LAN Indicator                                  1.0.5            
    D3DX10                                                          15.4.2368.0902   
    Utility Common Driver                                           1.0.52.3C        
    Junk Mail filter update                                         15.4.3502.0922   
    Windows Live Movie Maker                                        15.4.3502.0922   
    TOSHIBA HDD/SSD Alert                                           3.1.64.9         
    Windows Live Remote Service                                     15.4.5722.2      
    Toshiba App Place                                               1.0.6.3          
    Windows Live Mesh                                               15.4.3502.0922   
    Windows Live Language Selector                                  15.4.3538.0513   
    QuickTime                                                       7.72.80.56       
    Renesas Electronics USB 3.0 Host Controller Driver              2.0.34.0         
    TOSHIBA Value Added Package                                     1.6.1.64         
    Microsoft_VC80_CRT_x86                                          8.0.50727.4053   
    Google Update Helper                                            1.3.21.111       
    TOSHIBA HDD Protection                                          2.2.2.15         
    7-Zip 9.20 (x64 edition)                                        9.20.00.0        
    TOSHIBA PC Health Monitor                                       1.7.9.64         
    Windows Live Mail                                               15.4.3502.0922   
    Adobe Help Manager                                              4.0.244          
    MSVCRT                                                          15.4.2862.0708   
    Windows Live Remote Client                                      15.4.5722.2      
    Blackmagic ATEM Switchers                                       3.0.1.0          
    Microsoft_VC90_MFC_x86                                          1.00.0000        
    Windows Live Photo Common                                       15.4.3502.0922   
    Windows Live ID Sign-in Assistant                               7.250.4232.0     
    Microsoft Visual C++ 2005 Redistributable                       8.0.61001        
    Windows Live Messenger                                          15.4.3538.0513   
    Windows Live Mesh                                               15.4.3502.0922   
    Windows Live Writer                                             15.4.3502.0922   
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148  9.0.30729.4148   
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.17    9.0.30729        
    TOSHIBA Hardware Setup                                          1.63.1.37C       
    Microsoft Silverlight                                           4.0.50401.0      
    PlayReady PC Runtime x86                                        1.3.0            
    Intel(R) WiDi                                                   2.1.41.0         
    Windows Live MIME IFilter                                       15.4.3502.0922   
    TOSHIBA Flash Cards Support Utility                             1.63.0.12C       
    TOSHIBA eco Utility                                             1.3.5.64         
    Windows Live UX Platform                                        15.4.3502.0922   
    TOSHIBA Wireless Display Monitor                                1.0.1            
    Debugging Tools for Windows (x64)                               6.12.2.633       
    Windows Live Remote Service Resources                           15.4.5722.2      
    Windows Live Writer Resources                                   15.4.3502.0922   
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.17    9.0.30729        
    Intel(R) PROSet/Wireless WiFi Software                          14.01.1000       
    Windows Live Installer                                          15.4.3502.0922   
    TOSHIBA Disc Creator                                            2.1.0.11 for x64 
    PlayReady PC Runtime amd64                                      1.3.0            
    Windows Live SOXE                                               15.4.3502.0922   
    Java Auto Updater                                               2.0.4.1          
    TOSHIBA Bulletin Board                                          1.6.08.64        
    Crash details:
    Problem signature:
      Problem Event Name:            BlueScreen
      OS Version:                           6.1.7601.2.1.0.768.3
      Locale ID:                              1041
    Additional information about the problem:
      BCCode:                               d1
      BCP1:                                   0000000000000001
      BCP2:                                   0000000000000002
      BCP3:                                   0000000000000008
      BCP4:                                   0000000000000001
      OS Version:                           6_1_7601
      Service Pack:                        1_0
      Product:                                768_1
    Files that help describe the problem:
      C:\Windows\Minidump\090312-28516-01.dmp
      C:\Users\xxx\AppData\Local\Temp\WER-62696-0.sysdata.xml
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\windows\system32\en-US\erofflps.txt
    DMP file details
    Symbol search path is: SRV*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (8 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 7601.17835.amd64fre.win7sp1_gdr.120503-2030
    Machine Name:
    Kernel base = 0xfffff800`02e04000 PsLoadedModuleList = 0xfffff800`03048670
    Debug session time: Mon Sep  3 02:27:16.190 2012 (UTC + 9:00)
    System Uptime: 0 days 0:06:50.096
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    *                        Bugcheck Analysis                                    *
    Use !analyze -v to get detailed debugging information.
    BugCheck D1, {1, 2, 8, 1}
    *** WARNING: Unable to verify timestamp for win32k.sys
    *** ERROR: Module load completed but symbols could not be loaded for win32k.sys
    Probably caused by : ntkrnlmp.exe ( nt!KiPageFault+260 )
    Followup: MachineOwner
    0: kd> !analyze -v
    *                        Bugcheck Analysis                                    *
    DRIVER_IRQL_NOT_LESS_OR_EQUAL (d1)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high.  This is usually
    caused by drivers using improper addresses.
    If kernel debugger is available get stack backtrace.
    Arguments:
    Arg1: 0000000000000001, memory referenced
    Arg2: 0000000000000002, IRQL
    Arg3: 0000000000000008, value 0 = read operation, 1 = write operation
    Arg4: 0000000000000001, address which referenced memory
    Debugging Details:
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800030b2100
     0000000000000001
    CURRENT_IRQL:  2
    FAULTING_IP:
    +6130613031313361
    00000000`00000001 ??              ???
    PROCESS_NAME:  System
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  VISTA_DRIVER_FAULT
    BUGCHECK_STR:  0xD1
    TRAP_FRAME:  fffff80000b9c740 -- (.trap 0xfffff80000b9c740)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffff80000b9c801 rbx=0000000000000000 rcx=fffffa8004586618
    rdx=fffff80000b9c8d8 rsi=0000000000000000 rdi=0000000000000000
    rip=0000000000000001 rsp=fffff80000b9c8d0 rbp=0000892fc0ba4327
     r8=fffff80000b9c8d0  r9=0000000000000000 r10=0000000004216094
    r11=000000005e040600 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na pe nc
    00000000`00000001 ??              ???
    Resetting default scope
    LAST_CONTROL_TRANSFER:  from fffff80002e82769 to fffff80002e831c0
    FAILED_INSTRUCTION_ADDRESS:
    +6130613031313361
    00000000`00000001 ??              ???
    STACK_TEXT: 
    fffff800`00b9c5f8 fffff800`02e82769 : 00000000`0000000a 00000000`00000001 00000000`00000002 00000000`00000008 : nt!KeBugCheckEx
    fffff800`00b9c600 fffff800`02e813e0 : 00000000`00000002 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiBugCheckDispatch+0x69
    fffff800`00b9c740 00000000`00000001 : 00000000`00000000 00000000`5e040600 00000000`00000000 00000000`00000000 : nt!KiPageFault+0x260
    fffff800`00b9c8d0 00000000`00000000 : 00000000`5e040600 00000000`00000000 00000000`00000000 00000000`080e8118 : 0x1
    STACK_COMMAND:  kb
    FOLLOWUP_IP:
    nt!KiPageFault+260
    fffff800`02e813e0 440f20c0        mov     rax,cr8
    SYMBOL_STACK_INDEX:  2
    SYMBOL_NAME:  nt!KiPageFault+260
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  4fa390f3
    FAILURE_BUCKET_ID:  X64_0xD1_CODE_AV_BAD_IP_nt!KiPageFault+260
    BUCKET_ID:  X64_0xD1_CODE_AV_BAD_IP_nt!KiPageFault+260
    Followup: MachineOwner

    Satellite A215-S7422 
    We need to know the Stop code on the blue screen. If there is a file name mentioned, we want that too.
    You can prevent the rapid disappearance of the blue screen during a normal boot by choosing this at the F8 Startup menu.
       Disable automatic restart on system failure
    -Jerry

Maybe you are looking for