Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
andres625 #1
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
-
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... -
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... -
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... -
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... -
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... -
devnulled #2
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



Reply With Quote

