Actionscript 3 :: Uses Flare To Display And Interact With A Data Visualization?

Apr 21, 2010

I've got a pure AS3 (no Flex) project that uses Flare to display and interact with a data visualization. I just implemented some panning behavior, so you can click and drag the visualization around, and now I'd like to give the user a visual indicator that this is possible, by switching the arrow cursor with a nice grabby-looking hand icon.The user can click and drag at any time except when the mouse is over a clickable node (at which time the cursor swaps to a pointer - this behavior is already in place).

1) Do I need to create my own custom bitmap/sprite or is there a palette of built-in cursors I can use? (I'm not using Flex.)

2) Is there a way to simply replace the default arrow with the pan cursor project-wide, or do I need to attach the swapping to mouse events on display objects? Can I use the stage object to make this behavior apply everywhere?

3) How do I perform the swap? Do I use the Cursor object directly or do I need to get involved with the CursorManager?

View 2 Replies


Similar Posts:


How To Use Flare (Data Visualization) With Only Flash CS3

Apr 26, 2010

How do I use [URL] with Flash CS3 in AS3. I don't intend to use Flex.

View 1 Replies

ActionScript 3.0 :: Alternatives To The Flare Data Visualization Framework?

Apr 20, 2012

does anyone know of any alternatives to the flare data visualization framework that is in regular AS3 and not Flex? [URL]..

View 1 Replies

Flex :: Create A Interactive Graphs Using Flare Or Other Visualization Classes?

Jul 20, 2010

Does anyone know of software or flex/flash/as3 source or visualisation software that could be used to make interactive graphs, where the user would enter a query that would pull data from a MySQL database and the user would build a sunburst or icicle graph by dragging and dropping items into a tree-like structure and they would be able to view the graph? i have attempted to use flare but my programming skills are pretty bad. So far from what i gather, flare only allows the graphing of defined datasets rather than allowing a user to modify the dataset and thus creating a new dataset.

View 2 Replies

Flex :: 4 - Data Visualization For Analysis Of Relational Data (link-based Phenomena)?

Mar 15, 2012

I have been goggling a lot to find anything with link-based data visualization in Flex 4. something like below screen shoot (made using Ravis). Where user can drag these nodes, without removing the links and on double click of any node we can set some properties for that particular node. I found this Ravis (Birdeye), but not much of examples and support is available for that.

View 1 Replies

ActionScript 3.0 :: Make A Flash Visualization For Music Player - Internet The Visualization Does Not Show Up

Mar 25, 2010

I am using the flash SoundMixer.computeSpectrum. to make a flash visualization for my music player. It all works inside flash. but if i run it on the internet the visualization does not show up

[Code]...

View 1 Replies

Php :: Flex And Twittter Data Visualization

Jan 13, 2010

Is it possible to run the .json file which is has status data from twitter and run it with flex to create a visualization of the data ?

View 1 Replies

Flex :: Dynamically Add Image Objects To Display And Then Interact With Them?

Jan 13, 2010

Below is sample code from a Module I have in my Flex app. I want to dynamically create mx.controls.Image objects and add them to the display. I want the user to be able to move them (this works as below) and be able to change their z-index as well as record new X and Y coords after moving back to the database. How do I determine which object in this.getChildren() is the 'selected' item the user is working with? When I add a MOUSE_OVER event, for example, it does not work.[code]

View 1 Replies

Javascript :: Libraries For Large Data Visualization?

Feb 16, 2011

Are there javascript libraries that can handle large data visualization? I've seen Protovis, but not sure how much data it can handle. Also, how do Actionscript libraries compare to Javascript in terms of performance?More:I've tried Flare, but seems to be slow for my applictaion. Now I'm yet to figure out if it is the rendering or if it is the shaping of data for rendering. I am looking at interactive graphs like the JobVoyager.

View 1 Replies

ActionScript 3.0 :: Recommendations On Data Visualization Libraries?

Jun 26, 2009

Are there any good data visualization libraries that you swear by? I'm looking into what is available for the creation of tree-like graphs that represents rounds of competition.

View 3 Replies

Create A Small Data Visualization Project

Aug 9, 2004

Im trying to create a small data visualization project. i'm wanted multicoloured balls to fall the mouse round the screen and when you click one it brings up data from an xml document. im currently using a image of a ball is there away to generate one in flash so far this is what i have

