Flex :: Unable To Recalculate A Value Based On Decreased Current Value?

Nov 2, 2010

I'm trying to build a minimum payment calculator and am having a problem with the minimum payment not being able to calculate based on the current monthly value. What I think should work...locks up the browser. I've commented out the line that is giving me a problem in the code below.

<?xml version="1.0" encoding="utf-8"?>
<s:Application
xmlns:fx="http://ns.adobe.com/mxml/2009"

View 3 Replies


Similar Posts:


Flex :: Avoid The Copy Of The Empty Folders, Based On The Current Source Library Structure?

Dec 4, 2009

Is there a way to avoid the copy of the empty folders, based on the current source library structure, in bin-debug folder?I'm using Flex 3.2

View 1 Replies

ActionScript 3.0 :: Recalculate Point X / Y Value After Matrix Transformation

Jun 16, 2010

I am doing a matrix transformation on a Display Object. I got this function from another site, but basically it scales a display object around any point.
ActionScript Code:
public static function scaleAroundExternalPoint(m:Matrix, x:Number, y:Number, multiplier:Number):void{
m.translate(-x, -y);
m.scale(multiplier, multiplier);
m.translate(x, y);
}

But my problem is that I have to do multiple scales in a sequence and after scaling, the points defined in the XML no longer correspond. Let me first say that all the points being scaled around are located in an XML file. They are all relative to the display object's registration point (0,0) when it is normal, i.e. a scale of 1. Also, I have created a class that retains the target object's original Matrix so that the percentage you pass in is relative to the original scale instead of the scale after each call. But basically, with the scaleAroundExternalPoint function by itself, if I have an object that I scaled to twice it's size, the multiplier would be 2. but say I want it back to it's original size. The multiplier would NOT be 1 since that would just leave it at a scale of 2x. It would have to be .5. The important parts of the class are below.

