Border on selected rectangle?

I have a document that will have allot of rectangles in it. I would like to only select one, and put a border on that. I can get the script to work the border/stroke.
but I can't figure out how to get it to use the rectangleI have selected.
I've tried active and selected but they give me an error.
Is there a way to do this
tell application "Adobe InDesign CS5"
          tell rectangle 1 of document 1
                    set stroke color to "Black"
                    set stroke tint to 100
                    set stroke weight to 1
                    set stroke alignment to outside alignment
          end tell
end tell

The document selection can return you a list or nothing so you want to do something like…
tell application "Adobe InDesign CS5"
activate
tell document 1
if (count of every item of selection) = 1 then
if (class of first item of selection) = rectangle then
tell selection
set stroke color to "Black"
set stroke tint to 100
set stroke weight to 1
set stroke alignment to outside alignment
end tell
end if
end if
end tell
end tell

Similar Messages

  • Bug? Right-click on Front Panel causes selection rectangle!

    Originally posted on LAVA: http://lavag.org/topic/12097-right-click-on-front-panel-causes-selection-rectangle/. This post contains an updated description of the problem.
    Anytime I right-click on a control on the FP, and dismiss the context menu, I get a selection rectangle. If I don't catch it, moving outside the bounds of the FP will cause the FP to scroll to continue my unwanted "selection". So far this has been repeatable every time.
    I noticed that the problem doesn't occur on the Controls pallette, only the context menu for controls. Also, if I mouse over the context menu before dismissing it, the problem doesn't occur. If I select an item from the context menu (which also dismisses it), the problem doesn't occur.
    I am running LabVIEW 8.6.1f1 on Windows XP Home SP3.
    -Ian
    Solved!
    Go to Solution.

    I once worked in a lab which contained a transformer with its incessant 120 Hz hum.  Just when I could tune it out someone would say "What's that hum?" and then it would annoy me again.  Similar story in a different lab which had a cooling water drain.  Just when I get used to the sound, someone would bring it up.
    This behavior has p#$#ed me of on numerous occasions and I am mostly used to it by now.   At home I use a track ball mouse which covers a lot of real estate in a hurry so of course I am often scrolling a FP into never-never land.  Now you bring it up and I am having flashbacks... (Thanks really, it is time to get this fixed)
    I have learned to spot the little circle in the crosshair cursor.  When it is missing, you are in selection mode.

  • How to make a selection rectangle with draggable handles

    Hi,
    I'm trying to write a program to visualize large trees in java. The idea is to have a thumbnail view of the tree with a movable selection rectangle that can be used to focus on certain parts of the tree. Parts inside the rectangle will be displayed in greater detail in another view.
    I was wondering if there are any libraries available for making this kind of selection rectangle in Java2D (it'd also be nice to have 8 handles for changing the size of the rectangle) or if anyone has any implementation ideas. I'd appreciate any help. Thanks!
    Wayne

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    public class DragLens extends JPanel
        Lens lens;
        public DragLens()
            lens = new Lens(this);
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            lens.draw(g2);
        public static void main(String[] args)
            DragLens dragLens = new DragLens();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(dragLens);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class Lens extends MouseInputAdapter
        DragLens dragLens;
        Point2D.Double[] centers;
        Rectangle2D hunter;
        int selectedIndex;
        Point2D.Double offset;
        boolean dragging;
        final int S = 10;
        public Lens(DragLens dl)
            dragLens = dl;
            dragLens.addMouseListener(this);
            dragLens.addMouseMotionListener(this);
            initPoints();
            hunter = new Rectangle2D.Double(0,0,S,S);
            offset = new Point2D.Double();
            dragging = false;
        public void draw(Graphics2D g2)
            // draw rects
            g2.setPaint(Color.blue);
            for(int j = 0; j < centers.length; j++)
                g2.draw(new Rectangle2D.Double(centers[j].x-S/2, centers[j].y-S/2, S, S));
            // draw lines
            g2.setPaint(Color.red);
            g2.draw(new Line2D.Double(centers[0].x+S/2, centers[0].y+S/2,  // west
                                      centers[1].x+S/2, centers[1].y-S/2));
            g2.draw(new Line2D.Double(centers[1].x+S/2, centers[1].y-S/2,  // south
                                      centers[2].x-S/2, centers[2].y-S/2));
            g2.draw(new Line2D.Double(centers[2].x-S/2, centers[2].y-S/2,  // east
                                      centers[3].x-S/2, centers[3].y+S/2));
            g2.draw(new Line2D.Double(centers[3].x-S/2, centers[3].y+S/2,  // north
                                      centers[0].x+S/2, centers[0].y+S/2));
        public void mousePressed(MouseEvent e)
            Point p = e.getPoint();
            hunter.setFrameFromCenter(p.x, p.y, p.x+S/2, p.y+S/2);
            for(int j = 0; j < centers.length; j++)
                if(hunter.contains(centers[j]))
                    offset.x = p.x - centers[j].x;
                    offset.y = p.y - centers[j].y;
                    selectedIndex = j;
                    dragging = true;
                    break;
        public void mouseReleased(MouseEvent e)
            dragging = false;
        public void mouseDragged(MouseEvent e)
            if(dragging)
                double x = e.getX() - offset.x;
                double y = e.getY() - offset.y;
                translate(x, y);
                dragLens.repaint();
        private void translate(double x, double y)
            switch(selectedIndex)
                case 0:
                    centers[3].y = y;
                    centers[1].x = x;
                    break;
                case 1:
                    centers[0].x = x;
                    centers[2].y = y;
                    break;
                case 2:
                    centers[1].y = y;
                    centers[3].x = x;
                    break;
                case 3:
                    centers[2].x = x;
                    centers[0].y = y;
            centers[selectedIndex].x = x;
            centers[selectedIndex].y = y;
        private void initPoints()
            int[] x = { 0, 0, 1, 1 };
            int[] y = { 0, 1, 1, 0 };
            centers = new Point2D.Double[x.length];
            for(int j = 0; j < centers.length; j++)
                centers[j] = new Point2D.Double(x[j], y[j]);
            AffineTransform at = AffineTransform.getScaleInstance(80,40);
            at.translate(1,2);
            at.transform(centers, 0, centers, 0, 4);
    }

  • How to get the width and height of the selected rectangle

    Hi,
         I need to get the width and height of the selected rectangle in indesign cs3 and display the values in a dialog box for user verification.
    Regards,
    saran

    Hi Saran,
    InterfacePtr<IGeometry> itemGeo ( objectUIDRef, UseDefaultIID() );
    PMRect ItemCoord = itemGeo->GetStrokeBoundingBox();
    PMReal width  = ItemCoord->Width();
    PMReal height = ItemCoord->Height();

  • How to know current selection rectangle

    Hello,
    I need to know (with SDK) the current selection rectangle.
    I use listener to create my action fonction but listener let to Set a selection but not Get.
    If someone can help me...
    Thanks

    There is a bounds to a selection of a document. BEWARE: This is the bounding rectangle of the selection. If you have a selection with holes in it then you may not be getting what you expect.

  • Select different style for each border of a rectangle

    Hi,
    I just wanted to have a Rectangle (or some other component) which one must have different style for each of its borders.
    For example I want the top and the right border with a thickness of 2 and others with a thickness of 0 (so we can only see those two borders).
    How can I do it ?
    I tried with stroke (but stroke is for all borders, we can't specify which style for which border).
    Thanks,
    Jeff

    Well it is not clear what he is looking for just rect or a component with specific border. I havnt used flex 4 so i am not sure how to get it working for that
    , but i am sure it will work on the same lines.
    I have also given another option to create a it using lineTo() and moveTo().But this should only be used if this rect is not going to be used as a container.
    I think i should elaborate...
    Create a custom component using UIComponent. In updateDisplayList() after super.updateDisplayList() call a method say drawRect(). In this drawRect() use lineTo() and moveTo() to draw the rectangle. you would have to use the component's height and width to draw the rect.
    Let me know if you need more clearification...

  • How to get the area of a selected rectangle?

    Hi:
    I want to use the selected area in a automation plugin. In my case, the area is rectangle. i can't get the top,left,bottom and right position.
    Is there anyone can help me?

    I'm petty you sure can extract the details you want using a script. I think the method is called Selection Bounds, and it return an array of the unitValue of the rectangle.
    If you look at the scriptlistener code for creating a rectangle, it does record the data you want. So you should be able to extract it using Javascript, Apple Script or VB
    This is what the scriptlistener code looks like,
    // =======================================================
    var id5 = charIDToTypeID( "setd" );
    var desc3 = new ActionDescriptor();
    var id6 = charIDToTypeID( "null" );
    var ref1 = new ActionReference();
    var id7 = charIDToTypeID( "Chnl" );
    var id8 = charIDToTypeID( "fsel" );
    ref1.putProperty( id7, id8 );
    desc3.putReference( id6, ref1 );
    var id9 = charIDToTypeID( "T " );
    var desc4 = new ActionDescriptor();
    var id10 = charIDToTypeID( "Top " );
    var id11 = charIDToTypeID( "#Pxl" );
    desc4.putUnitDouble( id10, id11, 210.000000 );
    var id12 = charIDToTypeID( "Left" );
    var id13 = charIDToTypeID( "#Pxl" );
    desc4.putUnitDouble( id12, id13, 276.000000 );
    var id14 = charIDToTypeID( "Btom" );
    var id15 = charIDToTypeID( "#Pxl" );
    desc4.putUnitDouble( id14, id15, 455.000000 );
    var id16 = charIDToTypeID( "Rght" );
    var id17 = charIDToTypeID( "#Pxl" );
    desc4.putUnitDouble( id16, id17, 613.000000 );
    var id18 = charIDToTypeID( "Rctn" );
    desc3.putObject( id9, id18, desc4 );
    executeAction( id5, desc3, DialogModes.NO );

  • Create a black border for select list item

    Need help on creating border on a select list item.
    I tried using style ="border:1px solid black"; in HTML Form Element Attribute , but its not working for select list item, though it works on text field item.
    Nilesh

    Browsers and versions? (Always supply this information when discussing presentation and UI problem.)
    If it's IE, then this is not possible (at least up until IE7 which is all I can test on at present).
    (As HTML, CSS and JavaScript exist outside of APEX, you should search more widely than just OTN when looking for information on these topics.)

  • Zooming the selected rectangle on an image

    hi,
    my problem is that once i'm able to zoom my image ,if i want to zoom it further either on mouse click or selecting a rectangle again on mousedrag,it throws an exception coz i'm not able to get either size or bofferedimage from the once zoomed image.
    do u have any suggestions:
    i'm sending my latest code
    private Graphics2D createGraphics2D(int w, int h) {
    Graphics2D g2 = null;
    if (bimg == null || bimg.getWidth() != w || bimg.getHeight() != h) {
    bimg = (java.awt.image.BufferedImage) createImage(w, h);
    g2 = bimg.createGraphics();
    g2.setBackground(getBackground());
    g2.clearRect(0, 0, w, h);
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    RenderingHints.VALUE_ANTIALIAS_ON);
    return g2;
    public void update(Graphics g) {
    paint(g);
    public void paint(Graphics g) {
    super.paint(g);
    try{
    t=new AffineTransform();
    //////added 09aug
    Dimension d = getSize();
    System.out.println(d);
    if(!first_paint){
    setScale(d.width,d.height - DRG_YPOS);
    first_paint = true;
    if(!image1)
    Graphics2D g2 = createGraphics2D(d.width, d.height -DRG_YPOS);
    g2.translate(((d.width/2) - ((zoomx*maxx + zoomx*minx)/2))
    + zoomx*scrollx,
    (((d.height-DRG_YPOS)/2))+scrolly);
    g2.scale(zoomx,zoomy);
    draw(d.width, (int)(maxy - (maxy- miny)/2) , g2);
    g.drawImage(bimg, 0, DRG_YPOS, this);
    System.out.println("image drawn for the "+counter+"time");
    counter++;
    System.out.println("counter is"+counter);
    System.out.println("image1 is"+image1);
    file://t= g2.getTransform();
    if(fzoom1)
    g.setColor(Color.red);
    g.drawRect(beginX,beginY,end1X-beginX,end1Y-beginY);
    System.out.println("drawing rect");
    if(fzoom){
    wx=beginX;
    wy=beginY;
    ww=end1X-beginX;
    wh=end1Y-beginY;
    bi = bimg.getSubimage(wx,wy,ww,wh);
    System.out.println("hello 2d");
    System.out.println(wx+","+wy+","+ww+","+wh);
    Dimension d1=getSize();
    Graphics2D g2d = bi.createGraphics();
    // g2d.setBackground(getBackground());
    int w=500;
    int h=500;
    System.out.println(w+","+h);
    System.out.println("g2d"+g2d);
    System.out.println("settransform callrd");
    // zoomFactor *=1;
    g2d.translate(100.0f, 100.0f);
    g2d.scale(zoomFactor, zoomFactor);
    System.out.println("scale called"+zoomFactor);
    file://zoomFactor++;
    g.drawImage(bi,50,50,w,h,this);
    System.out.println("w,h,bi"+w+","+h+","+bi);
    file://repaint();
    image1=true;
    file://zoomFactor++;
    file://fzoom=false;
    g2.dispose();
    }catch(Exception e)
    System.out.println("exception"+e);
    class IMS2DFrameMouseAdapter extends MouseAdapter implements MouseMotionListener{
    int mx;
    int my;
    int endx,endy;
    int X;
    int Y;
    Point point;
    public void mouseClicked( MouseEvent event ) {
    if(select)
    Dimension d = getSize();
    AffineTransform at = new AffineTransform();
    at.setToIdentity();
    at.translate(((d.width/2) - ((zoomx*maxx + zoomx*minx)/2))
    + zoomx*scrollx,
    (((d.height-DRG_YPOS)/2))+scrolly);
    at.scale(zoomx,zoomy);
    Point src = new Point(event.getX(),event.getY() - DRG_YPOS);
    Point pt = new Point();
    try{
    at.inverseTransform( src, pt);
    catch( NoninvertibleTransformException e)
    e.printStackTrace();
    pt.setLocation(pt.getX(), (maxy - (maxy- miny)/2 - pt.getY()));
    hitObject(pt);
    /*if(fence_zoom){
    fzoom2=true;
    }else
    fzoom2=false;
    public void mousePressed( MouseEvent event ) {
    if(fence_zoom)
    System.out.println("mouse Pressed");
    beginX = event.getX();
    beginY = event.getY();
    repaint();
    public void mouseReleased( MouseEvent event ) {
    end1X = event.getX();
    end1Y = event.getY();
    System.out.println("ENDX---"+endx);
    System.out.println("endy-----"+endy);
    if(translation)
    translatedrawing(endx - startx,endy - starty);
    if(fence_zoom){
    System.out.println("mouse released");
    file://end1X = event.getX();
    // end1Y = event.getY();
    fzoom=true;
    repaint(); file://updateSize(event);
    else{
    fzoom=false;
    public void mouseDragged(MouseEvent event) {
    if(fence_zoom){
    end1X = event.getX();
    end1Y = event.getY();
    fzoom1=true;
    System.out.println("mouse dragged");
    repaint();
    else {
    fzoom1=false;
    public void mouseMoved(MouseEvent event)
    thanks
    sangeeta
    "Gustavo Henrique Soares de Oliveira Lyrio" wrote:
    I think you are using the wrong drawimage method. If you have the selection retangle coordinates, you will need a method that draw this selection in a new retangle selection (your canvas or panel)
    Where goes my paintMethod:
    protected void paintComponent(Graphics g)
    g.drawImage(image, START_WINDOW_X, START_WINDOW_Y, WINDOW_X, WINDOW_Y, px1, py1, px2, py2, this);
    Take a look in the drawimage methods in the java web page. I think it will help.
    []`s
    Gustavo
    ----- Original Message -----
    From: sangeetagarg
    To: Gustavo Henrique Soares de Oliveira Lyrio
    Sent: Thursday, August 16, 2001 9:14 AM
    Subject: Re: Re: re:zoom in 2d
    i'm sending u the paint method.but still i'm not able to select the desired area .it zooms the while image.tell me if there is any error in the code.
    file://if(fence_zoom)
    if(fzoom1 )
    if (currentRect != null) {
    System.out.println("hello");
    g.setColor(Color.white);
    g.drawRect(rectToDraw.x, rectToDraw.y,
    rectToDraw.width - 1, rectToDraw.height - 1);
    System.out.println("drawing rectangle");
    fzoom1=false;
    if(fzoom)
    bi = bimg.getSubimage(rectToDraw.x, rectToDraw.y, rectToDraw.width, rectToDraw.height);
    System.out.println(rectToDraw.x+","+ rectToDraw.y+","+rectToDraw.width+","+ rectToDraw.height);
    Graphics2D g2d = bi.createGraphics();
    g2d.setBackground(getBackground());
    g2d.clearRect(0, 0,0,0 );
    file://ZoomIn();
    file://t= g2d.getTransform();
    file://g2d.setTransform(t);
    System.out.println("settransform callrd");
    // zoomFactor *=1;
    g2d.translate(100.0f, 0.0f);
    g2d.scale(zoomx, zoomy);
    System.out.println("scale called"+zoomFactor);
    zoomx += ZOOMSTEP;
    zoomy += ZOOMSTEP;
    file://zoomFactor+=zoomFactorupdate;
    g.drawImage(bi, 0, 0, this);
    // g.drawImage(bi,10,10,this);
    repaint();
    fzoom=false;
    thanks
    sangeeta

    Display first your image on an invisible label. Once displayed you can get the size of the image and you can redimension it as you want.
    Bye Alessio

  • Ai 5.5 what is brown select rectangle appearing when I click select tool?

    When I click the select tool, a brown selection type of rectangle appears in a particular area of the illustration, even though I have not clicked on the illustration yet. I assume it is some type of warning indication, but don't know what. P.S. It is draggable and scaleable - I can move it off the artboard. An example:
    Any suggestions would be appreciated.
    Thanks

    I went back, opened the ai file again. Brown rectangle was still there at open time, when I clicked the select tool, but after I selected some different layers, and then deselected, the brown rectangle went away, so I guess it was just an artifact of some sort.
    I had been selecting for stray points, brush strokes, etc. shortly before.

  • Strange border around selected icons/windows

    My son, who has a bad habit of downloading all sorts of, um, stuff from the internet, has a strange thing going on. In his account only, whatever window or icon he clicks on gets an annoying black border around it.
    I can't find anything in system prefs that looks like it would address this. Can I just trash the system prefs file from his account library, or is there another possible fix for this?
    Thanks,
    Steve

    That's it! Thanks so much!
    He didn't intentionally turn this on, though. Is there some keyboard shortcut or something he may have done by accident?
    Steve

  • The border of selected objects

    You know the thin border that appears around an object when it is clicked (a button for eg). I want to make it dissappear. Searching a method through the documentation can really give you a headache.

    AbstractButton b = new JButton("Click Me");
         b.setBorderPainted(false);
         b.setFocusPainted(false);

  • Cell Border (Properly selected, finished) won't stay

    Certain cells in my document refuse to be bordered. It's not that I'm not finishing it and deselecting before I've got the color or weight properly set, it's that the inspector itself won't let me change. I move from "none" to any line type, but it flips immediately back to "none". This is also happening when I try to set the color- it reverts straight back to gray and won't even let me move the slider. I just get flicker on the color wheel.
    Anybody got an idea?

    Never got this behavior and have no idea about it.
    May you send a sample file to my mailbox ?
    Click my blue name to get my address.
    Yvan KOENIG (VALLAURIS, France) lundi 15 novembre 2010 09:34:04

  • Select Modify Border always feathers

    Hi All,
    Apologies if this has already been discussed somewhere previously, but I'm getting very frustrated that I can't seem to easily accomplish what should be a very simple task:
    I am using CTRL+A to "Select All" and then trying to contract the selection by X pixels. Apparently my only option after a Select All command is to use the "Border" command, but this always seems to feather the selection, no matter what I do. I know there are some "workarounds" to get the selection I want, but seriously, this is so dead simple of a task I'm going bonkers here.
    Is it just me or did this used to be a lot easier in earlier versions of PS? Seems to me that in CS5 Adobe is trying to get "fancy" with their UI and making things a lot harder than they need to be.
    Could someone from Adobe let me/us know why the UI is making it impossible for me to do a simple Select > Modify > Contract command (following a Select All)? I distinctly remember being able to do this without hassle in every other version of PS I've ever worked with.
    Your in Frustration,
    Funkmasta

    Howdy.
    Is it just me or did this used to be a lot easier in earlier versions of PS?
    It's not just you. It's pretty easy in CS3.
    The screenshot is after Ctrl+A has been applied. The Contract command is still active. And the selection will not be feathered.
    According to MTSTUNER's link (thank you), CS3 is the only version that will do this. Sometimes it's good to be behind the curve.
    Maybe the referenced script will fix you up. I don't know anything about scripts, but I do know a little about actions. So out of curiousity, I hacked together an action which should work in CS5. It's based on expanding the canvas, contracting the selection, then cropping back to the original size. It looks like a long way to go to accomplish something so simple, but Ps does it all in the blink of an eye.
    1. Merge Visible (Ctl+Alt+Shft).  This creates a proxy for the original image size after the canvas is enlarged. This layer will be deleted at the end of the action.
    2. Canvas Size. I set it to 105% in both axis. The percentage doesn't matter, as long as it's more than 100. The point it to get the canvas border away from the proxy border.
    3. Set Selection. Ctl +Click on the thumbnail on the proxy layer. This will select the perimeter of the proxy layer, which is the same as the original canvas.
    4. Contract. Menu>Select>Modify>Contract. Enter the number of pixels. This can be changed later. As you can see in the screen shot above, I have made this a conditional action. It will stop here for you to approve or change the settings. When you hit enter, the action continues.
    5. Layer Via Copy. This layer preserves the contracted selection. It's really being used as a channel. This layer will also be deleted at the end of the action.
    6. Set Selection. Ctl+Click on the thumbnail for the Merge Visible layer from step 1.
    7. Crop. Menu>Image>Crop. The image is now the original size.
    8. Set Selection. Ctl+Click on the layer thumbnail created in step 5. You should now be looking at the contracted selection. We're done, except for a little housecleaning below.
    9. Delete. Delete the top layer, which should be the contracted channel. (This doesn't affect the selection.)
    10. Delete. Delete the top layer, which should be the Stamp Visible layer. Now we're back where we started, but we have a contracted selection.
    Stop Recording.
    It may look ridiculous on paper, but it works like a charm, so far as I've tested it. And the beauty of actions is you only have to make them once. No matter how much trouble they are.
    Once the action is made, it's quick and easy to use. Just click on the action button.
    The contract pixel dialog box appears.
    OK or change and OK, and you're done. The selection appears at the desired location, and is not feathered. In practice, the only downside is you get a few extra history states.
    You get where you're going, and you get there quick. So quick no one will notice you got there via Paris, London, and El Paso.
    I'm not 100% sure this will work in CS5, as I've never laid eyes on it, but the issue seems to be that when the selection touches the canvas border, Contract Selection is not available. Nowhere in the action does a selection touch the canvas border, so it should work the same as it does in my CS3. If you're interested in testing it, I can send you the Droplet, or you can create it from scratch using the instructions above.
    Anyway, that's all I got, and it could all be wrong.
    Peace,
    Lee

  • How do you eliminate back the border width from a given selection?

    Perhaps a stupid question, I dont know, but whenever I make a selection and then go to selection>modify>border to select any given width from 1 to 200px, how do you eliminate back any created width? the value 0 is not accepted, only from 1 up. Does this mean I have to deselect everything and start the whole selection back over? that would take a lot of time if my selection was a little complex and took me some time perform it!
    I tried "googleing" that answer but couldnt find anyting so I am coming for help here.

    It's unclear to me what you mean by "Eliminate back".  Do you want just the border to extend inside the original selection?
    Are you recording an action?
    Keep in mind you can save any number of selections under different names via Select - Save Selection, then combine them with the Load Selection function using features like "Overlap" and "Subtract From Selection".
    -Noel

Maybe you are looking for

  • How to integrate BlazeDs in RAD 7.5.0

    Hi, I have existing application in RAD 7.5, My app is in JSF framework and backend Oracle. Our new tech requirement is FLEX from JSF using as much as possible server side code. Currently trying to come up with some POC. On the very begining , trying

  • How To Create Printer Spreads PDF for Saddle Stitch Booklet?

    I need to output a PDF in printer spread format for a saddle stitch booklet from InDesign. After installing CS5 Master Suite on my upgraded Mac OS X 10.6.2 MacBook I can't figure out how to do that though. Has anyone figured this out? Thanks, DAN

  • COND_A Idoc - Data determination

    Hi, We are sending down conditions using cond_a idocs to POS. We have a condition type that we are using data determination(http://help.sap.com/saphelp_erp60_sp/helpdata/en/06/629ee2fb9c11d199ee0000e8a5bd28/frameset.htm) . The Data key in this scenar

  • Cancel or delete partially downloaded rental movie on iPad... how?

    I have a partially downloaded rental movie on my iPad in iTunes which I would like to cancel. I have searched high and low, and it seems the only way I can do this is to connect to a computer which is not possible for me at this time. I was wondering

  • Calendar unable add event

    I used to add event to I Port Touch OK. But after installing IOS5, I cannot add. I can put the event in. But when I press DONE button, no effect. I cannot go to other Calendar sceen either. Is it due to IOS5 or other isse?