Dragging images ???

completely new to this. created simple template using tables.
2 rows 2 columns. top right table will have 2 images in it. one (on
top) will be my website banner. the second which is a smaller
banner will fit underneath first image in the same table. no probs
so far as i managed to get them both in the same table the right
way around one on top of the other. but the bottom one sits to the
left handside of the top one and when i try to align it the only
things that seem to work are align left and align right. i want it
in the middle but trying to drag it does nothing apart from
switching it on top of the larger image above !! cant find anything
in the help files relating to this.
anyone gracious enough to help me goes straight to the top of
my chrimbo card list : )
also as this website design lark is such a minefield for a
simpleton like myself any ideas which is the best site for VERY
BASIC tutorials that even your local ned/chav/blockhead could
understand ?
many thanks

Madharry8 wrote:
> completely new to this. created simple template using
tables. 2 rows 2 columns.
> top right table will have 2 images in it. one (on top)
will be my website
> banner. the second which is a smaller banner will fit
underneath first image in
> the same table. no probs so far as i managed to get them
both in the same
> table the right way around one on top of the other. but
the bottom one sits to
> the left handside of the top one and when i try to align
it the only things
> that seem to work are align left and align right. i want
it in the middle but
> trying to drag it does nothing apart from switching it
on top of the larger
> image above !! cant find anything in the help files
relating to this.
> anyone gracious enough to help me goes straight to the
top of my chrimbo card
> list : )
Put your cursor in the top right cell (which you call a
table) Go to
windows>properties and select 'Center' from the 'Horz'
drop menu
> also as this website design lark is such a minefield for
a simpleton like
> myself any ideas which is the best site for VERY BASIC
tutorials that even your
> local ned/chav/blockhead could understand ?
Sorry I don't know that one, I just picked up most of what I
know from
hanging around forums a lot and experimenting.
You need a good book on html and css. Both are critical to
your progress
as already using the technique that I have given you is
outdated BUT the
most simplest for you to understand at this moment in time.

