French è in modified files name is a bad choice (french version)

French version.
As Photoshop Album, LR add a suffix with an è (the long french world Modifié) to file name when you mofify an image with external editor Photoshop.
It is a bad choice to add an accentuated character (è) to a file name. When you publish picture on the Web. Many Web softwares or Internet Web sites providers, dont make any différence between e and è, so links can be broken. For instance, you can get è in HTML link (if you use an french HTML editor) but e in file name on provider disk.
It would be much better to apply a shorter suffix, with no localized specific character : bis, alt, supp, corr...

't Was the GREP styles ... It wasn't even as if they were that complex, but they did add a layer of complexity by adding No-Breaks (and not even to much text either).[*]
Rather than temporarily removing the NoBreak in the applied character style, I just deleted all GREP styles from my paragraph styles. But it doesn't matter which temporary solution I choose, because any global change in the styling will have the text re-flown. However, I can live with that if it means I can get the work done in one day instead of ten.
[*] After reading Uwe's links (in German): it's not because of my particular application of No Break. It seems Extreme Slow-Down occurs as soon as you apply a GREP style to an element that occurs a lot; the contents of the GREP seems not to matter.
Martin Fischer wrote:
Nachdem ich die GREP-Stile für die Fremdalphabete und Sonderzeichen gelöscht habe, stelle ich fest, dass der genannte Verzögerungsfaktor von 5-10 deutlich untertrieben war. Jetzt erst zeigt sich wieder, wie InDesign flutschen kann. Das Arbeiten macht wieder Spaß.
[After I killed off the GREP styles for foreign language alphabets and special characters, I found that the mentioned slowdown factor of 5-10x was even understated. Only now InDesign again shows it can fly. Work is fun again.]

