Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default Relocating Images

    Hello,

    I'm trying to put a picture in the top left corner, and then have a popup form
    activate. However, after the popup activates, the picture relocates by itself
    to the bottom of the screen, even though I put otherwise. Here is the function
    that calls the popup:

    Does anyone know how to keep the image where it was? (When ever I click, I can
    see the image tried to move back, but for some reason, it ends up in the bottom)

    Thanx in advance!

    public function reportClick(event:MouseEvent):void
    {
    var helpWindow:IFlexDisplayObject =
    PopUpManager.createPopUp(this, MyLoginForm, false);

    image.x = 0;
    image.y = -30;
    }

    andres625 Guest

  2. Similar Questions and Discussions

    1. Extension: Dynamic Images/Advance Random Images
      Hi there, I have downloaded 2 extensions: Dynamic Images or/and Advanced Random Images (kaosweaver.com); it seems both are the same and I have...
    2. Creating Quick Vector Images from Raster images
      Hi ! I am aware of the conventional methods to create vector images from raster images, i.e. drawing the lines individually, then adding...
    3. Acrobat freezes on 'Relocating files'
      Working on Windows 2000. Creating ps file from Pagemaker 6.52 and dropping it into a wathced folder for Distiller 5. Distiller runs through all the...
    4. Relocating VXFS intent log(Journal)?
      My environment is experiencing problems with intermittent SAN failures. While we are working to resolve them, we're also considering ways to cushion...
    5. Relocating "Documents and Settings" folder
      I would like to move the entire "Documents and Settings" system folder to a different partition on the same hard drive, how do I go about doing...
  3. #2

    Default Re: Relocating Images

    When i user popups i make my popup component out of an existing control, the
    TitleWindow. Then you can set the "titleIcon" property of the popup, to have
    an icon in the upper left hand corner.

    In this case, it appears the image object belongs to the same parent object as
    the popup window. So the positioning should be:

    image.x = helpWindow.x + 0;
    image.y = helpWindow.y - 30;

    devnulled Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139