ball.onEnterFrame = function() {
var xMouse = _root._xmouse;
var yMouse = _root._ymouse;

[code]....

View 14 Replies

Flex :: Display Flash Movies Inside Application And Interact With Them?

Feb 11, 2010

Since I've never done this and the google results are quite random, I ask here: Is it possible to display Flash movies inside a Flex application and interact with them?

The scenario is as follows:

I'm developing a new application in flex Another, already completed application is given to me as SWF (or perhaps SWC, don't know any details yet) I have to insert this second application inside in my Flex application, which should be no problem afair I have to interact with this application: send and retrieve data. Don't know any further details here, too.

Will this be possible? Or is Flex only capable of displaying the SWF without the possibility to interact with it? I hope you can understand, what I want (have to...) do.

View 1 Replies

AS3 :: Flash - OOP Visualization Logic - Linking Filters And Data Source?

Aug 16, 2010

I'm trying to visualize the results of a quiz in ActionScript 3.0.What I would like some input on is how to best link the "filters" (top right corner in attached image) to the data source in a flexible OOP way.The result array now contains both number of correct answers and meta data about the person taking the quiz. The meta data could be both discrete (sex) or continuous (age).

results = [{name: "Lisa", correct: 5, sex: 0, age: 52}, {name: "Peter", correct: 3, sex: 1, age: 32} ... ]

How do I tell the boxes to, for example, change color when I change filter?Should each box object hold its own data or should there be some sort of controller listening to the filter object to dispatch an event and thereafter call a box.setColor method?

View 2 Replies

Actionscript 3.0 :: Display Html In Flash Movie And Interact With Hide / Show Divs

Apr 13, 2009

I have a movie clip that displays an embedded html with a bunch of divs that are expected to hide and show other divs when the users click them. i.e. imagine that you have a span with an instruction in javascript to show a div when you click it. I already made the html file, the external css and the external js. The movieclip (in actionscript 3.0) loads and displays the html content and also the css, but i haven't managed to figure out how am i supposed to link or use the javascript to do the trick. I've tried so far doing an exhausting research over the internet for the past few days and the only infromation i've got is that web developers use externalInterface to access javascript functions, but they use flash buttons to execute the js code, and it appears to me that i cannot use or embed flash btns in my site. I don't know, I'm kinda new to flash and this is the first time I work with actionscript 3.[code]or how do I achieve de hide/show thing with another method? I'll be wandering around the site in case you have any extra doubts about this subject.

View 2 Replies

Licensing :: License The Data Visualization Components (charting) For The Flex SDK On An Automated Builder Server?

Oct 23, 2009

I have a professional license of Flex 3.3. This allows me to create applications using the data visualization components (charts) without watermarks. However, all of release builds (test, production, etc) occur on our build server.

The build server only has the Flex SDK installed (not full Flex Builder). As a result the SWFs compiled with this SDK contain watermarks on all the charts. How can I apply a Flex Builder Professional license to the build server to remove the watermakrs w/o installing Flex Builder?My build environment is Flex SDK 3.3 + CruiseControl.NET + NAnt.

View 3 Replies

Flash :: Web Based Visual Programming Interface Based On Python For Data Visualization

Nov 4, 2011

I just discovered impure.com and was very impressed by what can be achieved in terms of visualizing data using their workspace. Although the platform is free to use, but not open source yet. This causes a few problems because the API section works with .com sites for eg. for ebay, so I cannot visualize ebay listings for regional sites such as ebay.in because the link to ebay.com is hardcoded.I searched around, but didn't find other projects that offer a similar way to work with site APIs and other data sources with the kind of user interface and detail that impure.com does in a realtime way within a browser window.This brings me to the questions:

-What technologies would be involved in creating a similar kind of project

-What are the open source tools that can help develop a fullscreen UI to render the workspace. Are there any alternatives to flash for this, and how do they compare

The goal would be to use standard python data structures, python scripts to do some processing on these data structures, scripts to gather data from csv, json and API sources such as google yahoo, wikipedia and flickr, and scripts to render graphs, tag clouds, network visualizations etc. Then bring them all together into a visual interface that supports drag drop and simple type checking.How would the python backend integrate with the UI.

View 1 Replies

Flex :: Won't Display Data In Run, Or Won't Display Data In Debug?

Aug 15, 2011

This is the edit to my question. There is quite a bit of code here, but the problem area is below the second set of three line comments. I stuck the rest in just in case I'm completely wrong about where the problem is. With the "if" statement I can display fine in a run, but not in debug. If I get rid of the conditional it runs fine in debug, but not in a regular run. These errors only occur on the first run of the quiz. In either mode it runs fine fi I take a second quiz.

