ActionScript 3.0 :: Make A Graph In Flash

Feb 9, 2010

i have a project to do on flash..its about laws of physics and i want to include dynamic graphs.. e.g projectile motion.. the guy enters the distance and the angle and a graph is plotted from the calculations it makes.thing is that i dont even know to make a graph in flash..now i have to make a dynamic one.

View 9 Replies


Similar Posts:


Flex :: Graph Data Provider Has Values But Graph Is Not Plotting

Aug 22, 2011

In the below code the traced values are correct its there in the chart data provder but the

input graph is not plotting.there is no error in this code.Can anyone solve it?

function fnctn(evt:Event)
{
var tp:int = bulb1 + bulb2 + bulb3 + bulb4;

[Code].....

View 1 Replies

ActionScript 2.0 :: Equation Generate To Graph \ Show A Slope Graph?

Jan 26, 2010

School Project with the following actionscript in Flash 8, I want to show a slope graph? What code to add to make slope graph work?

/*var orig_x:Number;
var orig_y:Number;
orig_x = (plane_mc._x)+(plane_mc._width/2);

[code].....

View 0 Replies

ActionScript 3.0 :: Grab A Sound And Make A Realtime Waveform Graph?

Mar 7, 2012

I found on Adobe website this cool as3 code to grab a sound and make a realtime waveform graph (I cannot post the link..The problem, to me, is that I cannot create in the same stage 2 graph from 2 input: the mic and an mp3.In my purpose, I'd like a stage with just 2 waveform graph. the upper one with the realtime voice from the mic input.the second one (just below the previous one) with a similar waveform graph but drawn by an MP3 file (or wav).

At the beginning I tried to use 2 inputs ".microphone" but I can always see just 1 graph. It's like the resources cannot be shared (al least not so simply).

View 3 Replies

Flash :: Post A Swf Via Graph Api Using PHP SDK?

Aug 29, 2011

Flash - How do I post a swf via graph api using PHP SDK

View 1 Replies

ActionScript 3.0 :: Using Facebook Flash Graph Api?

Oct 9, 2010

I have som porblem with Facebook Flash graph API I am receiving request, but realy when I check my wall in facebook FacebookDesktop.api not adds Like or unLike

private function likeClickHandler(event:MouseEvent):void{                              handleLikeClick()          }                                        protected function populateLikeCount():void {               if (intData.user_likes) {                    likeBtn.label = 'Unlike';               } else {                    likeBtn.label = 'Like';               }               likesCount.text =

[code]....

View 1 Replies

Flash - Tag Photo Graph API / REST API?

Feb 3, 2011

I'm doing a FB app with the Graph API in Flash. I've got everything working which consists in uploading some images created by the user in the app. The only part that I'm missing is how to tag these photos as with the Graph API it is not possible.

So I was wondering if it's possible to call a method of the REST API even though I'm using the Graph API.

View 1 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

Flash - AS3 Graph Api -> Popup Blocked?

Jan 16, 2012

we developed an as3 facebook application (http:url....), but unfortunately the authenification popup is blocked in all major browsers (ie, ff, chrome), which leads to a high rejection rate for our campaign.If I have a look here ... http:[url....These fellows used the same api (http:url.....), I checked it with a decompiler and their popup is never blocked!.

View 1 Replies

Flash :: Draw A Triangle In A Math Graph?

Mar 31, 2010

How to draw a triangle in a math graph which displays X and Y axis.

View 2 Replies

Flash :: Using External Class For Facebook Graph Api

Jan 21, 2011

I'm wondering. Is it possible to create an external class just to initialize the API then use functions to call the different items? Like a shortcut to using the API without all the nitty gritty stuff.

View 1 Replies

Flash :: Uploading Images Through Facebook Graph API

Jan 24, 2011

I'm trying to upload a picture through the Graph API, but somehow it doesn't get through. Correct me if I'm wrong, but if I don't give an album ID, it should create an album by itself right? I'm a quite confused by that. Right now, I'm using

[Code]...

View 1 Replies

Flash :: Getting Friend's Information From Facebook Graph API

Jan 25, 2011

I'm asking this question because I can only find examples and answers for the PHP version. I need the Flash version. I'm trying to get my friends information, but I think I'm doing it wrong because if I trace it, it'll give me either [object Object] or undefined.

I did Facebook.api("me/friends", handleApiGet);

private function handleGetApi(success:Object, fail:Object):void
{
if (success)
{

[Code]....

ExternalInterface.call("doAlert", success) returns me [object Object], [object Object]. I also did ExternalInterface.call("doAlert", success.name), it returns me undefined.

View 1 Replies

Flash :: Uploading BitmapData Using Facebook Graph Api?

Feb 1, 2011

I've been looking around the internet on how to use the PostRequest class given by the Facebook in their Graph Api, but I couldn't find anything on it. I'm wondering how to use it to upload a bitmapdata. It just doesn't seem to be moving at all

[Code]...

Both doesn't work, which puzzles me. The first one worked without encoding it in any way, so I don't get why it doesn't work when I try to just call it like that.

View 1 Replies

Flash :: Draw Sinusoidal Line-graph?

Jun 28, 2011

I'm trying to draw a static graph based on an Array of Numbers. This graph should be nice smooth sinus-like.The bottom values should be always zero, the upper values are specified in an Array of Numbers.

I've been trying to achieve this effect with curveTo(), but without any luck.

EDIT: Values are like: 10, 15, 40, 28, 5, 2, 27 etc.

View 1 Replies

Flash :: Smooth Performance With Live Graph Updated Every 1 / 30 Th Of Second

Sep 5, 2011

I wanted a suggestion from you guys regarding drawing and scrolling performance. The requirement is - I have to draw a graph with sound volume's values updated at 30 fps. And I need to draw this graph and simultaneously scroll to fit in the new values. So the length(width) of the graph is unlimited.

View 1 Replies

ActionScript 3.0 :: Flash - Finding The Main Points On A Graph?

Mar 17, 2012

This is more of a question of logic than coding.. but here goes. I've got an array of points, and when plotted on a graph in flash it shows something like this:The blue points just highlight the points of each spike. While the red points are points I want to find.My question is, how do I find the red points on each spike?At first I tried sorting through the array for the highest points, but that didn't give me all the red points as some blue points are higher than the red points.Just by looking at the graph I can immediately see the points I need, but it's a bit harder to find those using code..

View 10 Replies

Facebook Graph API - Loading Video Thumbnails CrossDomain (Flash)

Apr 11, 2012

I'm trying to display some Facebook video thumbnails in a Flash application, all of the video thumbnails I try to load seem to be hosted at [URL]. However [URL] cannot be loaded (Access Denied). Is there some way around this? (other than loading the images through a proxy). Maybe an alternative url which can be used?

View 2 Replies

Flash :: Display The Coordinates Of A Random Triangle In A Graph Which Ranges From +10 To -10 XY Axis?

Apr 3, 2010

how i display the coordinates of a random triangle in a graph which ranges from -10 to +10 in XY axis with the points like A(2,1) etc with arcs in each corner, in actionscript 2.0

View 1 Replies

Real Time - Draw Candle Graph Using Open Flash Chart?

Nov 24, 2010

I want to draw stock price in real time as a candle graph. I get open flash chart from someone and it looks good at drawing. I don't know how to update the candle graph in real time (using Ajax?), and is it a good way? I use Python a lot. But I cannot find tools as easily to use as OFC.

View 3 Replies

IDE :: How To Loop Drawing Sin Graph

Apr 23, 2009

I create a movieClip is "sin_mc".In this MovieClip,I drawing a sin graph in a period.I want to loop sin Graph 4 times but i don't know actionscrip.

View 1 Replies

ActionScript 3.0 :: Graph A Simple Function?

Nov 17, 2011

I have been searching the net for a tutorial how to graph functions. I found one from Barbara Kaskosz, very detailed, and too much scripting. Too much for me. Is there another way or place to learn, or I am doomed, and have to face the music and study her stuff. All I want, is to be able to graph a simple function.

View 4 Replies

Professional :: Making An Interactive Bar Graph?

Apr 4, 2012

I want to make an interactive gizmo to explore 20%. so I want a little slider and a red (20%) and a green (80%) bar so that when I slide the slider to different numbers - lets say between 1 and 100 I get a graphical representation of 20% of the number selected as well as the actual numbers? so at 50  red column is 10 green is 40. at 100 red is 20 and green is 80?
 
I could just have a MC with different frames and select a few numbers to highlight and fake it.

View 3 Replies

Flex :: Export A Graph To Excel?

Mar 31, 2011

Is there a way to export a flex graph to excel?

View 2 Replies

Actionscript 3 :: Graph Library For Playbook?

Mar 31, 2011

I need a line chart in my playbook app. does anybody know a library for that? (for as3 mobile air projects)

View 3 Replies

Php :: Facebook Graph API Get Friends Statuses

May 7, 2011

how to get the user status, but the app I currently working on need to get user's friends statuses. Can I do this without needing user's friends to approve the app? I still can't find how to to this in the graph API.

View 1 Replies

ActionScript 3.0 :: Plot Sprite On A Graph?

Sep 30, 2009

I'm new to Flash and actionscripting and need some general information on how to plot a point on a graph. I've been researching how to make this happen and an wondering if I'm on the correct track.

It seems like the best way to do this will be to place the sprite at the x,y location on the stage that represents the graphs origin, then add to the x value the value of x for the point of interest, then add to the y value, what the y value of the point is.[code]...

View 0 Replies

ActionScript 2.0 :: How To Design 2D Cartesian Graph

Jul 26, 2010

How to create an interactive 2d graph table in flash (AS2)? I just want to create a very simple cartesian y,-y x,-x axis table and be able to put multiple marks which will display their coordinates.

View 0 Replies

ActionScript 3.0 :: Directed Graph Arrows?

Feb 25, 2011

I want to make a directed graph. Is there any way i could attach an arrow to the line between two nodes ? I used moveto/lineto to draw the line between source node and destination node and i want an arrowhead to point in the right direction.

View 2 Replies

ActionScript 2.0 :: Drawing A Graph From An Array?

Nov 4, 2004

I'm not sure why but I can't get this to work. I'm just trying to make a graph based on my array. Each piece of my array is (x,y).

root.createEmptyMovieClip ("graphedlines", 10);
with (_root.graphedlines){
lineStyle (5, 0x000000, 100);

[code].....

View 1 Replies







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