Flex :: Create Pop-up Without Disabling Background / Drag Image Without Mouseup Trigger?

Dec 29, 2010

We are currently building a new web site and have run into some issues with our programmer. I am trying to do some research to see if we can find a way for my issue to be solved so that I can let my programmer know.[code]...

View 1 Replies


Similar Posts:


Flex :: Disabling The Transparent Background Overlay On A Popup

Mar 22, 2010

I have a button in my flex app that creates a popup overtop of everything. However, it seems like flex automatically puts this transparent overlay overtop of the stage when this happens. How do I disable this? I have tried contentBackgroundAlpha="0" and backgroundAlpha="0" with no luck. anyone know what the proper syntax is for disabling this transparency? I have been searching through the docs for a 30 minutes now looking for it.

View 1 Replies

Flex :: Blurring And Disabling Background While Reconnecting Application To Backend

Sep 6, 2011

My Flex 4.5 application has many users from Russia and Ukraine with poor internet connections and Socket connections often interrupt and have to be reconnected.

Currently I set currentState to "offline" on IOErrorEvent.IO_ERROR and Event.CLOSE events and display just 1 component in that state:

<mx:ProgressBar indeterminate="true"
horizontalCenter="0" verticalCenter="0"
label="Reconnecting..." labelPlacement="center"

[Code]....

View 2 Replies

ActionScript 2.0 :: Countdown With A MouseUp Drag Function?

Jan 27, 2009

I have a drag and drop function that is working OK, but I need some codes to make the function to drop the image when the 30 second countdown is up.

Countdown:

