Transform reflect objects in illustrator via javascript

Hi all,
are there any way to transform > reflect Vertical axis in illustrator but via JavaScript not apple and i mean reflect not scale H or V
thanks in advance.

Hi Muhammad.eloc,
you can try something like this:
var totalMatrix = app.getScaleMatrix(-100,100);
app.activeDocument.activeLayer.pathItems[0].transform(totalMatrix);
e.g. for the first path item in the active layer
Have fun

Similar Messages

  • How to use the index method for pathpoints object in illustrator through javascripts

    hii...
    am using Illustrator CS2 using javascripts...
    how to use the index method for pathpoints object in illustrator through javascripts..

    Hi, what are you trying to do with path points?
    CarlosCanto

  • Is it possible to copy text to the clipboard in Illustrator via Javascript ?

    I am working on a very basic script that exports coordinates from Illustrator.
    At the moment I am just outputing the values via $.writeln()
    I was wondering if I could copy the output values to the clipboard. If so, what
    am I looking for in the API ?
    Thanks,
    George

    For an actionscript project I will need to animate a few hundred objects to certain destinations. These destinations are given by a designer who works on the look and feel of things in Illustrator.
    I would like to make it as simple as possible for the designer to adjust things visually in Illustrator, then he can get a snippet to test in Flash as well.
    Thank you very much for the applescript idea!
    I'll use something like:
    app.system("osascript -e 'set the clipboard to \"" + code + "\"'");

  • Resize an Object via javascript

    Resize an Object via javascript
    How do I...
    I want to select an object in my document, onscreen, (an image, or text) then run a script that will discern the object selected, and show a dialog box that will allow me to input a sizing percentage for that object (with anchor corner/center)(Press enter and object resizes).

    No they don't.
    Acrobat may be bundled with Creative Suite collections but the APIs has nothing in common other than the use of JavaScript. CS apps use the ExtendScript system, Acrobat has its own internal API and an SDK for inter-application control.
    PDF is an end-destination format - the page content is not designed to be edited, so while there are tools in the user interface to allow touchups and corrections to page objects those features are not available for automation. The JavaScript engine does not have access to the low-level document structure, it can only see markup (comments and form elements) and a limited range of document properties.
    bdmasha wrote:
    They are all part of a suite of tools that share a common access to internal api's via scripting/programming languages.
    InDesign is not Photoshop is not Illustrator, but they have much in common when accessing their api's that Acrobat does not allow--and Acrobat is part of that Adobe suite.
    Thanks again.

  • Using "Objects" like Illustrator in InDesign. Is there a modular way to use instances?

    Let me elaborate...
    (I see Object Styles but not "Objects" Panel like in illustrator)
    What I want to do?
    1. Use a Name plate in my document that I can tweak later, and the changes reflect in all pages.
    2. I want to be able to change color, effects as well as text.
    Example: Name plate that has one Title text box, one Plate number text box, two separate color background boxes, each for the Title and the Plate number
    Possible solutions I am aware of?
    A. Use Master Page
    Add Name plate to master page.
    "Pluck out" the name plate on the page (lift-off as some call it)
    Move it to new location, change text (plate number in my case), don't change any box colors.
    Color changes to boxes in Master, reflects in all pages. Good!
    Issue: Text boxes that have not been edited in the page, still do not reflect new updated text, color changes to box is updated.
    B. Use Find and Replace
    Use this to find the name plate text and replace it with new text.
    I have not tried it, but I am only wanting to change text style in one text box. Does this feature help to do this?
    C. (please add)
    My Questions:
    1. Is there any other method to accomplish this?
    2. When I have not edited the text, why solution A (plucking out from Master page) does not reflect changes to text? It does show changes to color background!

    Thanks Willi Adelberger for this reminder (point1) It helped me to correct one "stuck thinking" I had, and helped to a degree.
    I could not locate "Content Tools" but exploring now from Indesign help (content collector... was something else...) 
    Stuck mindset!
    I was stuck thinking I need an exact same feature (like "Objects" of Illustrator or "blocks" of Autocad or Instances in Max... where each is an instance of an archetype - master)
    With that, I saw no need to use styles for the NamePlate I was using. Since it was defined in just the master page, while other pages simply moved it to new positions.
    But then I went back and redefined those master objects with styles
    It helped to a degree
    I can except for the textual content can control everything of the NamePlate text.
    I still cannot simply change text like "PLATE" to "Plate" if I see such a need later (perhaps using find and replace can do).
    I have now done the all but I cannot add a logo graphic (if I see a need later) to these name plates!
    This is where I am not able to get an answer, if there is indeed a method to do things like referenced "Objects". Change the Object. All instances change.
    PS: I ever tried a hack, by putting the text box inside another box and grouping them. So when I pluck from master (lift off) I just get the Group. I believed that since I am not touching the original "text" object in the process InDesign will keep the link intact and change in text on master will reflect changes to the pages. it did not work.

  • Reflection objects and thread safety

    Hi,
    I believe that I saw that Field and Method objects are thread-safe (i.e., can safely have methods called against a single object instance concurrently from multiple threads), but am having trouble finding such a description in the JDK javadocs static that fact.
    I'm assuming that all thread-specific 'state' would be managed by the Object target passed to methods like invoke()/get()/set() and not on the actual Field and Method objects themselves. Ideally, i'd like to only have to look up fields and methods only once reflectively, and thereafter just use the same reflection object instances to access their target objects at runtime as a performance optimizations - possibly in different threads and at the same time - without having to pay the cost of looking it up again. I should be able to do that providing Method.invoke() is thread safe. Otherwise, i'd probably be forced to call Class.getMethod() to get a new Method object to use against each object instance, which would be more costly both from a memory standpoint (more Method objects) and a lookup-cost perspective.
    Given that lots of existing performance-critical enterprise infrastructure code, such as OR database APIs, IoC frameworks and J2EE containers use reflection to decouple the generic code from any app specific code (from a compile time perspective) as an alternative to code generation, it's surprising that there's no obvious statement about thread safety in these classes. If I look at the source code for Method, it appears to be thread safe, but I can only get so far with this analysis, as the critical code in Method appears to be implemented using a class named 'sun.reflect.MethodAccessor', whose source I don't have access to.
    I know it's possible to invoke a method against multiple objects by calling Method.invoke() against each of the target objects in question. However, there's no mention as to whether it's safe to use a single Method object instance to invoke a method against multiple target object instances at the same time (i.e., from different threads running in parallel). This would fail, for instance, if the Method object had data members that were used to communicate information between internal calls without any synchronization, as the values might be used by one thread while another was changing them.
    Just to clarify (as i've seen some confusion in other forum discussions on this topic):
    I completely understand that the thread safety of a target object's method (read, small 'm') is entirely dependent upon it's implementation and not the mechanism by which it's invoked - i.e., whether a method is invoked by an explicit compiled-in call against an instance of the target object in some Java source file, or indirectly via Method object-based reflection, is immaterial the the method's thread safety.
    What i'm asking about is the thread safety of the Method.invoke() call itself (read, big 'M'). Same question wrt Field.get()/.set() as well. These calls should be thread-safe if they're stateless wrt the Method and Field object instances that they are invoked against.

    In general, if a Java API is silent about multi-threading, it is intended to be thread-safe. See the javadoc for HashMap for an example of an explicit warning.
    It is true that Java code can have bugs that show up only on unusual implementations of the Java memory model, such as relaxed memory model machines. Most (if not all) implementations of the JDK have been deployed principally on platforms with strong memory models. (Perhaps not coincidentally, those are also the machines that have market share.) There are even bugs found occasionally in the JDK core, so draw your own conclusions about the bug-tail of our software stack on systems with relaxed memory models!
    One of the more likely bugs to run into on highly optimized systems is failure of timely initialization of non-final fields in objects which are shared in an unsynchronized manner. See http://www.cs.umd.edu/~pugh/java/memoryModel/jsr-133-faq.html#finalRight and related pages. JDK core programmers (at Sun, to my personal knowledge) take care not to write code with such bugs, but application programmers might.
    And, yes, caching your own Method objects is a good idea, if only because their lookup is generally cumbersome and slow. If you are very performance sensitive, you'll end up generating bytecode "shim" between your callers and the desired target methods. I expect that the http://openjdk.java.net/projects/mlvm/ (an openjdk project we are just starting) will provide some relief for this; stay tuned.
    Finally, since Method objects have no state to speak of (except their "accessible" bit, which is an ahead-of-time configuration), it would be really, really surprising if they could create a race condition of some sort. If you expect race conditions in formally stateless data structures, you are certifiably paranoid. (A normal state on some platforms, hopefully not on Java.)
    For more information about method calls, including reflective methods, see my blog post: http://blogs.sun.com/jrose/entry/anatomy_of_a_call_site
    Best wishes...

  • Place an object like Illustrator does.

    Hi. I need a way for Photoshop to place an object like Illustrator does. Sure, Smart Objects are nice but I need a method where I have a PS file and 1 or more layers in it are referenced. When these references are updated the PS file should update automatically (yes, I will have to have the file open and save ...). Illustrator does this ... page layout apps do this. I need for PS to do this or find a work method that will help do this. Any thoughts?
    The specific details:
    We have several hundred images of our app's interface. The images are composites of generic interface and language-specific interface. To make things easier when updating or translating docs we snag the local parts of the interface.
    We would then place and align the separate images in FrameMaker. We're moving to a new tool and output and we need to put all of the images together in a single image file but want to retain the ability to only update the localized sections. Smart Objects are not smart when trying to do this as they require you to either (essentially) re-import the object (using Replace) or edit the object from the composite image. This obviates the ability to simply replace the target image and have the composite update.
    So ... any input? Thoughts? Ideas? I considered the possiblity of doing this from Illustrator but that is just so much more ... demanding.

    Yes one thought, but it's not perfect:
    I think this would require a Phoroshop Javascript which does the following:
    First, prepare the document: Each smartobject should be named like the actual file of it's original content, so the script knows where to look for changes, like "screenshots/shot1.jpg", "titles/title1.png" and so on.
    Second, the script:
    It should go through all smartobjects in the document and then check the file (which it gets by the name of the smartobject) and it's date.
    If it's newer than the document's last changed date, it should replace the content, otherwise just skip it.
    Well I don't know if the Photoshop Javascript is actually capable of things like that, but it can do a lot though and can be a big helper for everything batch-related

  • How to validate the images in illustrator via java?

    Is it possible to open and  validating the eps file in illustrator via java. Kindly advise me.
    Thanks  for looking into this.
    Maria Prabudass

    I need to open the eps file in illustrator using java (not javascript) and then i need to get the details like to find out the font size, font name, stroke weight, colour values(like RGB, CMYK). Is it possible?
    Thanks..

  • Using Flash objects in Illustrator

    I have a lot of vector objects (icons/graphics etc.) that
    were created in Flash CS3 (not by me) and I want to use/import
    these objects into Illustrator CS3 so that I can modify them
    (change colors, rearrange various shapes in each object etc.). I am
    not very familiar with Flash, but I am very experienced with
    Illustrator, which is why I want to get the objects into
    Illustrator for editing.
    I have tried selecting the object on the Flash Stage and then
    choosing File then Export...I select Illustrator 6.0 as the format
    (the latest version of Illustrator it will export in) and save it
    as a .ai file. When I open the file in Illustrator CS3 only part of
    the object (~40%) appears. Many of the shapes that make up the
    object are missing. If I just select the object and choose Copy
    then Paste into Illustrator the same thing happens.
    I've got to believe that there is an easy/more direct way of
    doing this. As an FYI, each of the objects is saved as an .FLA file
    and a .SWF file.
    Thanks in advance for any help!!!
    Andrew

    I moved the thread to the Illustrator forum.
    You can modify the clipping path just as you do a normal path, just select it in the Layers panel and use the Scale Tool, Free Transform Tool, etc but that shouldn't be necessary, with View->Smart Guides selected you can easily draw a rounded rectangle from the upper left corner to the bottom right corner of the image and thus have it the exact size that you need. While you drag with the Rounded Rectangle Tool you can also use the Up and Down arrow keys to change the roundness of the rectangle on the fly.

  • Access file applet function via javascript

    hi all
    when i want to have access to the method (which in fact read a file) of my applet class via javascript, a java error is raised: access denied
    BUT i have signed the related jar!
    when i want to access the method (which in fact read a file) of my applet class via the normal way (put a button into a frame and....) it works.
    are there more configurations to do or ....?
    Kind Regard Tom
    here is the code
    HTML file
         <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
         <head>
         <link type="text/css" rel="stylesheet" href="/css/style.css">
              <script type="text/javascript">
              function xclick() {
              alert( document.getElementById('applet').isFileOk());
              document.getElementById('fichier').value = document.getElementById('applet').isFileOk();
              //alert(document.portal.applet.isFileOk(path));
              function checkfile() {
                   //var fichiercacher = document.portal.fichier.value;
                   var fichiercacher = document.getElementById("fichier").value;
                   document.getElementById("fichiercacher").value = fichiercacher;
                   document.getElementById("fichiercacher").value = fichiercacher;
                   document.getElementById("chemin").value = fichiercacher;
                   alert("fichier cacher" + fichiercacher);
                   alert("chemin=" + document.getElementById("chemin").value);
              </script>
         </head>
         <body >
         <form name="portal" method="post" action="" >
    <p align="center" id="corps">
         <img border="0" src="ilias.bmp"><br>
         <applet id="applet2" code="NumberOfLine.class" archive="NumberOfLine.jar" width="150" height="109" >
              <param name="maxLines" value="50" />
              <param id="chemin" name="fichierparam" value="" />
              </applet>
              <applet id="applet" code="localfile.class" archive="localfile.jar" width="150" height="109" >
              <param name="maxLines" value="50" />
              <param id="chemin" name="fichierparam" value="" />
              </applet>
         <br>
                   <div id="divloading" ></div>
         <input type="hidden" name="fichiercacher" />
         <input type="file" name="fichier" onchange="checkfile()">
    <input type="button" value="click me" onClick=xclick() ; />
         </p>
         </form>
         </body>
         </html>
    Class NumberOfLine javascript way
    import java.applet.Applet;
    import java.awt.Button;
    import java.awt.Label;
    import java.io.*;
    public class NumberOfLine extends Applet {
    private boolean fileok = false;
    Label message = new Label("MAX line = 40 ");
    Button btnok = new Button("check file");
    int maxline = 40;
    public void init() {
         String sMaxLines = getParameter("maxLines");
         if ( sMaxLines != null ){
                   this.maxline = Integer.parseInt(sMaxLines);
                   System.out.println(this.maxline);
         public String isFileOk(String chemin) {
              File ffile = new File( chemin);
              try{
                   FileReader fr = new FileReader(ffile);
                   LineNumberReader ln = new LineNumberReader(fr);
              int count = 0;
              while (ln.readLine() != null) {
              count++;
              System.out.println("Total line no: " + count);
                   ln.close();
                   fileok = (count <= maxline);
              catch(IOException e){
                   e.printStackTrace();
                   System.out.println(e.toString());
              return fileok ? "ok" : "nok";
    CLass localfile Normal way
    import java.applet.*;
    import java.awt.*;
    import java.util.*;
    import java.lang.*;
    import java.text.*;
    import java.awt.event.*;
    import java.io.*;
    public class localfile extends Applet {
         public localfile() {
              Panel p = new Panel();
              Font f;
              String osname = System.getProperty("os.name","");
              if (!osname.startsWith("Windows")) {
                   f = new Font("Arial",Font.BOLD,10);
              } else {
                   f = new Font("Verdana",Font.BOLD,12);
              p.setFont(f);
              p.add(new Button("Open"));
              p.add(new Button("other"));
              p.setBackground(new Color(255, 255, 255));
         p.setSize(800, 800);
              add(p);
              setSize(800, 800);
              setVisible(true);
         public String isFileOk(){
                   System.out.println("OPEN CLICKED");
                   int arrlen = 10000;
                   byte[] infile = new byte[arrlen];
                   Frame parent = new Frame();
                   FileDialog fd = new FileDialog(parent, "Please choose a file:",
                   FileDialog.LOAD);
                   fd.show();
                   String selectedItem = fd.getFile();
                   if (selectedItem == null) {
                        // no file selected
                   } else {
                        if ((fd.getFile()).endsWith("txt") || (fd.getFile()).endsWith("text")){
                             File ffile = new File( fd.getDirectory() + File.separator +
                             fd.getFile());
                             // read the file
                             System.out.println("reading file " + fd.getDirectory() +
                             File.separator + fd.getFile() );
                             try {
                                  FileInputStream fis = new FileInputStream(ffile);
                                  BufferedInputStream bis = new BufferedInputStream(fis);
                                  DataInputStream dis = new DataInputStream(bis);
                                  try {
                                       int filelength = dis.read(infile);
                                       String filestring = new String(infile, 0,
                                       filelength);
                                       System.out.println("FILE LENGTH=" + filelength);
                                       System.out.println("FILE CONTENT=" + filestring);
                                  } catch(IOException iox) {
                                       System.out.println("File read error...");
                                       iox.printStackTrace();
                             } catch (FileNotFoundException fnf) {
                                  System.out.println("File not found...");
                                  fnf.printStackTrace();
                        } else {System.out.println("Error this is not a txt file"); }
              return "turc";
         public boolean action(Event evt, Object arg) {
              if (arg.equals("Open")) {
                   System.out.println("OPEN CLICKED");
                   int arrlen = 10000;
                   byte[] infile = new byte[arrlen];
                   Frame parent = new Frame();
                   FileDialog fd = new FileDialog(parent, "Please choose a file:",
                   FileDialog.LOAD);
                   fd.show();
                   String selectedItem = fd.getFile();
                   if (selectedItem == null) {
                        // no file selected
                   } else {
                        if ((fd.getFile()).endsWith("txt") || (fd.getFile()).endsWith("text")){
                             File ffile = new File( fd.getDirectory() + File.separator +
                             fd.getFile());
                             // read the file
                             System.out.println("reading file " + fd.getDirectory() +
                             File.separator + fd.getFile() );
                             try {
                                  FileInputStream fis = new FileInputStream(ffile);
                                  BufferedInputStream bis = new BufferedInputStream(fis);
                                  DataInputStream dis = new DataInputStream(bis);
                                  try {
                                       int filelength = dis.read(infile);
                                       String filestring = new String(infile, 0,
                                       filelength);
                                       System.out.println("FILE LENGTH=" + filelength);
                                       System.out.println("FILE CONTENT=" + filestring);
                                  } catch(IOException iox) {
                                       System.out.println("File read error...");
                                       iox.printStackTrace();
                             } catch (FileNotFoundException fnf) {
                                  System.out.println("File not found...");
                                  fnf.printStackTrace();
                        } else {System.out.println("Error this is not a txt file"); }
              } else return false;
              return true;
    }

    Thx you were a great due to my big lak of java skills.
    i found the solutions and for those who are interrested here is the code:
    public String isFileOk(final String filepath){
              System.out.println("OPEN file=" + filepath);
              int arrlen = 10000;
              byte[] infile = new byte[arrlen];
                        try {
                   FileInputStream fis = (FileInputStream) AccessController.doPrivileged(
                   new PrivilegedExceptionAction() {
                   public Object run() throws FileNotFoundException {
                   return new FileInputStream(filepath);
                             BufferedInputStream bis = new BufferedInputStream(fis);
                             DataInputStream dis = new DataInputStream(bis);
                             try {
                                  int filelength = dis.read(infile);
                                  String filestring = new String(infile, 0,
                                  filelength);
                                  System.out.println("FILE LENGTH=" + filelength);
                                  System.out.println("FILE CONTENT=" + filestring);
                             } catch(IOException iox) {
                                  System.out.println("File read error...");
                                  iox.printStackTrace();
                             } finally {
                                  try {
                                       fis.close();
                                  } catch(IOException ioe) {
                                       //oops
                   } catch (PrivilegedActionException e) {
                   // e.getException() should be an instance of FileNotFoundException,
                   // as only "checked" exceptions will be "wrapped" in a
                   // PrivilegedActionException.
                   //throw (FileNotFoundException) e.getException();
                        e.printStackTrace();
                        return "nok";
                   return "ok";
         }

  • Turn off free transform on objects

    Is there a way to turn off the free transform on objects? This is a helpful function sometimes, other times it is the most annoying thing, especially when I am working with small dots marking map locations.
    I am using Illustrator CC 2014
    Thank you for any input.

    Marcia,
    What happens in CC2014 if you
    A) Use the Group Selection Tool (the Direct Selection Tool with the + (see the flyout),
    or
    B) First Alt/Option Click the object with the Direct Selection Tool then ClickDrag with it?

  • Manipulating a cubequery via javascript

    Hi all,
    I'm trying to manipulate a cubequery section via javascript within an interactive reporting document (version 11.1.1.2).
    Docs are quite terse and I wasn't able to find an Object Model Map, the snippets of code are one line long and quite useless as a guide.
    I have a cube with a Scenario dimension with 2006,2007 etc as children.
    I can add Scenario to rows or columns of the query, but I have not found the right instruction to add a single children of the top level member to rows or columns.
    Has anyone a working piece of code or, even better, a detailed description of the CubeQuery object (and of his components)?
    TIA & best wishes
    Gianluca

    SOLVED
    to add 3 members from the scenario dimension in the columns of the cubequery you can use:
    ActiveDocument.Sections["Q personalizzata"].Columns.RemoveAll();
    ActiveDocument.Sections["Q personalizzata"].Columns.Add("Scenario");
    ActiveDocument.Sections["Q personalizzata"].Columns["Scenario"].FindAndAdd("2006",1,true,true);
    ActiveDocument.Sections["Q personalizzata"].Columns["Scenario"].FindAndAdd("2007",1,true,true);
    ActiveDocument.Sections["Q personalizzata"].Columns["Scenario"].FindAndAdd("2008",1,true,true);
    ActiveDocument.Sections["Q personalizzata"].Columns["Scenario"].MemberSelectors["Scenario"].DisableSelection = true;
    for the rows substitutes Columns with Rows
    2006,2007 and 2008 are children of Scenario
    apparently the top level member of the dimension has to be always present in the QueryLabel, but can be disabled if you don't need it in the results
    BTW the second parameter in the FindAndAdd method could be substituted by the constant bqOlapMemberSelector, unfortunately if you use the constant instead of the value 1, you get an error message stating that the constant is not defined
    Gianluca

  • Copying objects from Illustrator CS3 to FreeHand 11.0.2

    Working on a Mac in OSX 10.4.11, I was able to select and copy objects in an open Illustrator CS2 file and paste them into an open FreeHand 11.0.2 file, where they would be fully editable. After migrating to OSX 10.6.2 and upgrading to CS3, this no longer works - the objects selected and copied from Illustrator either do not appear (only corner indicators are visible) or a pale version appears as an uneditable low-rez image with funny colors....
    Because there are so many missing features in Illustrator, it's important for me to be able to work back and forth between the two apps.  Has anyone been able to achieve this (formerly) simple interactivity?

    I got the following post from Danny Haas:
    If you go to Edit>Special>Paste Special and then select AI/EPS from the list
    it should paste just fine. It works well for me.
    Worked for me too, although text was not imported as editable text.  To do
    that had to special paste the text separately as unformatted text, and then
    reformat in FH.
    From: Judy_Arndt <[email protected]>
    Reply-To: <[email protected]>
    Date: Wed, 13 Jan 2010 17:19:27 -0700
    To: PETER AGOOS <[email protected]>
    Subject: Copying objects from Illustrator CS3 to FreeHand 11.0.2
    I skipped AICS3, but now use AICS4 for some tasks.
    The only solution I've found is to save the AI CS4 file as AI 8, open that
    in FHMX and copy from there.

  • How to get elements in a multi-value field via javascript?

    The following will set variables.variable1 to variables.variable2 when the "Script Link" component is clicked...
    <Field>
    <Display class='Javascript'>
    <String>
    function myScript() {
    el=getElement(document.mainform,"variables.variable1");
    el2=getElement(document.mainform,"variables.variable2");
    el.value=el2.value;
    </String>
    </Display>
    </Field>
    <Field name='Script Link'>
    <Display class='Link'>
    <Property name='URL'>
    <String>javascript:myScript();submitCommand(document.mainform,%20'Recalculate');</String>
    </Property>
    </Display>
    </Field>
    My issue is, if variables.variabl2 is a list / multivalued, i get errors trying to traverse through the "array".
    How can i read and set an a list element via javascript function above? I've tried things like get() , and variables.variable2[0] .
    any help would be appreciated....
    is there an API somewhere i can reference?

    Hi,
    thanks for your reply!
    If I have the parameters in the URL and use the method GET it works all right.
    but I need the method to be POST. I suppose, I have the wrong way identifying the parameter name
    This is from VB
    varTarget = "http://localhost:9090/gm/getData" ' getData is my servlet
    xmlSendStr = "SQLStmt=SELECT TCPD_Cars.* From TCPD_Cars WHERE (((TCPD_Cars.CarIdent)=45));"
        xmlHttp.Open "POST", varTarget, True   'True means asynchronous
        xmlHttp.Send xmlSendStrthis is part of my Servlet
         protected void doPost(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException {
              response.setContentType("text/html");
              PrintWriter writer  = response.getWriter();
              String SQLStmt = request.getParameter("SQLStmt") ;
            //make the database query and get the returns
            writer.println(GetSQLData(SQLStmt));
            //close the write
            writer.close();                    
         }I would appreciate any suggestions

  • Adobe creative suite cs5: unable to open files in photoshop. unable to drag objects on illustrator..

    Adobe creative suite cs5: unable to drag objects on illustrator or indesign. unable to open files in photoshop, brush doesnt work in photoshop.
    In the past I uninstalled adobe creative suite cs5 from my laptop, used the adobe creative cloud cleanup tool, restarted and then reinstalled the programs and everything worked again for about a week. Now everything has gone back to the way it was again and this time the uninstalling and reinstalling isnt helping.
    Any ideas?
    Im pretty desperate!!
    Thanks
    Alisa

    Hi Alisa
    I'm having exactly the same problem. Uninstalled CS4 and reinstalled the 30 day trial of the Creative Cloud and it's stil having the same glitches, not opening in photoshop and not being able to drag/move objects in Illustrator or inDesign.
    Did you find a solution to this problem?
    Thanks
    Jenny

Maybe you are looking for

  • I can't import any movie files in FCPX (even files that previously imported)

    I am currently in this interesting position of not being able to import any videos into FCPX. Not just one, or a few odd ones, but none whatsoever. I have previously imported some videos into FCPX, so it seems like the software is... deteriorating. I

  • How do I get old photos in an album into the Photo Stream?

    I just activated the iCloud, and I have the Photo Stream Upload/Download files working just fine between my PC and the iPad2 for pictures I put in right now. However, I was hoping to slide over an old album of photos into the Stream to my PC and ther

  • Pattern alignment

    So I'm working on floor tile patterns with Illustrator. I love this program. The other day, I found (using the magical F1 key) that I can make a single 2-directional repeat of the pattern and make a swatch so I don't have to draw hundreds of rectangl

  • JNDI name already in use

    hi , I have a problem when deploying my cmp bean. It says the jndi name is alreay in use and wants me to specify a different name in weblogic-ejb.jar. But I have no other resource being referenced by aJNDI name Can u tell me remedy for this plz

  • Man pages don't work

    hi, i updated today and my man pages sort of don't work anymore. the j and k keys don't work anymore to scroll up and down. same thing happens when i use the less command on anything. what could that be?