Similar Messages

  • How to drag image in left panel then drop into right panel??

    Dear friends.
    I have following code, it is runnable, just add two jpg image files is ok, to run.
    I tried few days to drag image from left panel then drop into right panel or vice versa, but not success, can any GUI guru help??
    Thanks.
    Sunny
    [1]. main code/calling code:
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ImagePanelCall extends JComponent {
         public  JSplitPane ImagePanelCall() {
              setPreferredSize(new Dimension(1200,300));
              JSplitPane          sp = new JSplitPane();
              sp.setPreferredSize(new Dimension(1200,600));
              sp.setOrientation(JSplitPane.HORIZONTAL_SPLIT);
              add(sp);
              ImagePanel     ip = new ImagePanel();
              ImagePanel     ip1 = new ImagePanel();
              ip.setPreferredSize(new Dimension(600,300));
              ip1.setPreferredSize(new Dimension(600,300));
              sp.setLeftComponent(ip);// add left part
              sp.setRightComponent(ip1);// add right part
              sp.setVisible(true);
              return sp;
         public static void main(String[] args) {
              JFrame frame = new JFrame("Test transformable images");
              ImagePanelCall  ic = new ImagePanelCall();
              frame.setPreferredSize(new Dimension(1200,600));
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.getContentPane().add(ic.ImagePanelCall(), BorderLayout.CENTER);
              frame.pack();
              frame.setVisible(true);
    }[2]. code 2
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ImagePanel extends JComponent {
         private static final Cursor DEFAULT_CURSOR = new Cursor(Cursor.DEFAULT_CURSOR);
         private static final Cursor MOVE_CURSOR = new Cursor(Cursor.MOVE_CURSOR);
         private static final Cursor VERTICAL_RESIZE_CURSOR = new Cursor(Cursor.N_RESIZE_CURSOR);
         private static final Cursor HORIZONTAL_RESIZE_CURSOR = new Cursor(Cursor.W_RESIZE_CURSOR);
         private static final Cursor NW_SE_RESIZE_CURSOR = new Cursor(Cursor.NW_RESIZE_CURSOR);
         private static final Cursor NE_SW_RESIZE_CURSOR = new Cursor(Cursor.NE_RESIZE_CURSOR);
         public Vector images;
         * Create an ImagePanel with two images in.
         * A MouseHandler instance is added as mouse listener and mouse motion listener.
         public ImagePanel() {
              images = new Vector();
              images.add(new TransformableImage("swing/dnd/Bird.gif"));
              images.add(new TransformableImage("swing/dnd/Cat.gif"));
              setPreferredSize(new Dimension(600,600));
              MouseHandler mh = new MouseHandler();
              addMouseListener(mh);
              addMouseMotionListener(mh);
         * Simply paint all the images contained in the Vector images, calling their method draw(Graphics2D, ImageObserver).
         public void paintComponent(Graphics g) {
              Graphics2D g2D = (Graphics2D)g;
              for (int i = images.size()-1; i>=0; i--) {     
                   ((TransformableImage)images.get(i)).draw(g2D, this);
         * Inner class defining the behavior of the mouse.
         final class MouseHandler extends MouseInputAdapter {
              private TransformableImage draggedImage;
              private int transformation;
              private int dx, dy;
              public void mouseMoved(MouseEvent e) {
                   Point p = e.getPoint();
                   TransformableImage image = getImageAt(p);
                   if (image != null) {
                        transformation = image.getTransformation(p);
                        setConvenientCursor(transformation);
                   else {
                        setConvenientCursor(-1);
              public void mousePressed(MouseEvent e) {
                   Point p = e.getPoint();
                   draggedImage = getImageAt(p);
                   if (draggedImage!=null) {
                        dx = p.x-draggedImage.x;
                        dy = p.y-draggedImage.y;
              public void mouseDragged(MouseEvent e) {
                   if (draggedImage==null) {
                        return;
                   Point p = e.getPoint();
                   repaint(draggedImage.x,draggedImage.y,draggedImage.width+1,draggedImage.height+1);
                   draggedImage.transform(p, transformation,dx,dy);
                   repaint(draggedImage.x,draggedImage.y,draggedImage.width+1,draggedImage.height+1);
              public void mouseReleased(MouseEvent e) {
                   Point p = e.getPoint();
                   draggedImage = null;
         * Utility method used to get the image located at a Point p.
         * Returns null if there is no image at this point.
         private final TransformableImage getImageAt(Point p) {
              TransformableImage image = null;
              for (int i = 0, n = images.size(); i<n; i++) {     
                   image = (TransformableImage)images.get(i);
                   if (image.contains(p)) {
                        return(image);
              return(null);
         * Sets the convenient cursor according the the transformation (i.e. the position of the mouse over the image).
         private final void setConvenientCursor(int transfo) {
              Cursor currentCursor = getCursor();
              Cursor newCursor = null;
              switch (transfo) {
                   case TransformableImage.MOVE : newCursor = MOVE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_TOP : newCursor = VERTICAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_BOTTOM : newCursor = VERTICAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_LEFT : newCursor = HORIZONTAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_RIGHT : newCursor = HORIZONTAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_TOP_LEFT_CORNER : newCursor = NW_SE_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_TOP_RIGHT_CORNER : newCursor = NE_SW_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_BOTTOM_LEFT_CORNER : newCursor = NE_SW_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_BOTTOM_RIGHT_CORNER : newCursor = NW_SE_RESIZE_CURSOR;
                        break;
                   default : newCursor = DEFAULT_CURSOR;
              if (newCursor != null && currentCursor != newCursor) {
                   setCursor(newCursor);
         public static void main(String[] args) {
              JFrame frame = new JFrame("Test transformable images");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.getContentPane().add(new ImagePanel(), BorderLayout.CENTER);
              frame.pack();
              frame.setVisible(true);
    }[3]. code 3
    import java.awt.*;
    import javax.swing.*;
    import java.awt.image.*;
    public final class TransformableImage extends Rectangle {
         public static final int MOVE = 0;
         public static final int RESIZE_TOP = 10;
         public static final int RESIZE_BOTTOM = 20;
         public static final int RESIZE_RIGHT = 1;
         public static final int RESIZE_LEFT = 2;
         public static final int RESIZE_TOP_RIGHT_CORNER = 11;
         public static final int RESIZE_TOP_LEFT_CORNER = 12;
         public static final int RESIZE_BOTTOM_RIGHT_CORNER = 21;
         public static final int RESIZE_BOTTOM_LEFT_CORNER = 22;
         public static final int BORDER_THICKNESS = 5;
         public static final int MIN_THICKNESS = BORDER_THICKNESS*2;
         private static final Color borderColor = Color.black;
         private Image image;
         * Create an TransformableImage from the image file filename.
         * The TransformableImage bounds (inherited from the class Rectangle) are setted to the corresponding values.
         public TransformableImage(String filename) {
              ImageIcon ic = new ImageIcon(filename);
              image = ic.getImage();
              setBounds(0,0,ic.getIconWidth(), ic.getIconHeight());
         * Draw the image rescaled to fit the bounds.
         * A black rectangle is drawn around the image.
         public final void draw(Graphics2D g, ImageObserver observer) {
              Color oldColor = g.getColor();
              g.setColor(borderColor);
              g.drawImage(image, x, y, width, height, observer);
              g.draw(this);
              g.setColor(oldColor);
         * Return an int corresponding to the transformation available according to the mouse location on the image.
         * If the point p is in the border, with a thickness of BORDER_THICKNESS, around the image, the corresponding
         * transformation is returned (RESIZE_TOP, ..., RESIZE_BOTTOM_LEFT_CORNER).
         * If the point p is located in the center of the image (i.e. out of the border), the MOVE transformation is returned.
         * We allways suppose that p is contained in the image bounds.
         public final int getTransformation(Point p) {
              int px = p.x;
              int py = p.y;
              int transformation = 0;
              if (py<(y+BORDER_THICKNESS)) {
                   transformation += RESIZE_TOP;
              else
              if (py>(y+height-BORDER_THICKNESS-1)) {
                   transformation += RESIZE_BOTTOM;
              if (px<(x+BORDER_THICKNESS)) {
                   transformation += RESIZE_LEFT;
              else
              if (px>(x+width-BORDER_THICKNESS-1)) {
                   transformation += RESIZE_RIGHT;
              return(transformation);
         * Move the left side of the image, verifying that the width is > to the MIN_THICKNESS.
         public final void moveX1(int px) {
              int x1 = x+width;
              if (px>x1-MIN_THICKNESS) {
                   x = x1-MIN_THICKNESS;
                   width = MIN_THICKNESS;
              else {
                   width += (x-px);
                   x = px;               
         * Move the right side of the image, verifying that the width is > to the MIN_THICKNESS.
         public final void moveX2(int px) {
              width = px-x;
              if (width<MIN_THICKNESS) {
                   width = MIN_THICKNESS;
         * Move the top side of the image, verifying that the height is > to the MIN_THICKNESS.
         public final void moveY1(int py) {
              int y1 = y+height;
              if (py>y1-MIN_THICKNESS) {
                   y = y1-MIN_THICKNESS;
                   height = MIN_THICKNESS;
              else {
                   height += (y-py);
                   y = py;               
         * Move the bottom side of the image, verifying that the height is > to the MIN_THICKNESS.
         public final void moveY2(int py) {
              height = py-y;
              if (height<MIN_THICKNESS) {
                   height = MIN_THICKNESS;
         * Apply a given transformation with the given Point to the image.
         * The shift values dx and dy are needed for move tho locate the image at the same relative position from the cursor (p).
         public final void transform(Point p, int transformationType, int dx, int dy) {
              int px = p.x;
              int py = p.y;
              switch (transformationType) {
                   case MOVE : x = px-dx; y = py-dy;
                        break;
                   case RESIZE_TOP : moveY1(py);
                        break;
                   case RESIZE_BOTTOM : moveY2(py);
                        break;
                   case RESIZE_LEFT : moveX1(px);
                        break;
                   case RESIZE_RIGHT : moveX2(px);
                        break;
                   case RESIZE_TOP_LEFT_CORNER : moveX1(px);moveY1(py);
                        break;
                   case RESIZE_TOP_RIGHT_CORNER : moveX2(px);moveY1(py);
                        break;
                   case RESIZE_BOTTOM_LEFT_CORNER : moveX1(px);moveY2(py);
                        break;
                   case RESIZE_BOTTOM_RIGHT_CORNER : moveX2(px);moveY2(py);
                        break;
                   default :
    }

    I gave you a simple solution in your other posting. You never responded to the suggestion stating why the given solution wouldn't work, so it can't be that urgent.

  • Drag and Drop - Drag Image

    I'm using the Flex DragManager in an AdvancedDataGrid with
    HierarchicalData to allow the user to drag and drop tree nodes to
    re-order them. It is working fine. The problem I am having is with
    the drag image. The drag image does not always show up. It seems
    like it will appear for one drag and drop. Then if I try to drag
    another tree node I do not get the drag image there is just a line
    to show I'm dragging something.
    When I say drag image I mean the faded image of the text of
    the tree node which appears as I drag the tree node.
    I am using the following properties on the AdvancedDataGrid
    to enable drag and drop:
    dragEnabled="true" dropEnabled="true" dragMoveEnabled="true"
    Now if set dragMoveEnabled="false" then I do get a drag image
    everytime. But I need move the tree nodes around not copy them so I
    need dragMoveEnabled="true".
    Thank you

    I'm using the Flex DragManager in an AdvancedDataGrid with
    HierarchicalData to allow the user to drag and drop tree nodes to
    re-order them. It is working fine. The problem I am having is with
    the drag image. The drag image does not always show up. It seems
    like it will appear for one drag and drop. Then if I try to drag
    another tree node I do not get the drag image there is just a line
    to show I'm dragging something.
    When I say drag image I mean the faded image of the text of
    the tree node which appears as I drag the tree node.
    I am using the following properties on the AdvancedDataGrid
    to enable drag and drop:
    dragEnabled="true" dropEnabled="true" dragMoveEnabled="true"
    Now if set dragMoveEnabled="false" then I do get a drag image
    everytime. But I need move the tree nodes around not copy them so I
    need dragMoveEnabled="true".
    Thank you

  • Custom Cursor and Drag Image in 1.4 DnD

    What is the proper way to provide a custom cursor and drag image in 1.4 DnD? Say we initiate the drag on a component that supports data transfer (such as a JTree).

    Well, this is strange. My app was locking up (100% CPU) when using DND from windows Explorer.
    I noticed that another part of the same appliction was working perfictly. The difference: JFrame .vs. JDialog. I switched the offending JDialog to a JFrame and all works perfictly now!
    java version "1.4.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
    Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)
    I would like to switch back at some point, but my g.setXORMode() problem is a much bigger issue for us. (That is, once you enter the XOR mode, you can not go back!)

  • Clear system drag image

    Hi,
    When using drag and drop (in a JTree) under Solaris, a drag image appears. I would like to clear this image to display only the image I have created.
    When I run my app under Windows, there's no problem, only my image is displayed. Could somone please help me ?
    Thanks,
    Gwenaelle

    Actually, there's no drag image : what I took for a drag image was just the default drag & drop icon under Unix. Now I just need to replace it by a customized icon.

  • IPhoto '08 - can't drag images

    Unable to drag folders of images from desktop or CD into an iPhoto album. Unable to drag images from iPhoto to Desktop.

    deloresj:
    Welcome to the Apple Discussions. It might be a font problem. iPhoto relies on the Helvetica font to show the number of files selected and being dragged. Open Font Book and make sure you have the Helvetica font installed and activated. If it is, deactivated it and then reactivate it. That should jump start iPhoto's dragging capability.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Implementing drag and drop across components with drag image...

    Hey all,
    Finally got the hang of drag and drop. Not too hard, but a little time consuming. I found an article showing how to capture and drag a BufferedImage within a JTree. When you click and drag a node, it creates a BufferedImage of the node on screen and "ghosts" it a bit, which has a very appealing effect.
    However, when I try to drag this image to a JList component, it disappears. So I created the same affect in the JList component. Now you can drag the image from the tree to the list and vice versa. However, the problem is, the image does not "fly over" the borders of the two components (butted up against each other) with the mouse. The image seems to go under the borders, while the mouse floats above everything.
    What I would like to do is be able to drag the image all over the application, perhaps even the desktop in the case of a SDI application. I want to be able to see this image drag from my Java app over the Windows Explorer folder, just like how you can do that with Windows Explorer, dragging an image of the selected node into any app that supports the drop. I know we can handle the "transfer" data from explorer and vice versa, but how to be able to keep an image with the mouse?
    My best guess is somehow using the Glass pane, grabbing a ref to its BufferedImage (if that is even what is there), and drawing the dragged item in that pane. But, then, how will the image move over the desktop outside of the app, where a glass pane is not?
    Is there a way to draw on top of anything, anywhere, but still be able to redraw the background as the image moves with the mouse? There are times where the image may be big, so I don't want to have to capture the underlying screen as an image covering the size of the drag image to restore it as the drag image moves around.
    Thank you.

    We know cursors support some degree of transparence because they have shapes other than blocks.
    I've done some playing around with
    Toolkit.getDefaultToolkit().createCustomCursor(....);The sad news is, it seems that as soon as a pixel's alpha value is greater than 0, it automatically becomes 100% opaque.
    The best you can do, is to take your image, and divide it into a pixel-checkerboard, and set the alpha value of alternating pixels to 0.
    e.g.
    BufferedImage i = new BufferedImage(32, 32, BufferedImage.TYPE_INT_ARGB);
            int[] data = ((DataBufferInt)i.getRaster().getDataBuffer()).getData();
            boolean on = true;
            for (int z=0; z<data.length; z++)
                if (on)
                    data[z] = 0xffffffff;
                else
                    data[z] = 0x00000000;
                on = !on;
                if (z%32==0) on = !on;
            Cursor hazyWhite = Toolkit.getDefaultToolkit().createCustomCursor(i, new Point(0,0), "hw");

  • My drag images disappear when they are dropped on a correct drop target during the drag and drop interaction.

    What am I missing. The opacity is at 100%. The drop target is a highlighted box from objects. I am using Captivate 8.

    Hi there,
    You might want to make sure your Depth setting is not set to Back instead of Front on your drop target(s).
    The Depth setting is accessed via the Drag and Drop window/panel under Format setting while you have your drop target selected.
    If your Depth setting is set to Back, especially if your opacity is set to 100% on your highlight box/drop target, your drag image would go behind your drop target giving the effect of disappearing behind your highlight box - especially if the drop target is larger than the drag image.

  • Can we able to drag images directly

    can we able to drag images directly in a pane or we have to put it on some label like components
    will all the mouse events will work when we can able to drag images directly, else when we drag from
    putting it on labels , will all the mouse events will work , which will be more overhead draging tthe labels
    or draging our own created jcomponents

    PNG is already a compressed format and most likely you already have achieved the maximum possible result. Unlike with JPEG, there are no compression levels. If you want it smaller, you have to reduce the dimensions or the amount of colors, but that's about it.
    Mylenium

  • Safari 3.2: Can't drag images to desktop!?

    Hi there.
    I just downloaded Safari 3.2 - and I can no longer drag images to my desktop. When I try to do this, the image converts to a weblog or pagesource ( instead of a .gif, jpeg, .png - like it did with the previous version)
    Anyone else having this problem? And how can I fix this?
    Thank you

    sorry for my post. I was able to solve it. I made iPhoto find the library again. I put my whole iPhoto library on the desktop and then I opened iPhoto and made it find the library on the desktop. And then it worked! And after that I put my iPhoto library back to where it should be, opened up iPhoto and made it find the library again. And now I can drag pictures to the desktop again
    hmm... I wrote kinda crappy... well I hope you understand anyway...

  • Is there a way to prevent dragging images to a desktop?

    I am building a MUSE website for an "artist" client. He has a large inventory of over 400 paintings. He is concerned about any viewer being able to drag his art to their desktop. Is there a way to lock down that function and prohibit viewers from dragging images off their browser to their computer?
    Thanks!

    Hi,
    Please refer to the following link Re: How do I protect images from being downloaded in Muse?
    Regards,
    Aish

  • IWeb Newbie Question: Removing "Drag Image Here" Placeholder

    Hi,
    I'm new to iWeb and creating my website for the first time. I've added an audio file to one of my pages, but I'm not sure how to remove the "Drag Image Here" placeholder from that file in the work area. I realize the placeholder doesn't show up on the actual website if I don't put any image in there, but the placeholder still clutters up the workspace where I'm designing the page.
    Is there any way to remove that placeholder?
    Thanks in advance for any help or advice.
    Regards,
    Keith

    just try this simple method. it will not get rid of the placeholder - but it will hide it a make your iWeb building easier:
    1. from the "forms" button choose a square
    2. make it the background color or the color where the audio is placed, using the inspector!
    3. Using the right-click or Ctrl-Left Mouse Click send the audio file to the very back.
    4. make sure that the navigation bar is still at the very front and nothing covers it - because otherwise you cannot use it!
    5. you might wanna check here for simple tutorials to help you:
    http://karreth.com/iweb/Home.html (video tutorials)
    http://web.mac.com/will.englefield/iWeb/WillG4PB/SiteTab.html (dealing with the inspector)
    http://web.mac.com/varkgirl/iWeb/iWebFAQ/FAQ%20Home/FAQ%20Home.html (FAQ)
    max

  • Hand tool won't drag image - PSE 11

    Windows 7 - 4 gig RAM
    I use expert mode
    hand tool is selected, but it will not drag image. I can vertical scroll with mouse wheel.
    I cannot select scroll bar handles,but I can scroll by clicking blank agacent space.
    I have reset preferences to defaults but no change.

    Try a reset. Click in the tools pallet and select your hand tool, then go to the Tool Options bar at the bottom of the workspace. Click on the dropdown list to the right and choose Reset Tool.

  • Dragged image source in dragdropHandler

    1) i have to drag and drop images from tile list to
    canvas(copy)
    2) my images are coming from database
    3) in drag drop function how to access dragged image
    4) here is the code

    1) i have to drag and drop images from tile list to
    canvas(copy)
    2) my images are coming from database
    3) in drag drop function how to access dragged image
    4) here is the code

  • InDesign CC - User not able to drag images into.

    ENG:
    I can start the software only with administrative privileges;
    If you run it as a local user of the machine, which is a domain user set as administrator of the machine, it crashes: freeze of the main windows with no chance of closure; only from task manager i can close it.
    But, if i run it as admin (from the local account, using the properties "run as administrator" of the executable file), the software starts successfully but there is another thing that does not work: dragging images. I can only select if from a menu "Insert". If i try to drag the image from desktop to a new Indesign doc, i'm not enabled to (icon of ban).
    All these things do not occur if I log on windows with the user "administrator".
    Scenario:
    Windows 7 SP1;
    PC is part of a windows domain;
    User Domain set as administrator of the Pc.
    ITA:
    E' possibile avviare l'esecuzione del software Indesign solo impostando sul file eseguibile l'esecuzione come administrator. Se questa opzione non viene impostata, il software va in crash: si blocca la schermata principale senza possibilità di terminare l'applicazione se non tramite task manager.
    Inoltre, eseguendo InDesign con privilegi amministrativi, il che comporta inizialmente un corretto caricamento della schermata principale, non è possibile trascinare file di immagine all'interno dell'applicativo; solo selezionando da menù è possibile inserire l'immagine che si vuole utilizzare.
    L'utente di dominio che esegue il login sul terminale è impostato come administrator locale; non ci dovrebbero essere queste limitazioni.
    Se il login viene effettuato proprio con l'utente administrator, il software non presenta queste anomalie.
    Scenario:
    Windows 7 SP1
    Pc facente parte di un dominio windows;
    Utente del dominio che esegue il software impostato come amministratore del Pc locale.

    Hi Dev,
    I tried once again and faced the same issue.
    This is what I did:
    1. ./startdemo.sh all
    2. /designer.sh
    3.In the ODI login console selected the Login 'Getting Started – ETL Project.' Clicked Ok. Designer Starts
    4. Show View ->Projects Projects Tab Opens
    5. Demo->Sales Administration ->Interfaces . Right-click on the Interfaces node and choose Insert Interface.
    6. Interface ->Definition Tab Name the Interfaces as 'Pop. Trg_City'
    7.Click Diagram
    8.windows->show View->Models Models Tab Opens
    9. In the Models Tab . select Sales Administration -HSQL ->TRG_CITY Draged and Placed it on the Interfaces Diagram Target datastore
    Nothing happens then . TRG_CITY doesnt Come onto the Interface Diagram Tab.
    ODI Version :10.1.3.5.3
    Please help me in this Issue.
    Thanks,
    Ramesh

  • InDesign CC 2014 very slow performance when dragging images and changing text

    InDesign CC 2014 very slow performance when dragging images and changing text.
    Running on 2010 Macpro 2.4GHz. 8GB RAM. Any solutions? I've read through many forums on this and tried several fixes.

    Have exact same issue on  my Windows 7 machine. Resetting preferences is a workaround.
    So I start InDesign whilst holding down these keys.
    Ctrl + Alt + Shift (Windows) or Cmd + Ctrl + Opt + Shift (Mac)
    Whilst inDesign is usable again with this fix- I have to do it every time so it trashes all my preferences so NOT GOOD long term fix. Otherwise InDesign freezes and can only be stopped by forcing a quit.
    I have manually deleted the preference files and I have created a brand new admin account - but still no luck - will be onto support tomorrow

Maybe you are looking for

  • Desktop app hangs on windows 7

    My desktop CC app just hangs when I click on it.  Two days ago I was able to download and install Photoshop and Dreamweaver but I have not been able to download or extract Adobe Pro.  I really need Adobe Pro for some class work that will be due this

  • Restricted Special characters in KM Resource name

    Hi, While creating resources in KM, it is not allowing some special characters (ex: '?' , ':') in name. How do we know what are all the restricted special characters in KM? Please let me know. Thanks

  • How to zoom in and out an image??

    like in a geospatial application, one may need to enlarge or shrink a map. 3x!!!

  • Long delay changing video metadata

    I run iTunes off a G4 server so that members of the house can access the same music library without duplications. Whenever I change metadata on music tracks, it happens pretty much instantly. But when I change this info on videos, it brings up a prog

  • Error deleting registered schema

    Hello all, I have registered a Schema in oracle through PL/SQL with the following script created by Console Management Client: DECLARE xclob CLOB; BEGIN dbms_lob.createtemporary(xclob, FALSE,dbms_lob.SESSION); ? := xclob; end; BEGIN DBMS_XMLSCHEMA.RE