Code:
var countd = 30;
function countdown():Void {
clearInterval(cdown);

[Code].....

View 0 Replies

ActionScript 2.0 :: How To Create Tiled Background Image

Feb 27, 2007

I am following the tutorial here: [URL]. And all that happens is I get one copy of my image in the bottom right corner, not tiled. I have copied the code exactly. How to create a tiled background image? Using Flash MX.

View 3 Replies

ActionScript 1/2 :: Drag Function Disabling Button Actions Within Movieclip

Jun 23, 2009

I'm building an interactive map and i've run into a problem. The map is draggable and I have a start and stop drag function running as well as an onEnterFrame function which restricts how far you can drag the map. The map is displayed inside of a masked area. On the map is many locations which when rolled over should pop up a little dialogue box with contact info. My problem is that it only works when i've disabled the drag functions. When the drag functions are running the buttons inside the map movie clip all stop working. How can i get around this?

[CODE]...

View 5 Replies

Flex :: Place An Image By Dragging And Placing It In The Drag Proxy Image Position

Mar 23, 2010

I found examples in adobe site only to position the object where the mouse pointer is. But i have to place the image in the position of drag proxy image.

View 1 Replies

ActionScript 3.0 :: Create A Background Like The Attached Image Full Screen?

Sep 9, 2009

I am trying to create a background like the attached image (full screen).I don't like these colors, but do like the effect.

View 9 Replies

Actionscript 3 :: Avoid Image To Get Stretched When Used As Background Image, In Flex

Dec 12, 2009

I am developing a website in flex. And in that, i am trying to set the background image of my application. like this: parentApplication.setStyle("backgroundImage", data.image_src);

From a different location.

My issue is that, the images that i have are small and hence they are being stretched when used as background images. I want to avoid that from happening. How can i do it?

View 1 Replies

ActionScript 3.0 :: Volume Slider - Mouse Drag Without Taking Precedence Over The Mask And Disabling That

May 4, 2011

I created a graphic to simulate a volume slider. Its working, but i want a movieclip graphic (vol_switch) to follow the mask. It is only following it after i release the mouse. i cannot figure out how to have it follow on the mouse drag without taking precedence over the mask and disabling that. I tried the code in bold, but not working.

[Code]...

View 3 Replies

Flex :: MouseUp And MouseMove Outside Of The Application?

Jun 6, 2011

I'm trying to implement a very simple way to select a subsection of the screen via mouse. The workflow is the standard one for many apps - click on starting point, move mouse and transparent rectangle updates between first point clicked and current position of the mouse. The basic code looks something like this (minus the graphics, which is simple)

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[Code].....

This breaks down when the user moves the mouse outside of the app. Not only _currentPoint stops updating, but also if you let go the mouse button outside of the app you miss the mouseUp event, i.e. when you move the mouse back on the app _currentPoint starts updating again as if you had never let go of the mouse button. Was wondering if there is a way in Flex (for web apps) to get around this by listening to mouseMove and mouseUp events when outside of the app (if that's possible)

View 3 Replies

Flex :: 3 DateChooser Control - Date Selection Changes On MouseUp Event

Dec 13, 2010

If you have a DateChooser control next to a text control and you left click your mouse to select the text then continue holding down the mouse button and letting the mouse button up while over the datechooser control, the selectedDate value changes to the date you are hovering over. I have users that are having issues with this and it happens unintentionally because of the proximity of the two controls. I cannot find a way to stop this effect. Basically I would want the selectedDate to only change if the user actually clicks the calendar control ie. mouseDown or click. Calling functions in those events do not change this behavior. I need a way to disable the control from changing the date on the mouseUpEvent (I think).

View 1 Replies

Flex :: Create Drag-able Panels In Flex Like Its In Netvibes?

Nov 11, 2010

I want to create a news application for my website.how should i create drag-able panels/canvas inside another panel/canvas.What i exactly intend to do can be seen on netvibes.com . The website has different panels of every news group, and this panel could be moved from one place to other, but in a well defined manner. And the other panel take over the place of dragged panel.Is there any component in flex

View 2 Replies

Flex :: Adding MouseOver/mouseDown/mouseUp/etc. To Custom MXML Component?

Aug 21, 2011

I'm new to Flex and am porting a pure Flash/AS3 app to Flex 4.5. I've created a custom MXML component based on BorderContainer

<?xml version="1.0" encoding="utf-8"?>
<s:BorderContainer
xmlns:fx="http://ns.adobe.com/mxml/2009" [code]...........

and it would work well, but here in Flex 4.5 I don't know how to do this.Also I've noticed that there is a dropShadowVisible="true" attribute, but not sure if/how it can be used for my purposes.And I'm not sure if scaling up/down a custom component is allowed in flex or I probably should use "Flex Effects" (but how?) and also set disableLayout="true"?

View 1 Replies

Flex :: How To Set Background Image For App

Jul 9, 2010

I'm using Flash Builder 4 to create an application. I need to set an background image for the app. I've pulled through the data from XML. I am using an <mx:Image> for the background-image. But I need elements to then be added inside it. How do I achieve this? I considered using Layers, but dont know how you achieve this.

View 3 Replies

Flex :: Set Background Image In 4.5?

Jul 10, 2011

I have written a custom skin in Flex 4.5, which shows a custom image. I want this to my background image, so how can I set this skin to the application container?

View 3 Replies

Flex :: Dynamically Set Flex Background (Color And Image)?

Sep 26, 2010

I want to give the users the ability to set the background color or choose image to make it background (Tile, Center and Strentch). I tried couple of things with no luck such as trying to chaing a Skin object and assign it.and tried something like:

FlexGlobals.topLevelApplication.setStyle("backgroundColor",uint(chosenColor));

View 1 Replies

Flex :: Set The A Background Image Of A RichTextEditor?

Apr 11, 2011

I have tried setting the background image this way, but it doesn't work. how to set the background image of a rich text control in flex as easy as possible?

.rte{
...
backgroundImage: "assets/globe.jpg";
}

[Code].....

View 3 Replies

Flash :: Create A Panel On Drag Drop In Flex 4?

Feb 23, 2011

I am trying to drag a component and on drop I need it to create a panel. Here is the actionscript I have but it doesn't seem to be working

private function dragDrop(e:DragEvent): void {
var userPanel:Panel = new Panel();
userPanel.width = 100;

[Code]....

View 2 Replies

Flex :: Drag And Drop An Image From A Container To Another?

May 23, 2011

I need a way to drag and drop an image from a container to another. I have tried a few different ways but I guess the drag & drop thing is still eluding me. Anyway, here's what I am trying to do, A container will contains a few bitmap/vector image (what's the best way for this? Tile Group? Or?) and then I want to be able to drag any of the image onto another larger Image inside of a Panel. Just like dragging shapes in Photoshop. No code here, as I am completely lost on how to go about it. I found a few tip/tutorial here and there but none which I could understand easily or adapt to my need.

Edit 1 : Got so far till now :
public function beginDrag( mouseEvent:MouseEvent ):void
{

[code]....

View 2 Replies

Flex - Create A Scrolling Group With A Background Color?

Nov 5, 2010

I'm using Flash Builder 4 Premium. My application has a title bar that I don't want to scroll, and a group underneath that should scroll. Here is the group that I want to be able to scroll:

[Code]...

View 1 Replies

Flex :: Flash Fullscreen Background Image

Feb 4, 2010

I want to load an image into the background of my Flex app. However, I am wondering about a few things, and have a few contraints.I want it to be much like the way it's done with CSS. See this example of fullscreen background images with CSS.It is very important that there is no white-space (background colour) showing behind the image, and that the image is not stretched. This would mean some of the image would be cut off. This is absolutly fine. Actually, the first five points in the bulleted list on the linked page above are all exactly what I am after.I am relitivly new to the Flex framework, but have a strong AS3 background. So I can do this easily with actionscript using a mask, stage.width/height, the stages RESIZE event, and a little bit of Math. But I am wondering what would be the "Flex" way of doing this?I don't want to narrow the answers, but would I create my own component, that extends canvas, that I put behind all my other content? Or to I set some property of the application?

View 5 Replies

Full Image In Background In A VBox In Flex?

Jun 15, 2010

I was wrote the following code to set the background image in one vBox.

vBox.setStyle("backgroundImage", "PreviewBackground.png");
vBox.setStyle("backgroundAttachment", "fixed");

Where the height and width of vBox was 250 x 350 and the height and width of background image was 400 x 400.The problem is that the background image doesn't show the full image. The image has cropped. How can i show the full image as a background image?

View 1 Replies

Flex :: Change Background Image Of HBox?

Oct 25, 2010

I have assigned a logo image of my software to HBox as follows [code]...

Now I need to change the backgroundImage to some other image on a event.

View 1 Replies

Flex :: Making Background Image To Centre?

Feb 15, 2011

CustomAppSkin Class

<?xml version="1.0" encoding="utf-8"?>
<s:Skin name="CustomApplicationSkin"
xmlns:fx="http://ns.adobe.com/mxml/2009"

[code].....

View 1 Replies

Flex :: Adding Background Image To MX Component?

Apr 8, 2011

The project I'm working on requires older libraries that extend mx components (such as TitleWindow and TabNavigator), I can't use what I know about Spark skinning directly. However, since the project is being programmed using the default Spark theme (with my modifications on top) rather than the Halo theme, I apparently don't have access to the styles I need (namely backgroundImage and contentBackgroundImage which apparently require Halo to be active). Simply setting Halo to be the theme will break other things, not the least of which my own theme.

Plans are in the works to replace the older libraries or at least patch them better to Flex 4, but as of right now, I need a way to style/skin these components without modifying them directly. It would be ridiculous to be unable to add a background image to a TitleWindow's content area! I've searched the internet high and low all day and tried countless variations of styles, skins, selectors, and combinations thereof with no luck. How to add a background image to the content of a mx TitleWindow while using the Flex 4.1 sdk?!

View 2 Replies

Flex :: Possible To Put A Background Image To A Component 'Group' With CSS?

Jul 28, 2011

In a component 'Group' I drag multiple pictures at one time I need to clean this component, but contains a component BitmapImage and I will not be erased:

<s:Group id="droppedImages" width="100%" height="100%">
<s:BitmapImage id="bg" source="@Embed('lineal2.jpg')" width="1024" height="577" verticalCenter="0"/>

[code].....

View 1 Replies

Flex :: Change Background Image Of Preloading Bar In It?

Sep 19, 2011

I would like to change the bacground image for the preloading bar in Flex, the one which appears before loading your application. This article describes the way in which you can change the background-color, but is there a way to add a background image (and keep the loading bar on top of that)?

View 3 Replies

Flex :: Create Simple Slowing Down After Drag And Drop Object?

Jan 8, 2011

So what I nedd is simple - how to create a drag and dropable circle with flex 4 and AS3 and using Box2d make it fly some more in the direction of drag and than stop?

View 2 Replies

ActionScript 2.0 :: Disabling Open Image In New Window?

Mar 10, 2010

ActionScript Code:
onClipEvent (load) {   
imageProperties=_root.getGlobalImageName(3);

[Code]....

Above is the AS2 code that is being used per a set of 9 images that load as the main page of my flash site. Each image uses the same script and is being referenced from an xml file which tells flash what image to load.

My problem here is that when I hover over the images when they are loaded, they are clickable, and when clicked on, open a new window displaying the full image.

I do not want that. I just want it to pull the images up and stay like that.

View 9 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved