Flex :: Component Change To A Page With Different Content?

Aug 2, 2010

I want to create a flex web page. Basically I have some menubaritems at the top and when I click at one of the dropdowns from the menubar, the component would change to a page with different content.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Change The Page / Margin Size So The Content Can Fit In The Page Without Scaling

Jun 11, 2010

I'm trying to print a mc which is bigger than the default page size. I want to change the page/margin size so the content can fit in the page without scaling. Per the API reference [URL] the page settings are readonly. How can I print something bigger than the default page size? Is it doable in AS2 or AS3?

View 2 Replies

ActionScript 3.0 :: LINK - Change The Page In The Content Frame?

Jul 29, 2010

I am creating a framed website in Dreamweaver, but I made my navigation menu in Flash w/ AS 3. The frameset has two frames, one is called header and the other is called content.I want the flash menu to stay in the header frame (which it does) and I want the links to change the page in the content frame.I tried targeting the content frame in my function that changes pages, but for some reason it continues to open the new page (link) in a new window.

function newPage(e:MouseEvent):void
{
new Tween(highlight_mc,"x",Strong.easeOut,highlight_mc .x,e.currentTarget.x,12,false);[code]......

View 1 Replies

Flex :: Change Component On State Change?

Mar 8, 2010

I've got a whole bunch of data being displayed in different Labels, now I'm adding an edit state. I'd like all the labels to "transform" into TextInputs. I was just wondering if it possible to uses states to change

View 1 Replies

Flex :: Setting Content Area In Custom Component?

Dec 11, 2009

I am trying to define the content area of a custom component that extends mx:VBox. The component has predefined headers and footers (visual children) and I want to set the area in the middle for adding children to the component. The component will be used like this:

<custom_component>
<mx:button/>
</custom_component>

How would I set this content area?

View 3 Replies

Flash :: IE And Mozilla For Asp.net Page With Master Page And Content Page?

Jul 1, 2010

I have a master page and a child page and have placed the javascript code inside the child page for flash movie.

The problem is the movie seems working when there is a alert on, without at least one alert msg, the code does not work, I am sure you people can solve, I can see that the following code works well in both Mozilla and IE, but only if the alert is ON, if I put it off, then the code does not work. Can anybody tell me what is the workaround :

[Code]...

View 2 Replies

Flex :: Setting Up Content Children For Custom Mxml Component

Dec 9, 2009

I am trying to develop a custom component to act as a divider.

[Code]....

I would like to use this component to assign objects like this:

[Code]...

Unfortunately, this does not work. I get a compiler error saying: In initializer for 'left': multiple initializer values for target type mx.containers.Canvas.

View 1 Replies

Flex :: FLVPlayback Component Freezes When Seeking Beyond Loaded Content?

Mar 12, 2010

I'm creating a flex-based video player, using the FLVPlayback component (imported from Flash Pro CS3). I've reskinned all of the player controls and linked them in, and it's all working really well...However, if you try to seek beyond the point where the video has loaded (it's using progressive download), the video completely freezes. You can no longer pause, play, seek to somewhere else, or anything. I understand it can't actually play a point in the video that hasn't been downloaded, but the whole thing seems to just become unresponsive

View 1 Replies

Flex :: Right Method For Modifying Text Content In Component Lifecycle?

Aug 25, 2010

I have custom components which must adjust their text content based on space constraints. For example a component adds labels until there is no space, and then the content of the last label becomes "(x more)"
I do not have access to size of child controls before adding them. When in updateDisplayList, I make changes to the layout of the component, but for labels, lblInstance.text property fires events, which lead to updateDisplayList being called again. I know that updateDisplayList may be called more than once, but if there is a way to modify text without triggering events, that'd be really useful. For example, setActualSize method in UIComponent allows this kind of modification. Anything similar for text controls? Or do you have best practices for laying out and managing text content, in the context of custom Flex components?

View 1 Replies

Html :: Load A Web Page In Flex Component?

Dec 22, 2009

Is there a way to display a web page in a flex component like Canvas, Hbox or TextArea?

View 2 Replies

Flex :: Display Different Component On Same Mxml Page?

Feb 16, 2011

i want to implement this.archive/flex/tourdeflex/web/#docIndex=1;illustIndex=0;sampleId=0)type of structure in my application.how can i display different component in differentparts.

View 3 Replies

Flex :: Create Static Frame And Change Content Pages In It?

Sep 2, 2010