// ** this function is called from another component that passes in the array of qnums
// ** and then function clears data from previous quizzes. Component starts in the
// ** "loadingState **//

[code].....

View 1 Replies

Cs5 :: Create Something Like A Lens Flare In It?

Aug 4, 2011

I am looking for a way to create a lens flare in cs5 on an alpha channel. i tried creating a small white circle and then putting several glows on it but it is really looking cheesy.. i also tried doing it in photoshop but was not able to figure out way to make a lense flare on an alpha, save as png and then bring it into flash without it having black edges.

View 1 Replies

ActionScript 2.0 :: Display Data From MySQL And Display In A Dropdown Box,text-field?

Oct 21, 2009

I am a complete rookie in ActionScript2.0/Flash.I just started learning regarding a project. My problem is I want to display data from MySQL in a DropDown Menu in Flash. the SendAndRecieve functionality only aids us to receive any responses,right?(Please correct me If I am Wrong.

View 2 Replies

Flex :: Overlapping Flare Canvas - Clip It To The Container?

May 11, 2011

I'm having a serious issue when trying to display a FlareCanvas within my application. It simply doesn't respect the bounds (see image here)

I've tried "clipContent" and a bunch of alternatives but nothing seems to prevent the canvas of being "passing" over its container. What should I do? It is taking me several weeks!

[Code]...

View 1 Replies

Actionscript 3 :: Inform FLEX Where The Flare.Prefuse Library Is?

Dec 8, 2011

I have Flex 4.6 and the last Flare.Prefuse update. Flare has a src directory with subdirectories of all the various classes. Compiling sample code produces "Definition flare could not be found" which is understandable. I am just using the command line version of mxmcl to compile the code. What do I need to do to link in the Flare library?

View 2 Replies

Actionscript 3 :: FLEX Data Manipulation Separating Data For Bargraph Display From A PHP Call

May 25, 2011

I want to separate the data from the PHP call to Different CollectionArrays So that I can use the data for a bar-graph;

I created a static version of the bar-graph and separated the Collection array manually I don't want this done manually I need to do it dynamically. So what I am trying to understand is where to put the event-listener how to add to a collectionArray then once the collection array(s) are built. use that information to build the bar graphs...

/*
*
36, > 2 years, Compliance
6, 0-90 Days, Compliance

[Code].....

View 2 Replies

Flash :: Data Integration - Get Image Data From Php And Also Display

May 23, 2011

I want to get image data from php and also display in flash. I want to know... how to read and display imagejpeg( $imgData ); from php. I am able to get php data in flash through below method...

[Code]...

View 3 Replies

Data Integration :: XML Data Doesn't Display?

May 21, 2007

I'm trying to deploy flash e-learning with dynamic content on a content management server. The xml will not display, no matter how many different approaches I take. So I need a method of encapsulating lots of text within Flash and referencing it from say, an actionscript window.

I seems that referecing any outside content, be it an external actionscript file or text file is out, so I'm left with the option of encapsulation.

View 1 Replies

Data Integration :: Getting XML Data To Display?

May 12, 2008

I'm having a slight problem getting XML data to read out in dynamic text files. I'm doing a pretty small experiment here. The XML file loads fine. I just must be making some small error in how I assign the value of the text fields to the values in the XML file. Can anyone please tell me my error? I am using Flash CS3 and ActionScript 3.

[Code]...

View 2 Replies

ActionScript 2.0 :: Make Mp3 My Visualization?

Aug 27, 2004

Does anybody know how to make mp3 visualization?

View 3 Replies

ActionScript 2.0 :: How To Make MP3 Visualization

Aug 27, 2004

How can one make mp3 visualization?

View 3 Replies

ActionScript 3.0 :: Way To Display XML Data

Oct 21, 2009

I have an XML response that goes like this[code]...

View 3 Replies

ActionScript 2.0 :: XML Data And Display?

Aug 24, 2011

ActionScript 2.0 :: XML Data and Display

View 6 Replies

Flash :: Php - JQuery Or Other Graph Visualization?

Aug 23, 2011

I have two basic bar charts and I am currently using XML/SWF Charts which is great but the problem I have is I need to be able to send these graphs via email to the user. As well as display them on the site.

I know sending Flash is a bad idea, I would love to find a way to convert my current graphs to an image, but am pretty certain there is no quick fix without building a work around myself.

Therefore what are the best open source or closed solutions for this problem.I need to be able to display two graphs dynamically and then email them to users.

View 4 Replies







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