Flex :: Canvas - Way To Make Elements Non-selectable?

Jan 4, 2011

As part of requirements for a new feature of "locking" a page, it is desired to have all elements on a locked page be non-selectable. This is not to be confused with disabled. All elements should appear as if the page were active, but not be selectable.The current thought is to create a clear canvas and place it over the existing elements. With this thought, I have two questions:if you can think of a better way to make all items non-selectable than applying a clear canvas element over the existing elements could you describe it?if not, what is the best way to retrofit existing implementations to accept the overlayed canvas item? BTW, all .mxml pages inherit from a custom .as file.

View 3 Replies


Similar Posts:


Flex :: Adding Selectable Image On Canvas

Dec 24, 2009

I am new to flex, and do not know how to add an image (or other ui component) to canvas, so user can select it (and see that it's selected), also I want to add a possibility for example to click backspace and remove selected image from scene. How to do that?

View 1 Replies

Flex :: Detect Overlap Between Elements On Canvas?

Jul 4, 2010

I'm trying to detect overlap between elements on my canvas. The attempt is to reuse some of the code for collision detection at [URL]

This is the smallest MXML sample I could come up with that gives me a type error.

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"

[code]....

View 1 Replies

Flex :: Scroll Elements On Canvas In Different States And In Different Containers And Not Move Others

Dec 2, 2010

I generate panels dynamically and put them in other states in that way so in one state you have a list of panels on the left and one big panel on the right for example in one state and when you click on the list on the left (with small panels) that panels takes the places of the big panel and the big one goes back in the place. So I have 50 panels on the left and i want to scroll them down but I don't want to big panel to go down with them I want it fixed. this is where I got and I don't know how to do that here is my code:

enter code here

protected function canvas1_creationCompleteHandler(event:FlexEvent):void
{
blurEffect= new BlurEffect(myBlur,myUnBlur);
listEventsResult.token=eventService.listEvent();

[Code]....

View 1 Replies

Flex :: Flash - Make A LinkButton Selectable?

Aug 26, 2010

Is it possible to make a LinkButton selectable? That is, the text from the LinkButton can be selected and then copied. LinkButton does not have the selectable property.

View 1 Replies

ActionScript 3.0 :: Make Flex Component Be Draggable And Selectable?

Sep 7, 2009

I need to make Text box to be Draggable And Selectable

View 1 Replies

Actionscript 3 :: Make An Item In A Flex List Control Not Selectable?

Jan 12, 2010

Is it possible to make an item in a List control not selectable? If so, how would this be accomplished?

I've tried one thing so far. What I did was use a custom item renderer that checks for a value in the data property upon a FlexEvent.DATA_CHANGE event. If that value is not set, I tried setting the item renderer's selectable property to false. This, unfortunately, does not seem to work.

View 4 Replies

Make Menu Items With Children In A Menubar Selectable In Flex 3?

Feb 7, 2011

If I have a menubar that has an XML datasource like:

<mx:XMLList id="menuList">
<menuitem label="Parent1">
<menuitem label="Child1">
<menuitem label="SubChild1" />

[Code]...

How can I make it so that clicking on Child1 will cause a click event despite it having children?

View 1 Replies

ActionScript 3.0 :: Recognizing The Child Elements Of A Canvas?

May 14, 2010

I am trying to develeop a Graph Structure with drag and drop features in Flex. I have to connect various components/children on the canvas. Once i drag n drop the components on the canvas, i am using SystemManager event handlers to draw connectors between the components. But, as i click on one component and drag the mouse, the line is drawn on the canvas as long as my mouse stays only on the canvas. If the mouse moves over a component/child(that has been dragged and dropped onto the canvas), the line is drawn to the origin of the canvas from the first clicked component. How shud i recognize the component when i move my mouse over the component? I want the line to be drawn connecting the components once my mouseup event is called.

View 3 Replies

Actionscript :: Capturing Canvas Bitmap With Dynamically Placed Elements

Jul 6, 2010

I'm attempting to find overlap between elements on a flex canvas, an adaptation of Url...The attempt here is to place some text and figure overlap with previously placed text. [code]do not seem to capture the elements placed on the canvas dynamically. [code]

View 1 Replies

Shrink Canvas Size Of Flash Movie Including Elements?

Aug 14, 2009

I have Flash 8.  I created a Flash movie a number of years ago, probably in an early version of Flash.  I use it on my website.  I want to redesign my site and make the movie smaller from the standpoint of making the canvas/stage size smaller.  I don't mean just compressing the flash movie to a smaller swf.  Is there some quick way to do this without having to recreate the movie and put in smaller elements?

View 3 Replies

Flex :: Dynamically Add Different Items To ThumbContent Canvas And Use Scroller Canvas To Scroll

Jun 5, 2009

I have the following code in my flex project.

[Code]...

I want to dynamically add different items to thumbContent canvas and use scroller canvas to scroll. I see than the height of thumbContent bigger than 7977 it truncate from scrolling. So - I see the scroller canvas with empty space on top. Then I scroll to bottom - I see the content of thumbContent and at bottom scrolling I see empty space too.

View 1 Replies

Flex :: Skin A Canvas With Image And Scale It To Size Of Canvas In It?

Apr 9, 2011

I'm trying to skin a canvas with an image (which is essentially a custom border for the canvas). I've been trying the backgroundImage style as well as the borderSkin style. I can't get the image to scale to the full size of the canvas though. I was wondering what the best way to go about this is.[code]...

View 2 Replies

ActionScript 3.0 :: Make Part Of The Canvas Label Text As Unerderlined In Flex?

Oct 19, 2011

I need to underline particular character of the tab header(like Account) A has to be underlined. We are using tab navigator and canvas container controls to create the tabs in our screen( Canvas label has to be underlined).

View 1 Replies

ActionScript 2.0 :: Make An Object Selectable?

Mar 19, 2006

Ive figured out how to make an object selectable with this [code]...

Now that ive done that i want to know how to change the color of a selected object when i click a certain button?

View 5 Replies

Professional :: Make A Selectable Photo Scroll Bar

Jun 25, 2010

How do I make a selectable photo scroll bar like the one on URL... under the nav. I want to make one similar on a music web site, but am unsure how it's done.

View 2 Replies

Professional :: Make A Selectable Photo Scroll Bar?

Jun 25, 2010

How do I make a selectable photo scroll bar like the one on[URL].. I want to make one similar on a music web site, but am unsure how it's done. I just need to know what I need to do, I'll figure it out from there. DO I jus bring the png photos in seperately? Do I just use a scroll bar component? I just need to know where to start

View 3 Replies

ActionScript 2.0 :: Make All Textfields On Stage Selectable

Jan 8, 2010

I have to make all the textfields on the stage selectable through actionscript.Currently its a tedious task since there are more than 1000 files for which the textfields are to be made selectable. All of these files get loaded in a main shell.fla.Is there a way to write a script that would make all the textfields on the stage selectable???

View 4 Replies

Actionscript :: Flex - Selectable Text In DataGridColumn?

Sep 16, 2009

How do I make text selectable (so I can copy) in a DataGridColumn?

View 2 Replies

Flex :: Disable Scrollbar - Thumbs Visible But Not Selectable

Feb 18, 2011

I have a canvas with a scrollbar and I would like to disable the scrollbar in some way that keeps the thumb visible, but not selectable. I just want to let the user know that there is more information below, but I do not want to let him use the scroll to move down(this will be done with the movement of the arrows). I tried using the properties enabled but it does not work.

View 1 Replies

Actionscript 3 :: Flex: Row Index In Datagrid When 'selectable' Is Set To 'false'

Mar 2, 2011

It would be an easy question, but property 'selectable' is set to 'false' and therefore selectedItem is always null.

In each row I have 3 buttons. When I click a button, I need to extract data corresponding to clicked row.

View 2 Replies

Flex :: Custom Context Menu WITH Selectable Enabled In AS3

Jun 6, 2009

I have a Label in AS3 that I want to be selectable (.selectable = true) AND I want the clipboardMenu to show up on right-click ALONG with custom menu items.

If I do THIS:

var label:Label = new Label();
label.text = "test";
label.selectable = false;

[Code]....

The label IS selectable - however ONLY the clipboard menu items are present.

How can I both make the label selectable AND have a menu with my custom items + standard clipboard items?

BTW - this is with an AIR application using the 3.2 SDK.

View 1 Replies

ActionScript 3.0 :: Unable To Make An Image As An Object On The Canvas

Apr 30, 2010

I have an app wer i drag and drop images onto a canvas and then move them on the canvas to arrange them appropriately. After that i shud be able to click on those images and draw connectors between them as the user seems required. But after dragging and dropping the images on the canvas and arranging them, when i click on the image i am getting a typeerror 1009 error, i.e, "cannot access a property or method of a null object reference".

Actually after arranging the images, i add an event listener to the image(proxy) on the canvas:

image.addEventListener(MouseEvent.CLICK, mouseClickk);
image.addEventListener(MouseEvent.DOUBLE_CLICK, mouseUpp);
MouseClickk Function:

[Code].....

View 0 Replies

ActionScript 3.0 :: Make A Copy Of An Array Filled With Canvas Objects?

Jul 26, 2011

I'm trying to make a copy of an array filled with Canvas objects. I use this code:
 
arCopy =    ObjectUtil.copy(myClass.myArray) as Array;
 
 
What I get is an array arCopy filled with Objects instead of Canvas. Each of these Objects has propersties suggesting that it was Canvas (like uid="Canvas333" or name="Canvas333"), but it's instance of Object class. I've been using ObjectUtil.copy() before but never seen such behaviour. 

View 1 Replies

Actionscript 3 :: Flex - Possible To Have Flex DataTips On Canvas Rather Than Chart Objects

Jan 17, 2010

Flex charts, like AreaChart, have wonderful built-in support for displaying data "tool tips" when a user hovers over a point supplied in the data of a graph. You can hover over any of the bar graph examples on this page for a demonstration. I have a graph situation where I optionally draw in some dots as reference points on CartesianDataCanvases supplied to my AreaChart through it's <mx:annotationElements> and <mx:backgroundElements> tags.

I would like to have the same hover data-tip functionality that the AreaChart has, but applied to these dots. I realize that I am just drawing on canvas, and that no actual dataProvider supports these dots, but if there was a way to supply the CartesianDataCanvas with an array of data values or something to that effect,

View 1 Replies

Flex Get Canvas Id?

Jan 20, 2010

I'm developing an engine to generate components.I been wanting to get my xml script that read and create a component to be load into 'content' canvas. I not sure how do I get the addChild work correctly as in 'content'.addChild instead of the one shown below:[code]

View 1 Replies

Flex :: Scroll A Canvas Up?

Dec 27, 2009

The basis for the chat window is a canvas. I've got that showing, but how do I make it scroll up? I want to clip the window so only the last 15 lines are shown.[code]...

View 1 Replies

Aligning The Canvas To The Right In Flex?

Dec 8, 2010

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Canvas width="100%" height="100%">
<mx:Canvas backgroundColor="#A8A8A8" height="100%" right="0" top="0" width="100">
</mx:Canvas>

[Code]...

My code above works absolutely fine, until i resize my browser window to a size below 800px width. When the browser window is make of lesser width than 800px, the canvas with background color #A8A8A8 is on the right of the window, but the problem is, when I move the scroll bar, the canvas should remain on the right of the window. Which does not happen, and that is what my problem is.

How can I solve this issue. What should I do to keep my canvas be on the right=0 all the time.

View 1 Replies

Flex :: Lie Two Canvas At One Tab Navigator?

May 18, 2011

I want to lie two canvas at one Tab Navigator. when I use <mx:local it created multiple tab.

View 1 Replies

Flex :: Drawing Squares On Flex Canvas?

Dec 23, 2009

I'm trying to write some code to an animated images of squares on a Flex Canvas There's something wrong with my code below because it becomes progressively slowerI assume I'm supposed to clear the old squares or something.What am I doing wrong below?:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init();">
<mx:Script>

[code].....

View 1 Replies







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