I need to create a static frame and a changing content... currently envisaged as frame containing the side panel and header and footer content.

The content panel will call mxml based on the content sought.

a) how is the frame paradigm- with static frame "containing" other content done. I dont want to repeat the header and footer logic in every 'content section' code?

b) how is the hyperlinking between content sections done- using 'states' seems convoluted

View 2 Replies

Flex :: How To Change Component Styles In AS3

Nov 4, 2009

In MXML, there is a Button class which you can instantiate like so:
<mx:Button id="something />
But what if you wanted to dynamically build this in AS3 and add it to the Flex app dynamically, without the use of components (just AS3) and then modify Flex's styles, for example, here you access the Button's properties and set them:

var btn:Button = new Button();
btn.height = 50;
btn.width = 75;
btn.x = 100;
btn.y = 40;

But how would you go about changing the Style, for example:
btn.downSkin = "something";
btn.color = "0xfffff";

I'm sort of starting to lean towards making a flex component in MXMLand than just making it visible true/false, but I like the fact that i create an object in AS3 and then destroy it when I don't need it anymore, than create it again once needed.

View 2 Replies

Flex :: Change Another Component's State?

Oct 2, 2010

I currently use: Flexglobals.toplevelapplication.component1.compnent2.currentState = 'something';is there a better way of doing do? Can I bind the state of a components to variable in my model?

View 2 Replies

ActionScript 2.0 :: Changing Content On A Page Each Time A User Visits Or Refreshes The Page?

Jun 16, 2003

How do i change content on a page each time a user visits or refreshes the page? example: the icon on kirupas header changes when the page is refreshed or re loaded. I have searched using dynamic content, but didn't quite find it...I only want to change 1 image..

View 1 Replies

Actionscript 3 :: Flex: Content Not Rendering Correctly After Transitioned State Change?

Mar 1, 2012

I have a component with 2 states and I have added transitions for switching between the states, where 2 Move affects are applied to 2 different objects. This all works fine, however, after the transition from the first state to the second has completed the second state doesn not render correctly. It contains a TextInput control which is not visible, and a Button with a custom skin that is only sometimes visible and vanishes if you click on it. I have tried called invalidateDisplayList() and validateNow() after loading the second state but that has done nothing. I also have a VBox with a cornerRadius property set, strangely this does not seem to apply anymore and the corners are square, where they displayed correctly before I added the transition in.Here is the code for my states and their transitions:

<!-- different states of this component -->
<mx:states>
<s:State name="useForFree"[code].....

where the variables being set as masks are UIComponent instances where I have used their graphics property to draw a rectangle.

View 1 Replies

Flex :: Change Value Within Component From Within Main Application?

Jul 19, 2011

So I'm using a custom auto suggest component that I found online at [url]... The background color for the item is set within the following folder[code]...

I use this component from within a component I created called "position.mxml" that is located in a folder named "modules". Is there any way that from the position module, I can change the background color of the autosuggest box?

View 1 Replies

ActionScript 2.0 :: Content To Load Into The Loader And Have Its Content Change Once Click On The Other Button Flash 8

Aug 15, 2009

I'm have made some buttons (movie clip) and when I click on it, I want a file (home.swf) to load in a loader (mx.contents.loader) and I want the other buttons to do the same, all load into the same loader. I have no Idea how to do that. The way I have it set up now, the home.swf will load over the entire screen and that is not what I want. I just want the content to load into the loader and have its content change once I click on the other buttons. Here is a copy and past of that I have at the moment, I'm using Flash 8 to do it all.

[Code]...

View 1 Replies

Flex :: Component Not Listening To MainApp's State Change?

May 2, 2010

I don't know if this is too difficult or too easy. My custom component is trying to listen to the main application's state changes using StateChangeEvent.CURRENT_STATE_CHANGE, but it's reporting its own state changes.

View 2 Replies

Flex :: Respond To Change Of Data Inside A Component?

Feb 17, 2011

I've created a custom component based on Image component. I want to teach it to respond to change of binded variable. E.g. if main class has a variable balance, I want the component to change image in case balance = 100 one image, in case balance = 50 to another.[code]...

View 1 Replies

Flash :: Change Bar Color Of Flex DownloadProgressBar Component?

Oct 12, 2011

Is there a simple way to change the bar color of the default download progress bar by extending the DownloadProgressBar component besides implementing our own progress bar?

View 2 Replies

Flex :: How To Dynamically Change Component In Item Renderer

