Periodic Table Design In Flex

Aug 27, 2010

I now need to design a chemistry periodic table. I will have a set of few elements that have been chosen by the user,and that should be reflected on the periodic table by making these few elements clickable.So when the user clicks on these few elements,corresponding explanation text will pop up on the text area outside the periodic table.Making all the elements of the periodic table buttons,so only the buttons that are within the set are enabled(clickable),while others are disabled.Embedding a static periodic table picture,and do things there(don't know exactly how yet).

View 1 Replies


Similar Posts:


Flex :: Design A Dynamically Changing Table In It?

Aug 30, 2010

I'm new to Flex 4 and have been doing the Flex in a Week crash course online.

build a dynamically growing or shrinking table with columns and rows. The cell backgrounds of the table will change color depending on an XML file.[url]...

View 1 Replies

Flex :: Represent HTML Table Structure In Flex DataGrid Or AdvancedDataGrid?

Feb 12, 2012

I'm using Flex 4 and I need to render the data that resembles HTML Table with row span in a Flex component.My inclination was to use a DataGrid but I believe that rowSpan is not supported for that component. I looked at the AdvancedDataGrid but the user does not want to have a tree-structure in any of the columns. Looking to see if there are any hints/tips for modifying the DataGrid or AdvancedDataGrid to produce an "HTML Table with rowspan" look.

View 1 Replies

IDE :: Make A Table In Flash And Enable The Column Headers On The Table To Sort Column On Click?

May 4, 2009

How to make a table in Flash and enable the column headers on the table to sort column on click?I have seen some tutorials with mySQL but I'd like to start with something basic. Is a sortable table possible using just Flash and AS 2.0?

View 1 Replies

Flex - Design - Mediators Coupled To Proxies In Flex PureMVC?

Aug 14, 2009

I've just recently learned the PureMVC framework, and am a little confused as to the coupling between Proxy and Mediator objects. The links on this page connect to some documents describing the framework. (Please note, the links on the aforementioned page open PDFs.)

The diagrams and examples of PureMVC I've examined often show a direct coupling between a Mediator and Proxy. When the proxy's state is updated, rather than sending a new Notification, the Mediator (which retrieves a reference to the Proxy from the Facade) has its state updated.

This certainly seems to simplify the logic of the code, but it also directly couples two seemingly disparate components together. To my understanding, a Mediator's purpose is to translate Events from a view into PureMVC Notifications. Proxies are meant to perform some function to gather data and relay it back to the view. These two components seem to exist in different layers of the application, and perhaps shouldn't necessarily be coupled together.

Wouldn't it make more sense to have the Proxy objects send their own Notifications when their state updates, which are forwarded to the interested Mediator by the Facade?

View 2 Replies

Flex - Design Patterns For Adobe Air/Flex Applications?

Jun 2, 2010

I'm going to write an application with the Air/Flex-Framework. I'm looking for Best Practise and general Design Patterns for designing software especially in Air/Flex. I have experience with this framework but never had the pleasure to write a piece of software from scratch.

For instance: I stumbled across lots of software written in Air/Flex with nearly infinity global vars Most of the software I saw was not object-oriented How can I pack the asynchronous method calls nicely?

I'm familiar with general design patterns by gamma. I'm looking more for advise in designing good quality software with Adobe Air/Flex.

View 4 Replies

Flex :: Want To Make A Custom Table?

Jun 21, 2011

i want to make a table using action script 3.The description of the table is that table should have three parts one is headersecond bodythird footer.Every part of the table mean header footer body also tables which can contain more than one row.

View 3 Replies

Flex :: Table - Style The Each Cell Of DataGrid?

Sep 16, 2009

I have a Flex DataGrid, which has some columns, i had put a item renderer, which makes all the elements in that column hyperlinked, i have a requirement, where i need to see the type of user, based on that i have to either enable or disable the hyper link.

Is there any good way , where i can get the style properties at the cell level...?

View 1 Replies

Flex :: Display The Data In Table Format?

Dec 3, 2009

Is there are component in Flex where we can display the data in table format. [URL]..

I did not like the look and feel, any other components.

View 2 Replies

Flex :: Effectively Tavere A Table Column?

May 17, 2010

I have a table "template" which is used in various "instances". All instances have checkboxes in the second column (for record-delete).

What would be the most effective way of traversing the table and check if at least one checkbox is selected (to enable a "delete" button)?

View 1 Replies

Actionscript 3 :: Make A Table Grid In Flex 4?

Mar 30, 2011

I want to make a grid with 3 images in a row and then should the next row start. How do I that in Flex 4? Are there any controls or can you do it with the Repeater? Or am I forced to do some math on my own (modulus here we go again).

View 2 Replies

Flex :: Design Desktop App (from Web App Dev)?

May 16, 2010

I have only worked on web apps for my whole career.I'm starting a new desktop (Adobe AIR) app project but I found myself having difficulties with:

stuck with thinking about overall UI design in the traditional page model

not sure how to handle the navigation part in the UI

not taking advantage of states

deciding what should be implemented on client vs server side, (or on both?).

View 3 Replies

Flex :: Flash Table-like Object With Expanding Rows?

Dec 7, 2010

I've recently just started delving into both actionscript and flex...the main reason being I like to create a sortable datagrid or datagroup like thishere you click the main entry that already has some detail and the row expands to show more.It might be possible to do with an itemrenderer but for the life of me I cant seem to find any tutorial or source or demo that doesn't assume you already know what to do with the itemrenderer since you cant just drop them in and have them work it seems.

View 2 Replies

Xml :: Create Xml Category/subcategory Hierarchy From Sql Table In Flex?

Oct 19, 2011

I have sqlite table named categories with fields id, name, and parent_id. Sample data is much like:

id name parent_id
1 products 0
2 tools 0

[code].....

View 1 Replies

Actionscript 3 :: Flex 4.6 Counting Rows In Sqlite Table

Feb 4, 2012

I want to check there are no records in an existing sqlite table:[code]The customer table exists but is empty. While running it flex gives this error on result.length:Error #1009: Cannot access a property or method of a null object reference.

View 1 Replies

Flex :: What Was Design Decision Behind ItemPendingError

Jul 29, 2009

Flex has the notion of lazily loading data. It has a class named ItemPendingError which allows developers to handle it when an attempt is made to access data that is not yet available aka "pending".However, looking at the documentation it's clear you have to add try/catch blocks around your code wherever you have code that might cause an IPE (ItemPendingError) to occur.I'm curious if anyone knows why it works this way. I'm not sure what the best solution might be, but having to willy-nilly add in try/catch blocks to catch the error and then register a Responder with it feels bad and not very clean. And the fact that you sort of have to exercise your application to make sure you've caught all the possible places where the error might occur is also lame.Is there some other way or better approach that I haven't seen/heard of?

View 3 Replies

Actionscript 3 :: Design Usa Interactive Map In Flex?

Jun 11, 2009

i need of simple UsA map in flex ,all Area need to be click able as button Is there any tool available for designing buttons in various shape in flex or any build in free map is available in flex. As vector format so that zoom in will not affect the quality.[URL]..

View 3 Replies

Flex :: Create Table Like Structure With Rows As Text Inputs

Sep 30, 2009

I want to create a table like structure in Flex, with labels as header. The rows entries might be a check box or a text input box,Like give below.[code]Or can I create a data grid and have text input boxes or check boxes as column values?

View 1 Replies

Flex :: Flash Builder - Generate Form From Database Table

Jun 14, 2011

I've got remote databases on hosting. Can Flash Builder generate Spark Form with similar structure from database table?

View 2 Replies

Flex :: Design - Gradient Fill Of Chart

Oct 17, 2009

I'm struggling to reproduce the gradient fill of this chart. Is there tools that help testing GradientEntry properties on fills?

View 1 Replies

Flex :: Design - Static Functions Or Events?

Feb 1, 2011

I'm working with an application which was originally designed to make heavy use of static-variables and functions to impose singleton-style access to objects. I've been utilizing Parsley to break apart some of the coupling in this project, and I'd like to start chiseling away at the use of static functions. I will explain the basic architecture first, and then I'll ask my questions. Within this application exists a static utility which sends/receives HTTP requests. When a component wishes to request data via HTTP, it invokes a static function in this class: Utility.fetchUrl(url, parameters, successHandler, errorHandler); This function calls another static function in a tracking component which monitors how long requests take, how many are sent, etc. The invocation looks very similar in the utility class:

[Code]...

View 1 Replies

Flex :: Implementation Of Value Object Design Pattern?

Jun 20, 2011

I am just looking design patterns used in Flex. Any value object design pattern and how is it implemented in Flex.

View 3 Replies

Flex :: Design Mode Not Working In Builder 3?

Feb 9, 2012

When i try to open my mxml script in design mode i'm always getting following message "This Component is base on VBox, which is not a visual component. Switch to source mode to edit it"

View 1 Replies

Actionscript :: Open Source Flex Mxml Table Creator And Editor?

Jan 29, 2010

I'm searching for at least simple Open Source Flex mxml actionscript Table creator and editor?

I need it to be able to create simple tables and generate some text (xml or HTML ) representation of thair contents

View 1 Replies

Flex :: Papervision3d - Design A Sphere With 8 Holes Around One Of Its Diameters?

Jun 22, 2009

I am a newbie to Papervision. I want to design a sphere with 8 holes around one of its diameters. How do I do it? How do I draw anything on a sphere in Papervision?

View 1 Replies

Flex :: Image Shows Up In Design Preview But Not Application

Jun 23, 2009

My embedded images show up in the Flex Builder Design Preview, but are not displayed when the application is run. The images have relative paths (/assets/images/...), and the application is run on the server (wamp). I've appended the path to the compiled location [URL] and tried to display a image in the browser, and the image exists, too. I've compiled it via FlashDevelop, Flex Builder, and Ant. I've deleted and remade the bin/bin-debug/release/bin-release files to no avail.

View 1 Replies

Flex :: Design - Changing DataGrid Highlight Color

Dec 29, 2009

How can i change the color, when the user mouse over an item on datagrid or tilelist. Basically once the user mouse overs and once the user selects a file. How to change the default color to something else. The default is blue and i dont like it :)

View 3 Replies

Use Flex's Coding Ability With Flash's Design Interface?

Dec 22, 2010

I am looking for some decent tutorial that will explain the correlation between flash and flex (how can I use flex's coding ability with flash's design interface).

View 3 Replies

Flex :: Export Table Data To A MIME Resource(Flex3 Component) From Web Dynpro?

Mar 1, 2010

Is there a way to export Table data to a MIME Resource(Flex3 component) from Web Dynpro?

I have a flex3 component(US heat Map) which accepts a arrayCollection (state and value pairs). I need to create a webdynpro wrapper for this to use in Visual Composer 7.2.

What I am trying to do is migrate the flex components I made for Visual Composer 7.0 (using a VCXL wrapper) to Visual Composer 7.2 using web Dynpro. I have managed to migrate components which require simple input data types like integer or string, but I am stuck at those which require complex structures like an array collection.

View 1 Replies

Flash :: Design Tools For Creating Skins For Flex 4 Components

May 11, 2010

I'm looking for a tool to create just the skins for different kinds of Flex 4 components.I'd like to be able to create the components myself and have the designer/artist do the skin, but I don't think they'd like the idea of doing them by writing MXML files.

View 2 Replies







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