ActionScript Code:
public function ZoomUIComponent(isKeyboardControlled:Boolean = false, disabledAlpha:Number = .25,
max:Number = 2, min:Number = .5, precision:uint = 2,
seconds:Number = 1, step:Number = .1):void{
this.disabledAlpha = disabledAlpha;
this.inControl = InteractiveObject(getChildByName("zoomIn"));
_isKeyboardControlled = isKeyboardControlled;
[Code] .....

It's retaining the original matrix and then calculating based on that EACH TIME. So how would I find the new X and Y values of the original points so that I can scale around them?

View 1 Replies

Movie Startup Based On Current Url?

May 28, 2009

I am absolutely new to animation, I have created a movie for web page (using Flash 8)purpose:

--movie is the navigation menu for few of my website's pages.

--uses gotoAndPlay() to play a different animation (in same movie) for each web page.

Works, but late, movie plays from 1st to 61st frame (on 61st frame there is a code gotoAndPlay(1);) then it moves to actual frame number. In the 1st frame of my movie I insert this actionscript:

//code starts
import flash.external.ExternalInterface;
var surlPath;

[code]....

View 1 Replies

ActionScript 3.0 :: Going To A Frame Based On The Current Time?

Nov 19, 2010

I have a flash file of a snowman doing various activities. He's doing 7 different things (all individual movie clips) and I place each of the movie clips on the first 7 frames, I placed a stop action on each one.Here is the code I used

var myDate = new Date();
var localHours = this.myDate.getHours();
if (this.localHours>=6 || this.localHours<=18)

[code]......

View 12 Replies

ActionScript 3.0 :: Set Current Frame Based On Mouse X Position?

Mar 26, 2009

I am attempting to create 360 degree spin-around product viewer. So far I have a movie clip with 24 frames, each one with a different 15 degree angle shot of the product. Upon playback of the movie, the product appears 3D, spinning 360 degrees.

That was the easy part. Now what I need is to be able to click and drag the product to change which view you are seeing (or which frame in the mc you are on) thus producing a spinning effect. How can you code, in AS3.0, that when the mouse is clicked and drug, go to a certain frame based on the current X position of the mouse?

View 21 Replies

Professional :: Creating Text / Image Box Based On Current Date

Feb 25, 2010

I'm currently working in Flash mx 2004 and am creating a version of 'what happened in history today'. So my final layout will have the following iobjects.

Heading: 'current date'
Title: 'On this day in History'
Text box: Which displays the right description from a text file. history.txt
Image box: which displays a pic related to the current date.

I know basic Flash but have been playing around for ages am having real trouble getting things to work correctly. The main priority is to get the text loaded based on the current date. I have an images folderwhere the pictures are stored with files names related to date i.e. 14feb.jpg and my history.txt file is set out with a line for each date. i.e., 14feb=Valentines Day etc.

View 3 Replies

Actionscript 3.0 :: Change And Load Pictures Based On Current Date?

Feb 22, 2009

how to control the display of pictures by date?

I want to display images based on the date. Then it changes to the next one. For example for March it would be picture: img01.jpg and for April I would like the flash movie to automatically load the next picture: img02.jpg.

View 2 Replies

ActionScript 3.0 :: Recent Socket Data Transfer Performance Decreased On Macintosh Systems?

Feb 1, 2012

I'm using a .swf to connect to a socket and stream data as fast as possible for 60 seconds to measure connectivity speed.In other words a speed test.In the past say month or two, I've found Macintosh systems 10.5 and higher experience a significant slow down, In testing I see my socket connect and reach about 2.5Mbps - 3.5Mbps and literally stick as though the .swf was throttling the connection.

This 'problem' is random and appears to come and go. I've tested this in Chrome,Firefox and Safari with all the same results.Using the exact same test on any Windows or Linux OS works totally fine.Admittedly I'm an ActionScript novice however the code I'm using is below and has worked for some time up until recently.

ActionScript Code:
var s:Socket;
var Tbytes:Number = 0;
function connectToSocket():void{

[code]....

View 0 Replies

ActionScript 3.0 :: Unable To Click Some Words In The Text And Based On The Selection Clicked?

Mar 8, 2011

I have a simple TLF text box on stage. i want to be able to click some words in the text and based on the selection clicked got to some other place on a timeline or set a variable (not a link to an external web page).
 
sounds like it shout be simple but i cannot seem to find any information about it.
 
i seem to remember having done something similar years ago in as1 or as2.

View 3 Replies

Flex :: Unable To Set Font Family Style To Spark Button In Flex 4.6?

Feb 28, 2012

I have created a style in which i am defining a font family.When i apply this style to label it reflects the font were as there is no change when it is applied to a spark button.I Tried various way to Apply font style but it doesn't work.Other properties work fine except font family. Even i tried creating skin class and set the font family style of label in it. While previewing the skin i can see the changes but when i apply it to buttonApproach 1

@font-face{
src:url("HARNGTON.TTF");
fontFamily: MyF;

[code].......

View 2 Replies

Actionscript 3 :: Flex - Get URL Of Current Page?

Sep 15, 2009

How do I determine the URL of the current page from within Flex?

View 7 Replies

Flex :: Get The Current Page No. In Paper?

May 16, 2010

there is no tags on flex paper. so make tag on flex paper.

How do i get the page number in flex paper. I want to add some events when page is changed.And i also want some events on particular some pages. so i need that current page number which is viewing by the user in flex paper.

View 2 Replies

Flex :: Get A Bounding Box For The Current Selection?

Jan 25, 2011

I'd like to do fancy things the selection indicator. How do I get the bounding box for the currently selected characters?

View 2 Replies

Flex :: StopEventPropagation Beyond Current Component

Mar 29, 2011

I have a TextInput inside a spark Item Renderer. I need to undo some behavior in a library I'm using by stopPropagation of the mouseDown and mouseUp event for the TextInput. However, I would like the TextInput itself to handle such events normally - otherwise the caret to cursor transitions don't seem to be properly handled.

Edit: ok, here's some code to explain what's going on (although it's completely unrelated from what I'm doing, so it's not an exact depiction of my specific situation). As I mentioned above I need to be able to stop the propagation of mouseDown and mouseUp from the TextInput to a component up the food chain - event.stopPropagation() in mouseDown and mouseUp for the TextInput does the trick. However, it messes up the caret / cursor handling for the TextInput itself. Try the code below with or without the event.stopPropagation() and you should see what I mean.

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2009/03/19/using-a-custom-item-renderer-function-with-the-fxlist-control-in-flex-gumbo/ -->

[Code]......

View 2 Replies

Flex :: Datagrid Insert Row Below Current Row?

Jun 15, 2011

my application needs to allow users to insert rows below the current datagrid row. My solution is to to add a row to the dataproviders collection. This works, but the row does not appear beneath the current row the user clicked on.The Datagrid has a default sort order (date ASC), which re-orders the data...so this seems to affect the position of the row in the grid.

View 1 Replies

ActionScript 3.0 :: Get The Current Dir From A Flex Application?

Sep 15, 2009

Is it possible to get the current dir from a flex application?

View 1 Replies

Actionscript :: Flex - Dynamically Populate The Options In A Combobox Inside Of A Grid Based On Another Row In Flex?

Sep 8, 2009

I'm trying to setup a DataGrid that contains a column of combo boxes. The values of the combo boxes are defined by data specific to that row. I cannot get this to work though, I'm asking for a solution to this, either fixing what I have below or a recommendation on a different way.One of the columns of my DataGrid has an object derived from a ComboBox for an ItemEditor. The itemEditor is set like this:

<mx:DataGridColumn editorDataField="selectedItem" dataField="type" editable="true" >
<mx:itemEditor>
<mx:Component>

[code].....

View 1 Replies

Flex - Get A Collection Of UIComponents Based On A Stylename In Adobe Flex?

Nov 4, 2009

Does anyone know an Actionscript equivalent of the javascript getElementsByClassName.

What I would like to do is add a custom 'stylename' to various components which I can then use to get a collection of these objects and therefore process their visibility property.

The idea is I want to hide various components based on what roles a logged in user has - I just want to make this flexible by adding an array of rolenames to a custom property or use the stylename property on a Canvas or Panel etc.

View 1 Replies

Flex :: Get Current Operating System In Adobe Air?

Jun 30, 2009

I'm making an App using Adobe Flex/Air. I was wondering if there was a way to get the Operating System the Air app is running on?

View 3 Replies

Flex - HTTPService Not Retrieving Current Data?

Oct 13, 2010

I'm using mx.rpc.http.HTTPService to retrieve data from a web service. On the initial call to "loadWsData", HTTPservice accurately retrieves all the data.

However, on any and all subsequent calls HTTPService does not accurately retrieve the data; rather it always retrieves the first data set. I've confirmed that the web service is providing accurate data, both from web browsers and a ruby ws client script.

[Code]...

View 1 Replies

Flex :: Retrieving Current Frame Number

Jan 7, 2011

What is the actionscript 3 syntax for retrieving the frame number that our object is currently in ?

View 2 Replies

Flex :: Global Variable - Updating To Current ID

Aug 10, 2011

I am trying to work with a global variable in Flex and it does not appear to be working correctly. In my default mxml file I declare the following
public var appID:int;

This variable keeps track of the session ID across my application for SQL purposes. On another mxml page I call the following code which should update the global variable to the current ID.

// Get the ID
sqlStatement.text =
"SELECT Max(id)FROM applications";
sqlStatement.execute();
var result:SQLResult;
result = sqlStatement.getResult();
FlexGlobals.topLevelApplication.appID = result.data[0];

Lastly I run a SQL Update query using the ID as a parameter. My problem is that the FlexGlobals.topLevelApplication.appID is always 0, for some reason the global variable never gets updated, I have checked to ensure that result.data[0] is correct but the value never gets passed to the global variable.

View 2 Replies

Professional :: Warning Unable To Load SWC And Unable To Test Movie Afterwards (CS5.5 Also In CS5)

Oct 13, 2011

I work with Flash Pro allmost 11 hours per day and every while i get a error  which messes up everything. Approximetly i get this after about 2-3 hours withevery project.After i get this error there is no chance to test movies afterwards.I see a fast flash of the loader window but it dissapears so fast i cant even really see if it is loader.

View 1 Replies

Actionscript 3 :: Flex 4 - Current Items In Viewport Of A List?

Mar 2, 2011

I have provided an ArrayCollection to a List, works fine, scroll and sweet.

I am able to access the carretIndex (though not necessarily the ones in view) by
list.caretIndex

Is it possible to access the list of items currently visible in the List.

What I am curious to know, is how can I can access (read) the first (or any of the) item in a given View port of the list.

View 2 Replies

AS3 :: Flex - Show The Current ProgressBar Value Of Process Within A Loop?

Apr 26, 2011

I dont know how to show the current progress in progressBar component when the process is a loop that requires a lot of seconds to do the job. Inside the loop, i setProgress and update the progressBar label in every cicle, but it is not shown up to the job is done. I dont need this, because i want to see the advance of process.

View 2 Replies

Flex :: Current Theme Spark Styles Not Working

May 2, 2011

I am trying to figure out why I am getting an error when using the chromeColor (or other spark style related items):
<s:Button x="10" y="208" label="CALL" width="185" fontWeight="bold" id="bCall" chromeColor="#F90000"/>

This is the error:
The style 'chromeColor' is only supported by type 'spark.components.Button' with the theme(s) 'spark'.

Yet in project - properties, the theme is set to Spark. I also tried setting it to Halo and then back to Spark. Here is my app definition:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="[URL]"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="800" minHeight="600" width="100%" height="100%">

I have seen references that define the mx namespace as "xmlns:mx="library://ns.adobe.com/flex/halo", but then my mx components break (TabNavigator for example) - not sure if that would fix it anyway. I is using flex 4.1 library (I believe the project was originally created when flex builder was at 4.0 if that matters).

No other libraries included.
Project - properties is set to MX+Spark.

Also, if I remove that chromeColor, the project compiles, BUT there are warnings such as: The style 'borderAlpha' is only supported by type 'spark.components.TitleWindow' with the theme(s) 'spark'. Flex Problem (and others - borderColor, cornerRadius, dropShadowVisible).

View 2 Replies

Flex :: Get Current Target Values While Effect Executing?

Jun 29, 2011

At a certain point in an effects execution i would like to execute some code.

Say for example that i have a move effect on objectA and half way through this effect i want to make objectB disapear.

Is there any functionality built in to the spark effects framework to do this or do i need to implement the effect myself by hand?

View 2 Replies

Flex :: Get A List Of All Skin Classes In The Current Application?

Jul 4, 2011

Is there a way to get a list of all the skin classes that are in the current application? I'm using Flex 4.5.1.

Here is the loop that I'm using now to get all the skins,

for each (var item:Object in styleManager.typeHierarchyCache) {
for (label in item) {
if (label=="spark.components.supportClasses.Skin" ||

[Code]....

The reason why is because I want to list all the skins in the application and then be able to apply them in real time so I can see what they look like.

View 1 Replies

Flex :: The Current State Of NavigateToUrl And Popup Blockers?

Nov 25, 2011

Apparently there's a problem with the nagivateToUrl function in Flex, namely that it tends to get blocked by the popup blockers in some browsers. A project I've recently joined is using a workaround for Firefox using browser sniffing, but a new feature would be a lot cleaner to implement if I could drop this. whether this problem still exists with current Firefox versions? What about Firefox 3.6?

View 1 Replies







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