Jan 16, 2012

How can I dynamically change components text size in item renderer? Here is my CustomItemRenderer.mxml:

<?xml version="1.0" encoding="utf-8"?>
<s:ItemRenderer xmlns:fx="[URL]" xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
[Code] .....

When a button is pressed I want to access textArea2 and change font size.

View 1 Replies

Actionscript 3 :: Date Time Format Change In Flex Custom Component?

Apr 11, 2012

im using a custom component for date time, it is 12 hours and am/pm format,Now i wat to show 24 hour format in numeric stepper and am/pm should be disabled.heres my code

<mx:Script>
<![CDATA[
[Bindable] private var _selectedDate:Date = new Date();

[code].....

View 2 Replies

Flex :: Change Font Color And Size Within Single Label Component?

May 18, 2010

i'm trying to create a unordered list in Flex. My issue is that within each line, i want the word NEW to be a different font color and different font size from the rest of the label text. I am unsure of how to do this INLINE within the label component.

<s:VGroup fontSize="15" color="#ffffff">
<s:Label text="u2022 NEW Invite your friends!" />
<s:Label text="u2022 NEW Features coming soon!" />
<s:Label text="u2022 NEW Invite your friends!" />
</s:VGroup>

View 1 Replies

Flash :: Flex - Change Bitmap And Label Of An Button Component [CS5 - ActionScript-s]

Jun 30, 2011

I have created one button component using one Bitmap and one Label in it. Thing is that when user Clicks on on the button I want to changes button's Icon/Image and Label Text. I want to do this using FlashCS5 and ActionScript-3. I have tried following but it gives me runtime Error

[Code]...

View 3 Replies

Flex :: Accordion Component - Show The Whole Content Without This "white" Rectangle When It Loads?

Nov 24, 2011

I've an Accordion component in my Flex application and works great, but I found a little glitch in its behaviour.While one of its menus is opening, it shows a white rectangle and, when it completely loads, it shows me the content. But I want to show the whole content without this "white" rectangle when it loads.For example:

Image 1: My Accordion is ready to use

Image 2: I want to open another submenu, so while it's opening, a white rectangle is shown (I was really quickly to take an screenshot)

Image 3: Recently opened submenu is fully loaded.Here is my source code:

<mx:Accordion id="accordion" width="100%" height="90%" verticalGap="0" horizontalGap="0" creationPolicy="all">[code]...........

View 2 Replies

Flex :: Change Text Color Of Component Label/selected Item In ComboBox?

Jun 2, 2010

When I set style color, it changes both the text color for the selected item/component label and the text in the dropdown menu.

color
Type: uint Format: Color CSS Inheritance: yes
Color of text in the component, including the component label. The default value is 0x0B333C.

I would really like the label to be white and the text to be black.

View 1 Replies

Actionscript 3 :: Flex Repeater - Toggle Sibling Component Visibility On Checkbox Change

Jun 2, 2010

I have a Flex repeater that has a complex item template. When a checkbox is clicked, I need to toggle the visibility of a sibling button contained in the same repeater template. Since I can't add binding expressions to event handlers, I can't pass in the repeater item's index.

How can I access sibling components inside a repeater item?

View 1 Replies

Flex :: Why Change In ArrayCollection's Length Doesn't Invoke Setter On Component Using It As Data Source

Dec 15, 2010

I have a component where I expose the property 'questions' with the following code:

private var _questions:ArrayCollection;
private var questionsChanged:Boolean;
[Bindable("questionsChanged")]

[Code]....

In this component, I use commitProperties() to implement my logic.

I use Cairngorm and the 'questions' is in the model and hence it's defined as a source for data binding.

When the 'questions' ArrayCollection's size changes elsewhere in the application, it is not invoking the setter method in the component that is destination for the data binding.

View 1 Replies

ActionScript 3.0 :: Call Cleanup Function On Reload Of Page / Relode Of Swf Or Change Of Page

Nov 15, 2011

I have an swf loaded in a browswer (fire fox) and i use log on console using [code]I have initialized my swf in the document class on the Event.Added to stage.and i have a clean up function performing all the clean up/exit process in the code on the event [code]Now Doubt that this is being called/ activated/trigered as i am not able to log the start and end of the function to the console.The console log is of firebug.What exactly am i missing here? I would like to call the cleanup function on reload of page or relode of swf or change of page.How do i trigger and log it properly

View 1 Replies







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