Adding a colored character

I would like a script for adding a colored character to the current cursor position.
The script for add the character to the position I have courtesy of indesign secrets but I don't know how to specify the character color. (I don't want to chage the color of the rest of the text in the paragraph.
if (app.selection[0].constructor.name == "InsertionPoint"){
    with (app.selection[0].insertionPoints[0]){ // insertion point
                contents = String.fromCharCode(0x05B0); //
What do I need to add for the color change.
Thanks,

Hi,
Thanks a lot for your response, I had just workout that the following code works:
app.selection[0].insertionPoints[0].fillColor = "C=20 M=70 Y=86 K=8";
app.selection[0].insertionPoints[0].contents = String.fromCharCode(0x05B0);
1) I am very interested why you added the lines, (I am a complete beginner at scripting and interested in learning better techniques)
         if (app.selection[0].constructor.name == "InsertionPoint"){
         with (app.selection[0].insertionPoints[0]){ // insertion point
2) I would like to develop the script to check the the second character of the paragraph to see if it is CharCode(0x05B0) if it is not then I want to add (not replace) the character there.  If there is already a 0x05B0 there then I don't want anything to be added there.
3) If the 0x05B0 is added the I would like to give it (only the one character) a XML tag to it so that it can be reformatted if the paragraph style late changes it's color.
Will be most happy if I can do this,

Similar Messages

  • Vignetting added and color adjusted immediately post import into Lightroom5.

    Vignetting added and color adjusted immediately post import into lightroom5.
    My photos from my most recent trip, when imported into Lightroom, have a heavy vignette very close to all 4 corners of the photo, and seem to have some small adjustments being done to them immediately when I import. The thumbnail looks great, and when i import --> then select it to open it as if I was going to view it full size in Lightroom, it looks great [no vignetting or tone/color adjustment] for about 1-2 seconds while a 'loading' footer is shown, following which the color is slightly altered and the vignetting is added (at this point then the thumbnail changes as well). This is a significant and noticable change to the photo. The pictures also do not have these issues if I view them through any other software. I have Can any one help me figure out what is causing this and remove it?
    I shoot
    with a Sony Alpha6000
    shoot in RAW (.ARW)
    use the standard sony kit lens that comes with the camera bundle, lens SELP1650 (3.5-5.6/16mm-50mm)
    edit on Windows 7 64bit with Lightroom5
    and don't believe I've adjusted any camera settings since last taking pictures 1 week ago with the exact same lens. I looked at photos from my last trip (only one week ago), and none of them are having these or an alterations/changes upon import.
    I took over 300 photos last weekend wthout any sign of these issues post import
    Every single photo I took this weekend seems to have this same issue.
    Any help is appreciated!

    Vignetting added and color adjusted immediately post import into lightroom5.
    My photos from my most recent trip, when imported into Lightroom, have a heavy vignette very close to all 4 corners of the photo, and seem to have some small adjustments being done to them immediately when I import. The thumbnail looks great, and when i import --> then select it to open it as if I was going to view it full size in Lightroom, it looks great [no vignetting or tone/color adjustment] for about 1-2 seconds while a 'loading' footer is shown, following which the color is slightly altered and the vignetting is added (at this point then the thumbnail changes as well). This is a significant and noticable change to the photo. The pictures also do not have these issues if I view them through any other software. I have Can any one help me figure out what is causing this and remove it?
    I shoot
    with a Sony Alpha6000
    shoot in RAW (.ARW)
    use the standard sony kit lens that comes with the camera bundle, lens SELP1650 (3.5-5.6/16mm-50mm)
    edit on Windows 7 64bit with Lightroom5
    and don't believe I've adjusted any camera settings since last taking pictures 1 week ago with the exact same lens. I looked at photos from my last trip (only one week ago), and none of them are having these or an alterations/changes upon import.
    I took over 300 photos last weekend wthout any sign of these issues post import
    Every single photo I took this weekend seems to have this same issue.
    Any help is appreciated!

  • Coloring a Font with a RGB etc. without adding the color to the document swatches.

    Is there a way of coloring a font with a RGB, Lab or CMYK color without adding the color to the document swatches.
    The only way I know is to add a color to the swatches or use one that already exists.
    like
       app.selection[0].characters[0].fillColor=document.colors.add({colorValue: [255, 53, 160], space: ColorSpace.RGB});}
    This has the undesired effect of cluttering up the swatches when using a lot of colors.
    any ideas?

    Good Morning Uwe!
    After 3am by me 2am by you
    I had tried the link and it did download but I have cs5 cs6 and cc but not cs5.5 and all the scripts worked on them may because of the file conversion.
    So it looks like the following summary is all correct
    All documents new contain
    Swatches (Black, Registration, Paper and None) the index order will be the order that the swatches appear in the swatches panel
    And colors in an alphabetical index order
    named color "A" first "Z" last and then the unnamed colors.
    A such all new documents colors[-1] will be an unnamed color which we can duplicated to produce other unnamed colors taking note that the duplication must be process and not spot colors.
    So far so good, (not for long )
    Unnamed colors are not read only so if we make a positive effort to remove them we can do that.
    while (app.activeDocument.colors[-1].name == "") app.activeDocument.colors[-1].remove()
    We now won't have any unnamed swatches to duplicate and will have to resort to John's tagged text file method in 3 above.
    If there were no unnamed swatches and we try to duplicate colors[-1] and it was a color like "Yellow" then it seem's to crash indesign.
    Anyway the below method should always work (for regular non tint etc. type colors).
    // optimized for easy of use but not efficiency !!!
    var doc = app.documents.add();
    var p = doc.pages[0];
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "0mm", "30mm", "30mm"], fillColor: addUnnamedColor([0, 0,255])}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "30mm", "30mm", "60mm"], fillColor: addUnnamedColor([0, 255,0], 1666336578)}); // will be a RGB because of value
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "60mm", "30mm", "90mm"], fillColor: addUnnamedColor([65, 50, 102], ColorSpace.RGB)}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "90mm", "30mm", "120mm"], fillColor: addUnnamedColor([84, 90,40],"r")}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "120mm", "30mm", "150mm"], fillColor: addUnnamedColor([232, 0, 128],1)}); // will be a RGB
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "0mm", "60mm", "30mm"], fillColor: addUnnamedColor([29.5, 67.5, -112])}); // will be a Lab because of -
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "30mm", "60mm", "60mm"], fillColor: addUnnamedColor([100, -128, 127], 1665941826)}); // will be a Lab because of value
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "60mm", "60mm", "90mm"], fillColor: addUnnamedColor([24.5, 16, -29], ColorSpace.LAB)}); // will be a Lab
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "90mm", "60mm", "120mm"], fillColor: addUnnamedColor([36.8, -9, 27],"l")}); // will be a Lab
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "120mm", "60mm", "150mm"], fillColor: addUnnamedColor([51, 78, 0], -1)}); // will be a Lab because of the 1
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "0mm", "90mm", "30mm"], fillColor: addUnnamedColor([82, 72, 0, 0])}); // will be a CMYK because there are 4 color values
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "30mm", "90mm", "60mm"], fillColor: addUnnamedColor([60, 0, 100, 0], 1129142603)}); // will be a CMYK because of value
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "60mm", "90mm", "90mm"], fillColor: addUnnamedColor([84, 90,40, 0], ColorSpace.CMYK)}); // will be a CMYK
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "90mm", "90mm", "120mm"], fillColor: addUnnamedColor([67, 53, 97.6, 21.7], "c")}); // will be a CMYK
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "120mm", "90mm", "150mm"], fillColor: addUnnamedColor([0, 100, 0, 0], 0)}); // will be a CMYK
    function addUnnamedColor (cValue, space, docToAddColor) {
        docToAddColor = app.documents.length && (docToAddColor || (app.properties.activeDocument && app.activeDocument) || app.documents[0]);
        if (!docToAddColor) return;
        var lastColor = docToAddColor.colors[-1];
        if (!cValue) cValue = [0,0,0,0];
        if (space == 1129142603 || cValue && cValue.length == 4) space = ColorSpace.CMYK;
        else if ((space && space < 0) ||  space && space == 1665941826 || (space && /L|-/i.test(space.toString())) || (cValue && /-/.test(cValue ))) space = ColorSpace.LAB;
        else if ((space && space > 0) || space && space == 1666336578 || (space && /R/i.test(space.toString())) || (cValue && cValue.length == 3)) space = ColorSpace.RGB;
        else space = ColorSpace.CMYK;
        app.doScript (
            var newUnnamedColor = (lastColor.name == "") ? lastColor.duplicate() : taggedColor();
            newUnnamedColor.properties = {space: space, colorValue: cValue};
            ScriptLanguage.javascript,
            undefined,
            UndoModes.FAST_ENTIRE_SCRIPT
         function taggedColor() { // need to use this if no unnamed exists
                 var tagString = "<ASCII-" + ($.os[0] == "M" ? "MAC>\r " : "WIN>\r ") + "<cColor:COLOR\:CMYK\:Process\:0.1\,0.95\,0.3\,0.0><cColor:>"; // would make more sense to apply the correct value in the tagged text file but I can't be bothered !
                 var tempFile = new File (Folder (Folder.temp) + "/ " + (new Date).getTime() + ".txt");
                 tempFile.open('w');
                 tempFile.write(tagString);
                 tempFile.close();
                 var tempFrame = docToAddColor.pages[-1].textFrames.add();
                 $.sleep(250);
                 tempFrame.place(tempFile);
                 tempFrame.remove();
                 tempFile.remove();
             return docToAddColor.colors[-1];
        return newUnnamedColor;
    Shall apply the function to delete and replace swatch on the other thread at a more sane time
    Regards
    Trevor

  • Media Encoder adding RBG color casts on BW 16mm Footage

    Hey Everyone,
    I am really stumped by this one. I am working with FCP6 and Apple Pro Res HQ scans of 16mm B&W footage. I am trying to encode a self-contained .mov file (direct from FCP) in Adobe Media Encoder CC (for Blu-ray) and then burn to Blu-ray with Encore CS6.
    I burned the first test Blu-ray last night and when I played it back on my Blu-ray player/TV, I was stunned by the fidelity and definition of the otherwise thick/complicated 16mm grain structure, even via what was only a 6GB .m4v render (compressed from 33.5GB .mov). Everything was perfect...EXCEPT...I got these horrible "color casts" of red, blue, green, magenta, across practically every shot in the footage. Particularly in the last shot of the drain pipe (see example clips 14 seconds long):
    Original: https://vimeo.com/97456916 (pass: "original")
    Blu-ray: https://vimeo.com/97453674 (pass: "colorcast")
    Obviously the footage does not look this in either FCP6 or .mov in QT7. I just double checked and the color casts ARE visible when playing back the ME converted .m4v in Encore. I have also taken the .mov from FCP and brought that into Encore and NO COLORCASTS. I have also taken the .mov, reimported it to FCP and but a 3-Way Color Corrector on it and put the saturation at zero, exported that, and then ME>Encore and it still adds the color....So I am 99% positive this is a Media Encoder issue. Here are the settings I used:
    Considering how long is has taken me to get satisfactory web compression results from 16mm footage in the past, I feel like I just hit a grand slam in the bottom of the 9th with the playback fidelity of the first test Blu-ray. The motion and definition are phenomenal, I mean we are talking Criterion quality--without X.264 or Blu Code--(even with all the modern "overcompensation" crap turned off on my TV). I AM SO SO CLOSE TO RENDERING/BURNING A PERFECT BLU-RAY IF I CAN JUST FIGURE THIS COLOR THING OUT!
    Got a deadline to get this into the hands of a couple of prominent filmmakers.
    Any help or ideas that anyone can provide will be most appreciated.
    Thank so much!
    Alec
    MAC PRO // OSX 10.7.5 // 2 x 2.66Gmz 6-Core Intel Xeon // 32 GB 1333 MHz DDR3

    ***SOLUTION***
    Well it seems silly that I had to do this at all, but here is the workflow that finally seemed to solve the issue without adding an extra level of encoding...
    Save self-contained .mov of my timeline in FCP6 > bring that back in FCP as a separate sequence and apply the "Desaturate" filter (Image Control > Desaturate) to the entire film > save as self-contained .mov again > convert in AME > master and burn to Blu-ray with Encore > Presto!!! NO COLORCASTS on B&W 16mm footage in Encore and no colorcasts from the file on the burned Blu-ray disc.
    I believe I stated it above, but in case I didn't, adjusting the chroma and/or "desaturating" via FCP's color corrector plugins did not work...even with the exact same workflow otherwise. I have no idea why, but if anyone ever runs into the same problem, this worked for me. Only took two weeks to do something that I guessed would take a day, maybe two. Geesh.
    Thanks again guys for all the suggestions. Really really appreciate it.
    -Alec

  • Adding code-coloring to file with nonstandard extension

    I have PHP files that end in .ctp, which are basically HTML templates with PHP mixed in (as part of the Cake PHP framework). I'd like them to be parsed for code coloring the same way that the PHP files are, but the text is all black. Is there a way that I can tell Dreamweaver to parse it for PHP code coloring? I have already added ".ctp" to the list of file types that open in Code View using DW's Preferences.
    This is CS4.
    Thanks!

    Nevermind - I figured it out from here, you just have to edit an XML file to include the new extension that should be treated as PHP:
    http://kb2.adobe.com/cps/164/tn_16410.html

  • Adding a pipe character '|' at the end of each line

    How can I add a '|' at the end of each line in a text file?
    Please provide an example.
    TIA

    Using Readers and Writers are often a better choice for text: they are designed for character-based I/O, handling different character set encodings and thus more easily localizable.
    BufferedReader and PrintWriter are buffered which in many cases will increase performance.
    These classes also provide line-oriented methods, readLine() and println(), which will handle end-of-line delimiters in a platform-independant way.
    BufferedReader in = null ;
    PrintWriter out = null ;
    try {
        in = new BufferedReader(new FileReader("infile.txt")) ;
        out = new PrintWriter(new FileWriter("outfile.txt")) ;
        String line ;
        while ((line = in.readLine()) != null) {
            out.print(line) ;
            out.println('|') ;
        out.flush() ;
    } catch (FileNotFoundException e) {
        System.err.println("problem opening file for read: "+e) ;
    } catch (IOException e) {
        System.err.println("problem reading file: "+e) ;
    } finally {
        try {
            if (out != null) out.close() ;
            if (in  != null) in.close() ;
        } catch (IOException e) {
            System.err.println("problem closing files: "+e) ;
    }

  • Adding more colors to a custom Pallete

    Im using Illustrator CS4, & recently I created a collection of colors & gradients into a swatch library & saved it.  My desired outcome, was to keep any interesting colors or gradients as I worked on different images, as a future resource so I didn't have to recreate any of them.  After reloading the swatch back in today, I noticed I can no longer add any further colors/gradients to it.
    So my question is:  Am I missing something very basic, or is it always the case that once saved you can't edit.
    Thanks in advance.

    That worked a treat.  Thanx.

  • Adding a color profile to a Video

    Hello guys,
    I would like to know how to add a color profile to a video, so when I convert it to mp4 or even flash, the profile is inherited.
    I have followed the procedure described by Apple and I tried to use Automator, but it is not working.
    My videos have a white background that turn to gray when they are converted to mp4, OGG or flash.
    How can I do?
    Thanks in advance,
    GA

    myresolve wrote:
    .. i don't have Quicktime Pro .. does Paintbrush qualify .. ?
    the 'trick' discribed on my site is done with QTpro only.. 30$ ..
    you need a 'video app' which has at last two layers.. which is QTpro, or the BigToy for the small boy, FinalCutExpress..
    and I never heard of a Mac-app 'Paintbrush'.. you need a painting app which allows transperencies... as Photoshop/Elements, Pixelmator, GraphicConverter..
    if you own iM08 you can apply a static-pic 'over' video very simple, as discribed here:
    http://karsten.schluter.googlepages.com/im08tricks

  • Adding More Colors

    I think Kuler is an awesome tool however I feel like I am limited in making good color palletes because we are only able to make 5 colors per pallete. I've tried searching on this forum to see if the Adobe Kuler team was going to make it possible for users to add more colors as needed. I wasn't able to find a definative answer hence this post. Thanks,

    That worked a treat.  Thanx.

  • Adding diffrent colored strings to a JTextArea

    I writing a program that uses a messaging window like AIM, GAIM, Trilian etc that uses two JTextarea's to write and read the text. Thus far I cannot figure out how to add strings of diffrent colors to the JTextarea used for writing. The tutorials only explain how to set the font and color of typed text, not text i want to take form the write pane and add it to the read pane. Any ideas?

    You might start with this:
    http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html
    in the Java Tutorial
    and possibly this:
    http://javaalmanac.com/egs/javax.swing.text/pkg.html

  • Adding Custom Colors in Forms

    Hi!
    1. I downlode some forms .fmb's, in which there are some good colors given to Canvas.
    2. How i copy these colors to my forms or add my own colors.
    3. I am using Forms 6i and i think that forms are made in forms 10g.
    Regards!

    Hi patil !
    No i dont want to give other color to canvas form the colors already present in Forms 6i.
    I want to add in tool pallets some additional color schemes, not only tio canvas.
    Thanks

  • Adding a color to row of a alv grid using function modules

    Can anybody clearly explains me how to add a color to a row to an alv grid using function module reuse_alv_grid_display.
    thanks in advance
    regards
    anil.

    hi,
    chk this ample pgm
    report zxyz_0004
           no standard page heading.
    type-pools slis.
    data: fieldcat type slis_t_fieldcat_alv.
    data: begin of imara occurs 0,
          matnr type mara-matnr,
          mtart type mara-mtart,
          maktx type makt-maktx,
          color_line(4) type c,
          tcolor type slis_t_specialcol_alv,  "cell
          end of imara.
    data: xcolor type slis_specialcol_alv.
    start-of-selection.
      perform get_data.
      perform write_report.
    Get_Data
    form get_data.
      imara-matnr = 'ABC'.
      imara-mtart = 'ZCFG'.
      imara-maktx = 'This is description for ABC'.
      append imara.
      imara-matnr = 'DEF'.
      imara-mtart = 'ZCFG'.
      imara-maktx = 'This is description for DEF'.
      append imara.
      imara-matnr = 'GHI'.
      imara-mtart = 'ZCFG'.
      imara-maktx = 'This is description for GHI'.
      append imara.
      loop at imara.
        if sy-tabix = 1.
          imara-color_line = 'C410'.   " color line
        endif.
        if sy-tabix = 2.          "color CELL
          clear xcolor.
          xcolor-fieldname = 'MTART'.
          xcolor-color-col = '3'.
          xcolor-color-int = '1'. "Intensified on/off
          xcolor-color-inv = '0'.
          append xcolor to imara-tcolor.
        endif.
        modify imara.
      endloop.
    endform.
    WRITE_REPORT
    form write_report.
      data: layout type  slis_layout_alv.
      layout-coltab_fieldname = 'TCOLOR'.
      layout-info_fieldname = 'COLOR_LINE'.
      perform build_field_catalog.
    CALL ABAP LIST VIEWER (ALV)
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                is_layout   = layout
                it_fieldcat = fieldcat
           tables
                t_outtab    = imara.
    endform.
    BUILD_FIELD_CATALOG
    form build_field_catalog.
      data: fc_tmp type slis_t_fieldcat_alv with header line.
      clear: fieldcat. refresh: fieldcat.
      clear: fc_tmp.
      fc_tmp-reptext_ddic    = 'Material Number'.
      fc_tmp-fieldname  = 'MATNR'.
      fc_tmp-tabname   = 'IMARA'.
      fc_tmp-outputlen  = '18'.
      append fc_tmp to fieldcat.
      clear: fc_tmp.
      fc_tmp-reptext_ddic    = 'Material Type'.
      fc_tmp-fieldname  = 'MTART'.
      fc_tmp-tabname   = 'IMARA'.
      fc_tmp-outputlen  = '4'.
      append fc_tmp to fieldcat.
      clear: fc_tmp.
      fc_tmp-reptext_ddic    = 'Material'.
      fc_tmp-fieldname  = 'MAKTX'.
      fc_tmp-tabname   = 'IMARA'.
      fc_tmp-outputlen  = '40'.
      fc_tmp-emphasize = 'C610'.   " color column
      append fc_tmp to fieldcat.
    endform.
    <b>anil , pls chk this link also.
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_color.htm
    very hlpful.</b>
    rgds
    anver
    <b>pls mark points if ur issue solved</b>
    Message was edited by: Anversha s
    Message was edited by: Anversha s

  • Adding same color tone to 150 pictures?

    I am making a short stop motion, and I need the colors to be somewhat the same in each picture. I have 150 pictures, but some a brighter / darker than the rest (and some are more yellow than others).
    Is there a way, to "align" their colors?

    grimkarklud wrote:
    emil emil -> Since I'm making a stop motion film (as stated in my first post), they are not "red, green black and white" but look THE SAME except for one little thing in each picture....
    I know very well that your pictures are not flat colors. My question wasn't intended to be a direct way of answering  but to make you think about how the feature you want will work. If you can answer how it will affect these different colors being separate files you will basically be able to realize if what you want is possible and also tell clearly how this feature will work.

  • Adding pantone colors to a object in Illustrator cc 2014?

    I need to send my Illustrator file but they are requesting that the objects be in the pantone colors. I have been searching and trying different things but i can not find where in the color swatches I can add a pantone. I tried to recolor artwork but i do not understand. Can someone let me know how i can add pantone to an object in Illustrator?

    Using recolor artwork you could limit the color libraries to a Pantone library. That's very tiny button in the middle lower part of the dialog box. You should check the manual for explanation of the dialog box.
    Mind that this kind of conversion depends on color management.

  • Adding photos in Character Bios documents

    Is there any way (and for Adobe employees: is there any plan) to add photo content in Character Bios documents? I need to be able to add photos along with the characters' text bios, but not only can I not add it in the document, but when I import a Word doc, it only accepts the text portion of the document.

    Rashi,
    As I've noted in other threads (and with a Story person at NAB) the general limitations of Story for inputting images is ... incredibly frustrating.
    Take the simple and obvious task within a scripting/story-boarding app of creating a story-board. You cannot simply load images into the story-board with your text ... no sirree Bob. You have to find an online photo-serving site that Story can "access" for linking purposes, upload your images to that, THEN link from your story-board to those online images. Note, the images therefore DO NOT LIVE with the actual story-board itself. As you can't upload images to the online storage of scripts or story-boards ... or bios either, the topic of the OP here.
    This makes using Story for story-boarding useless ... for practical purposes in smaller shops. Like mine.
    It makes it near useless for even scripting for shops like mine. And I WANT a program like what Story could be ... I could use it daily. Video has barged into the professional still-shooter studio scene over the last year in massive way, and your program isn't serving a needing clientele. Like ... moi.
    In discussions with a "Story" person at NAB, and the "Sr. Manager" that joined our conversation, it was clear that the staff hasn't thought that much about the marketing of this product for those pro's like me ... and there are thousands of small studios now chasing into small-time video action across the US. I might note that the Speedgrade staff has noted the existence of those like unto me ... and listens. In fact, invites comments.
    A useful combination of Story, Prelude, PrPro, Sg & Ae/fx would be a massive help for me.
    Sincerly,
    R. Neil Haugen
    [email protected]
    [email protected]

Maybe you are looking for

  • Just recently setup a new machine and can't get Story to load

    I built a new PC, installed Creative Cloud CS6 and all the software loads and runs except for Adobe Story.  When I launch it from the web I get "Failed to get user preferences."  All I can do at this point is Sign Out.  I can never sign in.  My Adobe

  • PackageMaker localization problem

    Hi, I am creating .pkg for my application using PackageMaker. I am providing support for 7 langauage English, French, German, Italian, Korean, Russian,Spanish. In Edit Interface, i am using abbrevation : en, fr, de, it, ko, ru and es fro these langau

  • New apple mobile device support

    need newer apple device support - unistall itines and reinstall - will I loose all my songs?

  • Upload of EBS

    Hi all, I am trying to upload an EBS file and the system issues error message "House bank: no entry with bank key& and account&'. All the bank details data are maintained correctly in the house banks, there is entry with the specific bank key and acc

  • Preview not opening anything.

    I installed Autocad 2011 and aperture. But after that all the pdf and pics changed their "logo" to sketchbookexpress' one..... I also reinstalled the preview from Mac Installation DVD, but it didn't work... Plz help, I am using Adobe reader now... wh