Bridge talk for InDesign CS4/CS5 js

Hi,
Have this code that opens file in Ph and resaves it in different format. In this case I need to adjust it to open pdf file in photoshop and set crop to media box. It works with pdf files as is, but if there is white space around artwork, it gets removed. How can I set it to open with media box:
function ResaveInPS(myImagePath, myNewPath) {
     try {
           var myPsDoc = app.open(new File(myImagePath));
             if (myPsDoc.mode == DocumentMode.CMYK) {
                    myPsDoc.changeMode(ChangeMode.RGB);
           var docName = myPsDoc.name;
          var myPNGSaveOptions = new PNGSaveOptions();
          myPNGSaveOptions.interlaced = false; // or true
          myPsDoc.saveAs(new File(myNewPath), myPNGSaveOptions, true);
          myPsDoc.close(SaveOptions.DONOTSAVECHANGES);     
     catch (err) {
          try {
               app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
          catch (err) {}
Thank you for your help.
Yulia

Hi Yulia,
I adjusted the script:
#target indesign
var myDoc = app.activeDocument;
var myDocPath = myDoc.filePath;
var myLivePath = myDoc.filePath;
var myFolder = new Folder(myLivePath);
OpenFiles();
UpdateAllOutdatedLinks();
//~ myLink.editOriginal();
//alert("Done");
function OpenFiles(){
    var myFile= app.selection[0];
    try{
        if(myFile.isValid == true){}
    catch (e){
    alert ("Please choose PDF and rerun the script");
        exit();
    if(myFile.constructor.name == "PDF"){
        myLink = myFile.itemLink;
    else{if(myFile.constructor.name == "Rectangle"){
        myLink = myFile.graphics[0].itemLink;
    else{
        alert ("The artwork has to be PDF file. Please choose correct artwork and rerun the script");
        exit();
          if (myLink.name.toLowerCase().indexOf(".pdf") > -1){
               var myImage = myLink.parent;
               var myImagePath = myLink.filePath;
               var myImageFile = new File(myImagePath);
               var myNewPath =  myFolder.absoluteURI + "/" + GetFileNameOnly(myImageFile.name) + ".tif";
               CreateBridgeTalkMessage(myImagePath, myNewPath);
               Relink(myLink, myNewPath);
function CreateBridgeTalkMessage(myImagePath, myNewPath) {
     var bt = new BridgeTalk();
     bt.target = "photoshop";
     var myScript = 'app.displayDialogs = DialogModes.NO;\r';
     myScript += 'try {\r';
     myScript += 'if ("' + myImagePath + '".match(/\.pdf$/) != null) {\r';
     myScript += '    var pdfOpenOptions = new PDFOpenOptions();\r';
     myScript += '    pdfOpenOptions.cropPage = CropToType.MEDIABOX;\r';
     myScript += '    pdfOpenOptions.resolution = 300;\r';
     myScript += '    pdfOpenOptions.usePageNumber = true;\r';
     myScript += '    var myPsDoc = app.open(new File("' + myImagePath  + '"), pdfOpenOptions);\r';     
     myScript += '}\r';
     myScript += 'else {\r';
     myScript += '    var myPsDoc = app.open(new File(myImagePath));\r';
     myScript += '}\r';
     myScript += 'if (myPsDoc.mode != DocumentMode.CMYK) {\r';
     myScript += '    myPsDoc.changeMode(ChangeMode.CMYK);\r';
     myScript += '}\r';
     myScript += 'myPsDoc.flatten();\r';
     myScript += 'var docName = myPsDoc.name;\r';
     myScript += 'var myTiffSaveOptions  = new TiffSaveOptions();\r';
     myScript += 'myTiffSaveOptions.alphaChannels = false;\r';
     myScript += 'myTiffSaveOptions.byteOrder = ByteOrder.MACOS;\r';
     myScript += 'myTiffSaveOptions.embedColorProfile = true;\r';
     myScript += 'myTiffSaveOptions.imageCompression = TIFFEncoding.TIFFLZW;\r';
     myScript += 'myTiffSaveOptions.layers = true;\r';
     myScript += 'myTiffSaveOptions.spotColors = false;\r';
     myScript += 'myTiffSaveOptions.transparency = true;\r';
     myScript += 'myPsDoc.saveAs(new File("' + myNewPath + '"), myTiffSaveOptions);\r';
     myScript += 'myPsDoc.close(SaveOptions.DONOTSAVECHANGES);\r';
     myScript += '}\r';
     myScript += 'catch (err) {\r';
     myScript += '    try {\r';
     myScript += '        app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);\r';
     myScript += '    }\r';
     myScript += '    catch (err) {}\r';
     myScript += '}\r';
     myScript += 'app.displayDialogs = DialogModes.ALL;\r';
//~      $.writeln(myScript);
     bt.onResult = function(resObj) {}
     bt.send(100);
function ResaveInPS(myImagePath, myNewPath) {
    try {
               if (myImagePath.match(/\.pdf$/) != null) {
                   var pdfOpenOptions = new PDFOpenOptions;
                   pdfOpenOptions.cropPage = CropToType.MEDIABOX;
                   pdfOpenOptions.resolution = 300;
                   pdfOpenOptions.usePageNumber = true;
          var myPsDoc = app.open(new File(myImagePath), pdfOpenOptions);
            if (myPsDoc.mode != DocumentMode.CMYK) {
                   myPsDoc.changeMode(ChangeMode.CMYK);
          myPsDoc.flatten(); // or layers false…
          var docName = myPsDoc.name;
         var myTiffSaveOptions  = new TiffSaveOptions();
         myTiffSaveOptions.alphaChannels = false;
          myTiffSaveOptions.byteOrder = ByteOrder.MACOS;
          myTiffSaveOptions.embedColorProfile = true;
          myTiffSaveOptions.imageCompression = TIFFEncoding.TIFFLZW;
          myTiffSaveOptions.layers = true; // Or false here…
          myTiffSaveOptions.spotColors = false;
          myTiffSaveOptions.transparency = true;
         myPsDoc.saveAs(new File(myNewPath), myTiffSaveOptions);
         myPsDoc.close(SaveOptions.DONOTSAVECHANGES);
    catch (err) {
         try {
              app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
         catch (err) {}
function Relink(myLink, myNewPath){
     var newFile = new File (myNewPath);
     if (newFile.exists) {
          var originalLinkFile = new File(myLink.filePath);
          myLink.relink(newFile);
          try { // for versions prior to 6.0.4
               var myLink = myLink.update();
          catch(err) {}
function UpdateAllOutdatedLinks() {
     for (var myCounter = myDoc.links.length-1; myCounter >= 0; myCounter--) {
          var myLink = myDoc.links[myCounter];
          if (myLink.status == LinkStatus.linkOutOfDate) {
               myLink.update();
function GetFileNameOnly(myFileName) {
     var myString = "";
     var myResult = myFileName.lastIndexOf(".");
     if (myResult == -1) {
          myString = myFileName;
     else {
          myString = myFileName.substr(0, myResult);
     return myString;
Kasyan

Similar Messages

  • Bridge talk for InDesign CS4/CS5

    Hi, I am looking for any documentation I can find for Bridge talk scripting. So far nothing comes with the search. Does anyone know any sources.
    Thank you very much.
    Yulia

    I wouldn't agree with Mark that the JavaScript Tools Guide contains all the necessary information. The description is scarce and obscure, the sample code contains typos which makes things more difficult.
    I suggest you to download Bridge SDK which contains a few
    excellent samples of using BridgeTalk. They all work and are well commented. So you can run these samples and read the JavaScript Tools Guide to understand how they work.
    I also recommend you to read this post.
    In my opinion BridgeTalk is a very powerful and useful feature but not many scripters venture to use it.
    Regards,
    Kasyan

  • Bridge Talk in InDesign CS4 js

    Hi,
    I need to adjust the script to open in Ph and re-save as png 2 page pdf liked file in indd. Right now the script does everything, but it re-saves and re-links first page of the pdf onto both indd's pages only. And I need it to place first png (from first page of the pdf) into 1st indd's page, and second png file (from second page of the pdf) into 2nd indd's page.
    I hope it's not too confusing.
    #target indesign
    var myDoc = app.activeDocument;
    var myFolder = Folder.selectDialog ("Select the output folder for PNG images");
    SetDisplayDialogs("NO");
    OpenFiles();
    SetDisplayDialogs("ALL");
    UpdateAllOutdatedLinks();
    alert("Done");
    function OpenFiles(){
         for (var i = myDoc.links.length-1; i >= 0; i--) { // process links collection backwards since it's changing!
              var myLink = myDoc.links[i];
              if (myLink.linkType != "Portable Network Graphics (PNG)"){
                   var myImage = myLink.parent;
                   var myImagePath = myLink.filePath;
                   var myImageFile = new File(myImagePath);
                   var myNewPath =  myFolder.absoluteURI + "/" + GetFileNameOnly(myImageFile.name) + ".png";
                   CreateBridgeTalkMessage(myImagePath, myNewPath);
                   Relink(myLink, myNewPath);
    function CreateBridgeTalkMessage(myImagePath, myNewPath) {
         var bt = new BridgeTalk();
         bt.target = "photoshop";
         var myScript = ResaveInPS.toString() + "\r";
         myScript += "ResaveInPS(\"" + myImagePath + "\", \"" + myNewPath + "\");";
         bt.body = myScript;
         bt.onResult = function(resObj) {}
         bt.send(100);
    function ResaveInPS(myImagePath, myNewPath) {
         try {
               var myPsDoc = app.open(new File(myImagePath));
                 if (myPsDoc.mode == DocumentMode.CMYK) {
                        myPsDoc.changeMode(ChangeMode.RGB);
               var docName = myPsDoc.name;
              var myPNGSaveOptions = new PNGSaveOptions();
              myPNGSaveOptions.interlaced = false; // or true
              myPsDoc.saveAs(new File(myNewPath), myPNGSaveOptions, true);
              myPsDoc.close(SaveOptions.DONOTSAVECHANGES);     
         catch (err) {
              try {
                   app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
              catch (err) {}
    function Relink(myLink, myNewPath) {
         var newFile = new File (myNewPath);
         if (newFile.exists) {
              var originalLinkFile = new File(myLink.filePath);
              myLink.relink(newFile);
              try { // for versions prior to 6.0.4
                   var myLink = myLink.update();
              catch(err) {}
    function SetDisplayDialogs(Mode) { // turn on-off DialogModes in PS -- don't want to see the open file dialog while the script is running
         var bt = new BridgeTalk;
         bt.target = "photoshop";
         var myScript = "app.displayDialogs = DialogModes." + Mode + ";";
         bt.body = myScript;
         bt.send();
    function UpdateAllOutdatedLinks() {
         for (var myCounter = myDoc.links.length-1; myCounter >= 0; myCounter--) {
              var myLink = myDoc.links[myCounter];
              if (myLink.status == LinkStatus.linkOutOfDate) {
                   myLink.update();
    function GetFileNameOnly(myFileName) {
         var myString = "";
         var myResult = myFileName.lastIndexOf(".");
         if (myResult == -1) {
              myString = myFileName;
         else {
              myString = myFileName.substr(0, myResult);
         return myString;
    Thank you very much for your help.
    Yulia

    I think this will make more sense:
    I need to adjust the script to open in Ph and re-save as png 2 page pdf  liked in indd. Right now the script does everything, but it  re-saves and re-links first page of the pdf onto both indd's pages only.  And I need it to place first png (from first page of the pdf) into 1st  indd's page, and second png file (from second page of the pdf) into 2nd  indd's page.
    See the script in the 1st post.
    Thank you very much.
    Yulia

  • Trying to load my Photoshop CS3 onto new Mac Book Air. Why does it ask for InDesign CS4 part way through?

    Loading my Photoshop CS3 onto new Mac Book Air. Why does it ask for InDesign CS4 part way through?  I have a CS5.5 disc. Will suffice?

    that doesn't make sense.  you will only be prompted for earlier adobe versions when installing a latter upgrade version.
    double check your versions.
    also, you might want to clean your computer before retrying to install, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Issue in setting Load balancing for Indesign Server CS5.5

    Hi All,
    I need to set up load balancing mechanism for Indesign Server CS5.5 on Windows Server 2008 R2(64 bit version).
    I have dutifully following all steps defined in "WORKING WITH LOAD BALANCING AND QUEUEING FOR ADOBE INDESIGN CS5 SERVER.pdf"
    After running Indesign server using batch file "startup-indesign-server-CORBA-4instances.bat" from "<ID_SDK>\samples\load-balancing-and-queuing-clients\indesignserver-startup-scripts", I get only one instance of Indesign Server running. How to run multiple instances of the INDD server ? Is running multiple instance has something to do with type of licensing ?
    Now I run Clover.cmd script, I get this screen. I have no idea why its not working. Please help. Please let me know, if the scenario is not clear and more information is required.
    Thnx,
    D

    This is the image after running clover.bat

  • Do you have hindi fonts for InDesign CS4 and if so how much are they?

    Do you have hindi fonts for InDesign CS4 and if so how much are they?

    Adobe does offer a few Unicode fonts that support Hindi  I'd expect that you'd be asking for Devanagari fonts, though. Have you ever done any Hindi typesetting? I mean, when we typeset English we don't do it in "English fonts" but in "Latin-script fonts."
    There are two main classes of Devanagari fonts - the more common, older fonts where someone took a Latin-script font, erased the characters, and replaced them with Devanagari glyphs, versus contemporary Unicode fonts. The first class are wonky, hard to use, and quite common. If you're in-country you will find lots of ways to buy those kinds of fonts. You also can use them in InDesign without needing any scripts or plugins to turn on the World-Ready Composer. I find Unicode fonts to be much easier to use, to automatically compose according to proper rules regarding behavior of glyphs - but to use them in CS4, you'd need something like World Tools or IndicPlus. I'm a World Tools user myself but if you're going to be doing only Hindi work in CS4, I'd suggest that you look at IndicPlus first.
    In short - it's deeper than it looks. If you want to tell us more about what you're trying to do, we might be able to give you better advice.

  • Missing plug-ins for InDesign CS4? Fehlende Zusatzmodule für InDesign CS4?

    Missing plug-ins for InDesign CS4? Fehlende Zusatzmodule für InDesign CS4?
    Hello! Hallo!
    I am working with CS4 on the Mac OS X, version 10.6.8. I created some InDesign files with it a couple of weeks ago. When I want to open them now again, it shows me a long list of plug-ins that I supposedly have to activate first or I need to buy the newest CS as an alternative.1. How did this problem come off? 2. How can I activate the missing plug-ins?
    Ich arbeite mit CS4 auf einem Mac OS X Version 10.6.8. Habe damit vor einigen Wochen mehrere InDesign Dateien erstellt. Wenn ich sie jetzt wieder öffnen möchte, zeigt er mir eine lange Liste von Zusatzmodulen an, die ich angeblich aktivieren muss bzw als Alternative das aktuellste CS kaufen soll.
    1. Wie ist das Problem zustande gekommen? 2. Wie kann ich die benötigten Zusatzmodule aktivieren?
    Thank you all! Danke schön!

    Actually, Indesign only says like "I can't open, because it was saved from a newer version" and does not list any extensions/plugins.
    If you now make a new document, save it and open again - will it work?
    Those plug-ins are usually enabled/disabled via the Adobe Extension Manager (Menü "Hilfe"->Erweiterungen verwalten).

  • Slow installation for indesign CS4 trial

    I have downloaded the trial issue for indesign cs4 and try to install it on my PC, it is really slow, it is about 10 hours now and the install progression is only at "Adobe Output Module", it is about 25% of the total installation if I look at progress bar.
    My computer is an Acer Aspire 7720, Intel core duo, cpu 2 GHz, RAM 3 Go and 250 Go of Hard drive.
    I have followed the instruction to disabled the Antivirus program and Firewall too. So how to speed up this install, it is the first time I encountered that kind of problem.

    User Access Control and Pain In The Arse.
    There's something going on with the system if the profile check is taking two hours. How much free space is left on the hard drive?
    Is there some sort of minimum-required configuration you can boot to, similar to running MSconfig in XP and turning off startup programs and non-Microsoft services? It really sounds like there is still something running in the background that is conflicting. You are certain that anti-virus is not running? I'd also be sure that no browser toolbars are loaded, nor any instant messenger or music programs, and have a local printer, rather than a network printer, set as the default and online.
    Peter

  • Are plug-ins developed for Indesign CS4 compatible with CS5?

    Will a plug-in developed for Indesgn CS4 work in CS5?

    No. CS4 plugin need to be ported to CS5 - basing on InDesign CS5 SDK
    Regards
    Bartek

  • Visual Studio compiling 64 Bit Plugin for InDesign Server CS5

    Hello guys,
    Again I have a problem compiling 64 bit plugins, but this time in windows environments, the 32 bit compiling works fine (also on 64 bit machines). The first thing I've done was creating a new project configuration for 64 bit environments copying the 32 bit settings. Now I changed the precompiled libraries to use the 64 bit ones and changed the output directories. After that the compilation process completed without errors, but the resource files have not been copied to the output directory (the directory for them has been created, but it remains empty). Adding the created plugin into the servers directory ends up with a server message that the plugin could not be recognized. Have I missed something that is necessary for compiling 64 bit plugins?
    I'm using the 64 Bit Developer Version of the indesign server CS5. The operating system is a Windows Server 2008 x64 R2 with Visual Studio 2008.
    Thanks!
    P.S. a plugin compiled with 32 bit settings (including 32 bit libraries) also works for the 64 bit version of the server, so does it make any difference if I'm using 32 bit or 64 bit libraries?

    The libraries were all correct (all using 64-bit).  The problem was a pathing issue.  libxml2 needs iconv.dll, but it couldn't find the 64-bit version that I built.  Once it found it, everything worked correctly.
    The funny thing about depends.exe is that it isn't right all the time.  For example, if you open one of the 64-bit .aip files that ships with Illustrator (rename it to .dll first), you'll see what I'm talking about.  It complains that you're mixing x86 and x64 CPU types, even though you're not.
    The program I used to discover my issue is Process Monitor (http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx).  I've been using it for years and love it.

  • InDesign CS4 / CS5 missing JavaScript Socket() object?

    If I do
    var mySocketObject = new Socket();
    socket.open("mywebsite.com:80", "BINARY")
    in Photoshop, it creates a socket object called mySocketObject, which is not null and opens the socket correctly.
    If I do the same thing in InDesign CS5, the same command fails.
    I know this works in InDesign CS3, so what does one need to do to make Socket() work in InDesign CS4/5?

    Adobe's own Javascript Tools Guide is your friend for snippets like these.
    This is from the CS4 guide, but it should work for CS5 as well:
    reply = "";
    conn = new Socket; // access Adobe’s home page
    if (conn.open ("www.adobe.com:80"))
    // send a HTTP GET request
    conn.write ("GET /index.html HTTP/1.0\n\n");
    // and read the server’s reply
    reply = conn.read(999999);
    conn.close();

  • Shared Content InDesign Plugin for InDesign CS4 won't open file

    Yesterday I discontinued using Adobe CC and went back to using my Adobe InDesign CS4.  CS4 is working OK but there is ONE file that won't open.  I get the message "Shared Content InDesign Plugin is currently not available on your system".  The file will not open. Is there a workaround or how do I get the required plugin?

    You get that error when the file was saved in CS5 or later. You can find out the version using the script at Adobe Forums: [Ann] Identify Your InDesign File.
    You'll need to export the file to .idml from the newer version to be able to open it in CS4. This is something I normally offer to do, but I'm not available for at least a week, so perhaps one of our other regulars can step up and volunteer.

  • Where can I find a download for Indesign CS4 6.0 WIN?

    We are a charity organisation and during the office move, it appears that we have lost the CD which  may have recieved at the time.
    Having spoken to Tech Support at Adobe, they recommend that I put this on the forum as there is no download available for this version.
    We have a certificate from Adobe showing that we purchased InDesign CS4 6.0 WIN AOO License[removed by moderator].
    Can someone let me know if and where I can download InDesign so that we can use our license serial number.
    Thanks
    Message was edited by: Peter Spier

    As usual, the outsourced support from India was incorrect.
    You can download the CS4 installers from Download CS4 products. Be sure you pick the product and platform that match your license.

  • [Ann] QR Code for InDesign CS4 and up

    Ever needed to create a QR code? There are literally hundreds of free QR code generators on the web, but they all have the same drawbacks:
    1. They typically deliver a PNG, either 'click here to download', or you have to drag it somewhere yourself.
    2. It's typically an RGB image, so the cautious designer will start up Photoshop to convert it to a monochrome image.
    3. .. so you get a file to store somewhere ..
    4. ... and after seeing four of them you cannot remember which QR code said what ...
    5. .... and, you cannot use such site in a batched environment (well, maybe some people can by building a proper URL, call the website, wait for a response, etc. I bet it's difficult for your average scripter.)
    So I had a go on converting one of the existing Javascript solutions -- Patrick Wied's, in case you're curious -- into a construction fit for InDesign. All you have to do is download the zip: http://www.jongware.com/binaries/jw_qrcode.zip -- unpack it, and save the file "QRCode.jsxbin" in your local User Script folder. It ought to be compatible with InDesign CS4 and upwards, for both Mac and Windows.
    When it appears in your Script Panel, you can double-click to run and
    1. with nothing selected, it prompts for text and error recovery settings, and will place a proper monochrome TIFF bitmap of (approximately) a useful dimension in the center of your current page.
    2. with an empty rectangle selected, the new QR code will be placed inside it.
    3. with some text selected, the text field will be pre-filled with this.
    4. With a QR Code selected which you created earlier using this same tool, the text field will contain the original text, and the quality setting will be retrieved. You can cancel the dialog if you only wanted to know what it said, or change the text or quality.
    5. You can call this script from another script to perform batch operations. It accepts two required arguments, and one optional, in this order: text, Error Correction level (1-4), and optionally a destination rectangle to place it in:
    app.doScript(new File(app.activeScript.path+'/qrcode.jsxbin'), ScriptLanguage.JAVASCRIPT, ["hello", 1, app.selection[0]], UndoModes.ENTIRE_SCRIPT, "Call QR Code");
    6. Since it's a monochrome bitmap TIFF with enough resolution (at its default size it's 200 dpi), you can use the swatches palette to change the white or black parts to another color, or even make one transparent.
    7. It's just a small file, and so I decided to always have it automatically embed. That way you can never loose it. The image first has to be created in a temporary file (default location: (Temp)/qrcode.tiff, where (Temp) is your local Temporary Files folder). If this fails for some of you (there always seem to be overly prudent IT professionals who seem to despise users storing files willy-nilly), I'll have to think of something else.
    Note: this version only supports plain text mode, not numeric, alphanumeric, or Kanji. Text is converted to UTF-8; for the most common purpose -- web pages -- it should work normally.
    Enjoy!
    Based entirely on Patrick Wied's implementation of a basic QR Code generator. Patrick Wied dutifully notes
    I do not guarantee any resulting QR code generations or detections, use this application at your own risk! - this project is just a study project (non commercial).
    and so I advise to always check your generated code using a good QR Code reader.

    To give back to community, here is the script to generate QR codes for business cards created by data merge
    It reads text frames starting with MECARD:, empties them and places QRcode rotated 15 degrees counterclockwise. Enjoy!
    var _d = app.documents[0];
    var _allStories = _d.stories;
    for(var nx=_allStories.length-1;nx>=0;nx--){
        var _storyAllTextFrames = _allStories[nx].textContainers;
        for(var mx=_storyAllTextFrames.length-1;mx>=0;mx--){
             _storyAllTextFrames[mx].select(); // change page
             if(_storyAllTextFrames[mx].contents.indexOf('MECARD:')==0){
                 var obj = app.doScript(new File(app.activeScript.path+'/qrcode.jsxbin'), ScriptLanguage.JAVASCRIPT, [_storyAllTextFrames[mx].contents]);
                 _storyAllTextFrames[mx].contents = "";
                var myScaleMatrix = app.transformationMatrices.add({horizontalScaleFactor:.7,
                    verticalScaleFactor:.7,counterclockwiseRotationAngle:15});
                obj.transform(CoordinateSpaces.pasteboardCoordinates,AnchorPoint.centerAnchor, myScaleMatrix);            
                 //obj.move ([_x,_y]);
    here is a MECARD template for you:
    MECARD:
    N:<<Last>>,<<First>>;
    TEL:<<Direct>>;
    TEL:<<Mobile>>;
    EMAIL:<<E-mail>>;
    NOTE:<<Position>> at <<Company>>;
    http://www.nttdocomo.co.jp/english/service/developer/make/content/barcode/function/applica tion/addressbook/index.html

  • Can't Download Trial version for InDesign CS4! Please help ASAP!

    Hi Everyone!
    I have been trying to download the trail version of InDesign CS4 into my PC and it doesn't download.
    What happens is that when I choose the software and click download, it takes me to a page that says "the download should start automatically, if it doesn't click here". The download doesn't start automatically and when I click what it says, it takes me to the previous page that I started the download.
    I hope I am clear enough.
    Please help me ASAP, I need this for a project that is due very soon!!!!!!
    Thanks a bunch,
    Rose

    What version of Windows are you running (that's your Operating System). I've never seen that hand thing, but I don't use Internet Explorer. It's clearly a security feature  somewhere that is preventing the download, either in the browser or some other antivirus, malware blocker, or firewall program you have installed. What version of IE?
    Allowing scripting and ActiveX controls would be in the IE Tools menu under Internet Options, Security Tab, custom settings button. It might be best to get someone with more experience to come in and help you make any changes rather than trying to do this yourself since you don't appear to be skilled in the inner workings of the computer.
    If all else fails, I think you can order the trial on a disk.

Maybe you are looking for

  • Certificate problem? Take my help but I need help too

    Thanks to every one who views my post. I have tried around 4 tecniques for obtaining a self certificate for my mobile application. If any one have tried or succeeded in self certifing your application ,please help me. Or if u too r struggling with it

  • IOS 7.1.1 update problems

    My ipad went into recovery mode when updating to IOS 7.1.1 today. Is there any way to exit this recovery mode?

  • Help needed with sql function

    Hi, i have a function like below. basically what it does is, check whether first 2 places of a column_name is *'N_'*. if yes then i am replacing column_name which has *'N_' to ''* CASE WHEN SUBSTR(column_name,1,2) = 'N_' THEN *':NEW.'||REPLACE(column

  • Diskless x86 solaris 10 (DHCP, PXE booting)

    Has anyone gotten an x86 box to be a diskless client with Solaris 10? I have a server setup(both jumpstart and diskless server) and booting sparc just fine, but I'd like to get an x86 machine working too (you know, for fun :) I have my LX50 jumpstart

  • Create Invoice (actual invoice, not just report) before shipping?

    We have a need to create a real invoice as soon as the order books, regardless of whether or not the order has fully shipped. Currently we're creating two separate orders, invoicing one and then shipping from the other, each with different items (a b