Similar Messages

  • Relinking to modified file names is working in CS3 and not in CS2

    We are trying to remove a few characters identified as illegal(cannot be used in the file names in Windows) from the file names and then modify the InDesign layout files to relink to the modified file names. We are using the InDesign CS3 server to open up the application and work on the layout files using Java and CORBA mode(used CS3 SDK). First we remove the illegal characters from the file names. Next we will go through all the links in a layout file and will identify the links with illegal characters and relink it to the modified files. The relinking will happen to only those files which has a state NORMAL before the file names are modified. This approach works fine for the CS3 files but for CS2 after the file names got modified the link rolls back to the file path on the original m/c where the link was created and the relinking is not working.
    Have anyone did something similar to that, if so can you provide with some details on how to address this issue.
    Do let me know if you need any more specific information for providing your inputs to address this issue. Any inputs will be highly appreciated.
    Thanks

    Thanks. I got it resolved by saving the document by passing in a OptArg.makeFile() instead of OptArg.noFile(). I modified this based on what I read from Adobe Livedocs which said that any CS2 file opened in CS3 will be converted to CS3 and will be considered as a new document.

  • How can I burn a disk of photos with a modified file name?

    After importing photos from scan device, I use Photos > Batch > Change to rename files.  When burning a disk the changed file names do not transfer with the image but use the original file name.  How can I burn a disk of photos with the modified file name?
    This is what I have done so far with no success.
    Drag selected photos from Event to Burn Folder where the file names were changed. Burn folder lists file with original file name.
    Drag albums to Burn Folder with the same result.
    In Filer I am able to change the iPhoto Library > Master > Date > Filename and then drag to burn disk folder and see the changed name but this is a single file exercise without a view of the file's image, but to use the new file name in iPhoto events I have to repeat the naming convention.

    File > Export.
    In the resulting dialogue note the "Name" section. Choose to use the Title as Filename.
    Regards
    TD

  • Problem loading Image data with French accent in file name

    We have a very complex commercial application that has been working perfectly in English for over a year. We have now localized it to French and Spanish, and discovered a serious show-stopping problem. We need help fast, with the scheduled release being less than 2 weeks away...!
    We iterate over a folder to find all the images in it, then display those in a user window.  The code for loading the images is:
                for each (var name:String in filenames){
                    var image:SmoothImageTransformable = new SmoothImageTransformable();
                    var imagePath:String = dir + "/" + name;
                    image.source = imagePath;
                    trace("Adding Item to picture carousel with url " + image.source);
                    image.data = {directory:dir, filename:name};
                    image.isDragEnabled = true;
                    image.setStyle("horizontalCenter", 0);
                    image.setStyle("verticalCenter", 0);
                    _images.push(image);
    Our SmoothImageTransformable class is an internal class that inherits from Image.  This all works fine for image names like 'myFavoritePhoto', 'test', 'photo346', etc.  However, it fails to load the data if the file name is something like 'caméra'  Any name with a UTF-8 character causes the data load to fail.
    To be sure we weren't doing a load somewhere else in the code that I had overlooked, I added a "image.autoLoad = false' line in there.  That did exactly as expected -- all image squares then show a grey blank, with no image shown.  Removing that line (reverting to the original code, as shown above) causes all the images to work perfectly, except for those with French accent characters like the é.
    HELP!  Is this a known bug?  Is there some additional setting I need to make it understand the extended character set?  I can't find any mention about this at all in the documentation.

    @markerline:
    We have a fix!  Almost...   I don't understand one aspect of what I am seeing though.
    We have one test file named "camèra.jpg" that is an example of what I am unable to load into an Image.  I decided to examine the character codes at each letter, and this is what Flex has as the string:
    name = cam?ra.jpg
       [0] = c; 0x99
       [1] = a; 0x97
       [2] = m; 0x109
       [3] = ?; 0x232
       [4] = r; 0x114
       [5] = a; 0x97
       [6] = .; 0x46
       [7] = j; 0x106
       [8] = p; 0x112
       [9] = g; 0x103
    Note that the è prints as gibberish in the trace statement, and shows a numeric encoding of 0x232.  According to
         http://docstore.mik.ua/orelly/web2/action/appb_01.htm
    The unicode equivalent of Latin1 for è is 0xE8, which is equivalent to 0x232. That implies that the string is already Latin1, which I would think would mean that Windoze would recognize the file name and open it properly -- but it does not.
    I then tried taking the "camèra.jpg" string, pasting it into NotePad++ in a UTF8 document, then telling NotePad++ to display as ASCII.  The result is "camèra".  I then tried just forcing the file name within Flex to this new mangled string.  The result then is:
    MAGIC name = camèra
       [0] = c; 0x99
       [1] = a; 0x97
       [2] = m; 0x109
       [3] = ?; 0x195
       [4] = ?; 0x168
       [5] = r; 0x114
       [6] = a; 0x97
       [7] = .; 0x46
       [8] = j; 0x106
       [9] = p; 0x112
      [10] = g; 0x103
    Note this time the trace statement looks proper.  More important, the IMAGE DOES LOAD!  (Our display of the name to the user now looks like crap, but that just means I need to modify our class to have a separate 'name' property, rather than extracting it from the 'image.source')
    So... my remaining question -- what encoding did I just do through that NotePad++ incantation?  That site I quoted above said that it was already Latin1, which is what I thought I was trying to get to.  I clearly need to write a method to map from incoming (UTF8 I thought, but maybe Latin1?) to Windows file system (Latin1 I thought, but maybe ASCII).
    In other words, I am not sure what charcter set to come from or go to...  It turns out the code was already in the character set I had been trying to go to (which is why it wasn't working) and the set I seem to need to go to is not the one I thought...

  • French Characters in File Names

    Hello,
    Despite my instance not use French and/or other special
    characters in files names, we have inherited a project (approx 2500
    topics) with French characters in the file name. When we generated
    the project and post it on an Apache server, the topics do not
    display as the server replaces the characters with symbols.
    RX5, during the generation process, replaced the French
    characters with underscores, RX 7.0.1 keeps the characters within
    the file name. In RX 7.0.1 is it possible to replace the characters
    with underscores during the generation process?
    Regards,

    If this is the other thread, then you did get a response, several in fact. It may not have been the answer you wanted but that's another matter.
    http://forums.adobe.com/message/129875#129875
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Exporting Photos to Web Service Retaining Modified File Name

    I recently started using iPhoto 08 to edit and organize my photos. In 2008 we took nearly 10,000 pictures. I have used and would like to continue using Winkflash as my photo printing service. What I like best about Winkflash is that they print the name of the photo on the back of the pictures. Before I upload the pictures, I edit them and modify the file name to the date, who's in the picture, and where the event is. When my photos arrive, I don't have to label the back as all the information is already there.
    In November I started using iPhoto 08. After editing and renaming (using the Batch Change > Title option) and entering information about each picture in the title frame on over 2,000 photos, I started uploading them to Winkflash. Much to my dismay, the file name was not retained. ARGHHH! (To rename the photos, I use the international date format so the pictures are chronological; i.e. 20081231 New Year Eve - 01 Ron)
    I used Winkflash's image uploader and dragged and dropped the images from iPhoto. Why is it not retaining the file name but reverting back to the camera's IMG_XXX?
    Message was edited by: blondiedo

    Because adding a Title is not the same a renaming a file.
    Select the pics in the iPhoto Window and go File -> Export. In the resulting dialogue you have the option (among others) to set the Kind: to JPEG and then to use the Title as Filename. Complete the export to the desktop where iPhoto will make a copy of the files with your desired filename. Upload those.
    Failing that, ask your Print Service to support standard IPTC metadata.
    Regards
    TD

  • How to modify file name with the press of a radio button

    Hello,
    I have a simple task that I am having some trouble completing. This is what my program is doing:
    My VI takes 3 angles between -180 and 180 and computes the XYZ coordinate using a mathscript node. Then every time I press Trigger, the current 3 angles and their corresponding XYZ coordinate are written to a spreadsheet file.
    I need to tweak the VI some more to accomplish the following:
    The first time I select the radio button Point (or Line), I would like the spreadsheet file name to be "Point001" (or "Line001"). Then I want to press the Trigger 10 times, write to that file just created, "Point001" (or "Line001"), and after the 10th Trigger, I would like the radio button Point (or Line) to become automatically unselected.
    The next time I select the radio button Point (or Line), I would like the spreadsheet file name to now be "Point002" (or "Line002"). Then I want to press the Trigger again for 10 times, write to that file just created, "Point002" (or "Line002"), and after the 10th Trigger, I would like the radio button Point (or Line) to become automatically unselected, again.
    And so on...
    Basically, I am trying to increment the filename Pointxxx each time I select the radio button. I want to write to that file 10 times, at which point the radio button Point automatically becomes unselected.
    I hope it is clear to what I am trying to do. Any help would be appreciated.
    r15
    Attachments:
    Untitled 1.vi ‏67 KB

    I attached my working VI.
    Now, the problem is that Trigger is saving to a different file each time as opposed to having the 10 Triggers save to one file.
    This is what is happening now:
    When I have the radio button Point (or Line) selected:
    Trigger (1st time) saves to "point1" (or "line1")
    Trigger (2nd time) saves to "point2" (or "line2")
    Trigger (3rd time) saves to "point3" (or "line3")
    Trigger (10th time) saves to "point10" (or "line10")
    Then, Point (or Line) is deselected.
    What I need is the following:
    When the radio button Point (or Line) is selected
    Trigger (1st time) saves to "point1" (or "line1")
     Trigger (2nd time) ALSO saves to "point1" (or "line1")
    Trigger (3rd time) ALSO saves to "point1" (or "line1")
    Trigger (10th time) saves to "point1" (or "line1")
    Then, the radio button Point (or Line) is deselected.
    Next time I select Point, I want the Triggers to write to "point2".
    Can you fix this for me?
    Thank you
    r15 
    Attachments:
    Test.vi ‏71 KB

  • Modify file name from archivobject_display

    Hi everyone,
    I have tried to open a file through  remote archive (Documentum 5.3) with FM "archivobject_display".
    At the front end the system show a file download dialog box.
    This dialog box asks "SAVE" or "OPEN" with a default file name.
    Can i change this file name?
    Thanks in advance.
    Francesco.

    Yes you can change the filename. I do it all the time
    Cheers!
    Samanjay

  • Save as Image, but modify file name From Page_[0-9]+.jpg to -%04d.jpg

    I have a PDF that was compiled from multiple tiffs of a scanned document. The Tiffs are no logner around, and we want to regenerate them from Acrobat. Easy enough. However, we cannot adjust the padding on the file name.
    For example we save a 10 page document as document1.jpg will result in jpg's saved as the following: document1_Page_01.jpg, document1_Page_02.jpg, etc.
    If the document was 100 pages it would save as: document1_Page_001.jpg, document1_Page_002.jpg, etc.
    I am comfortable writing a bash,python, or some other script to rename all these files to %04d (0001,0002.jpg), but ideally is there anyway to accomplish this from acrobat.

    You could try the basic DOS rename utility. However, it may only work with the short name version of the files, not the long names. Go to a DOS window and type "rename /?" without the quotes to get information on the process. You can typically use standard placeholders in the file names. Some DOS commands will deal with long file names if you enclose them in quotes, but I doubt it here. There may be some windows utilites available that can also do this.
    The use for multiple documents is documented at http://www.lagmonster.org/docs/DOS7/z-ren1.html and that might help give you ideas. I would suggest you copy some of the files to a test folder to try things out. In fact, I would suggest you do all the processing on a copy or your original folder of files.

  • How to Change the defalut file name of PDF out of report (Version 6i)

    Dear All
    I have a report which opens from forms(Version 6i); the output of the report is in PDF. The generated file name is the same name as the report. Is there any way to give parameter name of the report as the name of the PDF out put of the report?
    For example I have a parameter called PATIENT_ID and my value is 25613 now I need the PDF out put name also 25613.
    Thanks and regards
    Sijo

    Use DESNAME to specify the output filename:
    set_report_object_property(repid, REPORT_DESNAME, :patient_id);

  • I only must have back the sort feature via file names, lost in PhSE11 (my current version). !! Sham

    I only must have back the sort feature via file names, lost in PhSE 11 (my current version). !! Shame o the one who have had this  stupid idea, far away from any situation in practice! Why I have now to  pay so much money for an upgrade to PE12??

    Judy444 wrote:
    .. Is there a How To beginners tutorial for this program?
    here: http://www.apple.com/findouthow/movies/
    and the built-in Help of iMovie (as any other Apple app) explains a lot..

  • Please Help!! Can't modify files that I made in 08 Trial Version!!

    Hi again,
    I had the trial version of Xcelsius 2008 & created some dashboards with the trial. I then purchased the full version of 2008 and installed it on the same computer. I opened my documents that I had created previously with the trail, and I'm not able to edit the dashboard like I normally should be able to. When I double click on my componets, I don't get the normal properties tabs with all of the editing options...
    Please Help!

    Hi Renee
    Would you mind provide more info on the property tabs? What properties are missing and is the property sheet looks different than the regular ones?
    Charles

  • Move Excel file to Archive and add timestamp to file name

    I have SQL Server 2012 and using Excel Source and OLE DB Connection to import Excel data to DB.
    Currently file is located on C:\\Excel\filename.xlsx. I'm using File System Task to move file to C:\\Excel\Archive\filename.xlsx after Import Task.
    Now I would like to add timestamp to file name after moving file to archive. I would like to modify file name as C:\Excel\Archive\filename_timestamp.xlsx
    How to add timestamp to filename?
    Kenny_I

    Hi, 
    here you go with example
    http://consultingblogs.emc.com/jamiethomson/archive/2005/09/14/SSIS-Nugget_3A00_-Move-and-rename-a-file-in-one-operation.aspx
    thank you
    Aamir
    http://sqlage.blogspot.com/

  • Transferring iTunes to new computer... '?' in file names aborts copy?

    Hello,
    I've been trying to copy my iTunes library from my old computer (a very slow eMac G4/700 running OS X 10.3.9) to a new one. I've been following the directions as shown here:
    http://docs.info.apple.com/article.html?artnum=300173#next
    and the problem I seem to be having is that some of the songs have illegal characters such as '?' in the file names. Doesn't seem to bother iTunes when it comes to playing them, but OS X balks at copying said file, and aborts the whole copy process... and I have to go in and edit the file name, then start the copy all over again. Needless to say, it's more than slightly annoying by now.
    Are the modified file names going to cause a problem when I try to play the songs on the new computer? Is there an app that does batch file-name conversions just for this? I know there are a lot of apps that do file-name conversions... once the user gets all fluent in all the switches and options and whatnot, which seems like a wee bit of overkill if I can find something that just fixes them quick-like... I can't be the first person to have had this problem?
    Thanks,
    Monte

    I don't know of a quick fix. I have had the same problem and from the iTunes main window have edited the id3 tags to remove the offending characters. If you use the 'keep' option enabled then iTunes will rename the file on the HD to match the info in the 'name' column of iTunes.
    You can check Dougs Scripts at http://www.dougscripts.com/itunes/index.php and see if there is a script that can do the work for you.
    Now I make sure there are no offending characters in the song names.
    MJ

  • ALTER DATABASE/MODIFY FILE issue

    Greetings to all --
    We are running SQL Server 2008 R2 (SP3) - 10.50.6000.34 (X64), and running into what seems like a bug. One of the largest tables was moved to a separate file group a while ago, and now a large percentage of the rows from that table (about 50GB) , need to
    be removed.
    We wanted to reduce the amount of transaction log growth and the duration required for the delete. Recovery model was set to BULK_LOGGED before executing the following steps:
    1. create a new filegroup
    2. create a new file in that filegroup
    3. set the new filegroup to be the DEFAULT filegroup
    4. SELECT INTO new_table from original_table WHERE filter_condition
    5. drop original_table
    6. rename new_table to original_table
    7. remove original file from original filegroup
    8. remove original filegroup
    9. MODIFY the logical name of the new file to be the same as the logical name of the original logical name.
    ALTER DATABASE myDB
    MODIFY FILE ( NAME = new_logicalname, NEWNAME = original_logicalname)
    This fails:
    Msg 1828, Level 16, State 3, Line 1
    The logical file name "original_logicalname" is already in use. Choose a different name.
    I noticed that the original filegroup still persisted until I did a transaction log backup, but after that , there is no entry for that file in sys.databasefiles for that database.
    Checking sp_helpdb for that database shows only the new logical file name.
    Any thoughts would be much appreciated.

    This scenario is easily reproduced, and seems not to be "by design".
    I put my bets on Sean and say "by design".
    I can't put my finger on it, but it has to with doing restores, and particularly log restores. It does not seem to happen with a database in simple recovery. But for a database in full (or bulk_logged) recovery, there lingers a row in sysfiles1 and sysprufiles
    for the dropped file.
    sys.database_files is a view over sys.sysprufiles and it does not display the deleted file, but it is there with a certain status.
    In any case, I can't see that this is the end of the world. It is not likely that you refer to the name of that fill all around the house. But the next time you do this manouvre, you may want to rename the existing file before you drop it and create
    the new one.
    Erland Sommarskog, SQL Server MVP, [email protected]

Maybe you are looking for

  • Implementing session timeout in JSP - - Urgent help !

    Hi I have a requirement where I need to write a session timeout functionality in a JSP such that the page is redirected to a different page if there is no activity for 5 min. I tried the following : 1.On the onload of my JSP, i created a new session

  • Trouble with booklet printing -- InDesign CC 2014

    I'm having trouble printing booklet with new CC 2014. I print to postscript, but then PDF is not correct.  I see it's using Acrobat 8 driver;  how do I change that to Acrobat XI?

  • Error "SSL: rc=-1 lib_not_found" when Indexing for some web repositories

    Hi , i am getting for 2 repositories the error: Returnvalue 16001     Message: SSL: rc=-1 lib_not_found For other web respositories the search works fine. I configured the proxy system. I have no SSL between Portal and TREX. Any help is welcome. Rega

  • Adding native menus to an AIR application using ActionScript

    Hi, I'm working on Mac and PC with Air application. I'd creates a class extends Menu witch goal is to create a nativeMenu. My class is package     import flash.desktop.DockIcon;     import flash.desktop.NativeApplication;     import flash.desktop.Sys

  • 2G iPhone repairs in Canada - Options?

    Hello, I ran into a huge problem with my iPhone 2G this weekend - I dropped my bag with the phone in it and now the bottom part of the screen is non-responsive. I have looked at forums, etc. and have restored my phone and I am pretty sure it is a har