[flexcoders] regex

2009-01-12 Thread flexaustin
Does anyone know how to write a regular expression that says find a pattern in a String that contains 0 or more letters, numbers, or spaces, but not a ", (one double quote and a comma). TIA

[flexcoders] regular expression tester says it works, but it doesnt????

2009-01-12 Thread flexaustin
pattern = new RegExp('(?<=\"name\":\").*(?=\",\"\w*:)', 'i'); var resultArr:Array = pattern.exec(data); resultArr ends up equaling null; But if you check this: (?<=\"name\":\").*(?=\",\"\w*:) using http://gskinner.com/RegExr/ it says it works using this data "error":32,"count":47,"group":true,"

[flexcoders] Re: regex

2009-01-13 Thread flexaustin
ame":").*(?=","\w*:)/i; var resultArr:Array = pattern.exec(data); trace(resultArr); Any suggestions? --- In flexcoders@yahoogroups.com, "Manish Jethani" wrote: > > On Tue, Jan 13, 2009 at 9:56 AM, flexaustin wrote: > > Does anyone know how to write a regular expre

[flexcoders] Re: regular expression tester says it works, but it doesnt????

2009-01-13 Thread flexaustin
").*(\",\"[a-zA-Z]* > \":)','i'); > > This matches "name":" and ","id": > > Generally speaking, I find the easiest thing to do with regexps is to > make them smaller and get the smaller ones working first then strin

[flexcoders] Flex to Ajax/Javascript

2009-01-13 Thread flexaustin
Is it possible to send over more than simple objects from Flex to Ajax, meaning can I send over more than a int, String, or Number? Can I send say: var myObj:Object = {something:"hello", id:45, {title:"groupify", model:"somemodel"}}; Then send over myObj?

[flexcoders] Re: regex

2009-01-13 Thread flexaustin
Thanks! --- In flexcoders@yahoogroups.com, "Manish Jethani" wrote: > > On Tue, Jan 13, 2009 at 8:16 PM, flexaustin wrote: > > > So if I have this string (quotes are included in the string): > > "name":"Big Brown Cow '(--Foot)'&quo

[flexcoders] Re: regex

2009-01-13 Thread flexaustin
Ok, this i killing me. I have down to this: \\\name:something\\soemthing\\ How do I replace \\\ with \\ and all \\ with \. Thanks, Jason --- In flexcoders@yahoogroups.com, "Manish Jethani" wrote: > > On Tue, Jan 13, 2009 at 8:16 PM, flexaustin wrote: > > >

[flexcoders] Re: regular expression tester says it works, but it doesnt????

2009-01-13 Thread flexaustin
atched the parentheses is "houses or houses". > > Just add whatever characters are valid for the title into the > character set [a-zA-Z ]. Or you could let it match everything that's > not a comma or double-quote buy doing this: > > var pattern:RegExp = new

[flexcoders] Hslider and Vslider (Fx 3.2) causing issues OR is it my code?

2009-01-21 Thread flexaustin
I have this code in my custom component that contains a slider and when my slider is set to a scale of 1.75 (yes things are scaled very large in my app) my custom components on the stage disappear? What I mean by disappear is that my components scale as they should but when it hits 1..75 scale ever

[flexcoders] Re: Hslider and Vslider (Fx 3.2) causing issues OR is it my code?

2009-01-21 Thread flexaustin
, thus placing it in center of the screen, and zoom to 1.75 its like all graphics disappear and only textfields are shown. If anyone knows of any screen capture software I can create a video and post it. TIA, J --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > I have

[flexcoders] Re: Hslider and Vslider (Fx 3.2) causing issues OR is it my code?

2009-01-21 Thread flexaustin
yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of flexaustin > Sent: Wednesday, January 21, 2009 4:40 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Hslider and Vslider (Fx 3.2) causing issues OR is it my code? > > > UPDATE: Ok it looks like the stag

[flexcoders] Re: Hslider and Vslider (Fx 3.2) causing issues OR is it my code?

2009-01-23 Thread flexaustin
I guess nobody knows? I submitted a bug report to Adobe. J --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > Is this just for bitmaps/bitmapdata objects or does this limit include > the Flash player stage as well, as I am not trying to create a > bitmapdata obje

[flexcoders] Getting at variables inside a function that accepts a function

2009-02-06 Thread flexaustin
How would I go about getting at variables of a function when I send in an anonymous function so... public function acceptingFunction (func1:Function=null, func2:Function=null):void{ var a:Number; var b:String; if(func1 && func2){ func1; anotherAcceptFunction(func2); } } public funct

[flexcoders] Re: Getting at variables inside a function that accepts a function

2009-02-06 Thread flexaustin
t; > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of flexaustin > Sent: Friday, February 06, 2009 8:55 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Getting at variables inside a function that accep

[flexcoders] ctrl + mousewheel

2009-02-09 Thread flexaustin
So something I never noticed in Flex if you do a ctrl + mousewheel the entire canvas shrinks in size or grows if scrolling up. Is there a way to prevent this? I tried calling a function that stops propigation immediately if ctrl is pressed, but that doesn't work. Its like it is being fired

[flexcoders] Re: ctrl + mousewheel

2009-02-12 Thread flexaustin
Yes, its on a MAC. --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > Cool Trick. > > Is this on the Mac because it doesn't do it for me on a PC. > > Could this be a Mac Preference setting? > > > --- In flexcoders@yahoogroups.com, "f

[flexcoders] Loader URLRequest and reuse

2009-02-12 Thread flexaustin
Have a stumper question. Is there a way in a AS project to load an image (my.jpg) via a Loader/ URLRequest then store this returned my.jpg in a var and use it several times, say I wanted to create 100 of my.jpg? And if so will it save on memory? Or if I create 100 Loader objects and each one l

[flexcoders] Re: Loader URLRequest and reuse

2009-02-12 Thread flexaustin
Or maybe their is a different way to achieve the same end result by importing the image via a loader and creating a bitmapdata copy of it? TIA --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > Have a stumper question. Is there a way in a AS project to load an > i

[flexcoders] 15 seconds timeout will a progress bar help?

2009-02-12 Thread flexaustin
So I have a project that needs to build 1000 sprites on stage that contain some tiny bitmap's but this is happening on startup in an all AS3 project. When the app starts and tries creating and rendering all 1000 items nothing is shown and I get the "application hasn't responded in 15 seconds" exce

[flexcoders] E4X help?

2009-02-15 Thread flexaustin
Is it possible to get the value of "type" from this XML? Ed M − Christiaan M So in this example end up with M for both?

[flexcoders] Dynamically changing Vslider or Hslider?

2009-02-17 Thread flexaustin
I seem to be having issues altering the vslider via code. I am using the change event thrown by the Vslider to dispatch my own event like so this.dispatchEvent( event ); So anytime someone changes the Vslider value it throws an event and my components scales in size. But my component has the ab

[flexcoders] Re: Dynamically changing Vslider or Hslider?

2009-02-18 Thread flexaustin
the slider until the component zoom is done. Had to give up realtime update to the Vslider. Vslider is updated now only on mouseup not on mousemove. --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > I seem to be having issues altering the vslider via code. I am using &g

[flexcoders] Panel or Canvas expand from center

2009-02-18 Thread flexaustin
Is it possible to expand canvas or panel from center when increasing the size? Thanks, Jason

[flexcoders] ToolTip stay until closed

2009-02-18 Thread flexaustin
Is it possible to make a tooltip stay on until its closed? Maybe put an "x" in the top right corner or something. I don't see any properties that allow it to remain, guessing I will need to customize it? Maybe tooltip won't let you do this at all? TIA

[flexcoders] Re: ToolTip stay until closed

2009-02-18 Thread flexaustin
://www.adobe.com/> > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of flexaustin > Sent: Wednesday, February 18, 2009 3:39 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] ToolTip stay until clo

[flexcoders] Re: ToolTip stay until closed

2009-02-19 Thread flexaustin
Yes very very nice! Thanks, for the link. --- In flexcoders@yahoogroups.com, "Cato Paus" wrote: > > Here is a Nice one :) > http://www.adobe.com/devnet/flex/samples/fig_callout/ > > > > > --- In flexcoders@yahoogroups.com, "flexaustin" wrote: &

[flexcoders] PopUp jumping around.

2009-02-24 Thread flexaustin
So I have this PopupManager, in my flex app, that creates a popup on the main screen of the application, but I have an eventlistener set on the main application, which calls a function that tells the Popup to follow the x,y of a sprite a couple displayobjects deep in the displaylist. So a visual i

[flexcoders] Gumbo: states Could not resolves states to a component implementation.

2009-02-24 Thread flexaustin
I am inside a custom component and I am getting could not resolve to a component implementation. See code below. http://ns.adobe.com/mxml/2009"; mouseDown="stopProp(event)" mouseMove="stopProp(event)" click ="{ handleMouse(event); }" rollOver="{ handl

[flexcoders] Re: Gumbo: states Could not resolves states to a component implementation.

2009-02-24 Thread flexaustin
mouseMove="stopProp(event)" > --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > I am inside a custom component and I am getting could not resolve > to a component implementation. See code below. > >

[flexcoders] Re: Panel or Canvas expand from center

2009-02-24 Thread flexaustin
So I guess I am wanting the opposite of the orig. post. I have a component based on canvas and I want to increase its size in a modal fashion min/max. Click to maximize it (increase the width/height) and minimize state (decrease its height and width). When I do that now it is increasing and decr

[flexcoders] Re: Panel or Canvas expand from center

2009-02-24 Thread flexaustin
--- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > So I guess I am wanting the opposite of the orig. post. I have a

[flexcoders] Re: PopUp jumping around.

2009-02-25 Thread flexaustin
e x,y alone. --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > So I have this PopupManager, in my flex app, that creates a popup on > the main screen of the application, but I have an eventlistener set on > the main application, which calls a function that tells the Pop

[flexcoders] PopupManager and popup

2009-02-25 Thread flexaustin
Is it possible to push the popup down on the displayObjectList? I need the popup to be on top of the everything except one component. I would rather not refactor my code and current display list (purmvc related reasons). Hoping to just either push the popup down one layer or tell my top compone

[flexcoders] Re: ToolTip stay until closed

2009-02-25 Thread flexaustin
Ok ran into an issue. FIG Callout works great as a Popup, but the issue is I have two components on the stage that need to stay on top at all times. Is there a way to push the popup down 2 levels on the DisplayList? TIA --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > &g

[flexcoders] Re: ToolTip stay until closed

2009-02-25 Thread flexaustin
ogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of flexaustin > Sent: Wednesday, February 25, 2009 7:17 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: ToolTip stay until closed > > > Ok ran into an is

[flexcoders] Re: ToolTip stay until closed

2009-02-27 Thread flexaustin
="someSpecificNameBasedOnItsData" in my call to removeChild I reference the objects name, then it knows specifically which one to remove, rather than removeChild(objectReferencedByAVar); Thanks, Jason --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > Alex, no they are not po

[flexcoders] TextSprite blurring when scaling....Yes I said textsprite!!!

2009-03-04 Thread flexaustin
I seem to be having an issue. My app is a combo of Flex and AS3 (a lot of flash classes to keep overhead low) and so I am using the TextSprite class, but when my app scales/zooms (increase scaleX and scaleY) the TextSprite instance gets blurry. Is there a way to fix this? Here is my code. var t

[flexcoders] Sprite doubleclick

2009-03-08 Thread flexaustin
So if you have a sprite, say a circle in shape, and assign a doubleclick event handler to it. Then you add a child to the circle sprite, thus covering up the circle sprite. How do you get the the top sprite to allow the underneath (circle sprite) to hear the doubleclick? I have set doubleclick

[flexcoders] Re: Sprite doubleclick

2009-03-09 Thread flexaustin
instead of the > parent sprite... > > He child should be able to handle the clicks ... > > HTH, > Claudiu > > > > > ____ > From: flexaustin > To: flexcoders@yahoogroups.com > Sent: Monday, March 9, 2009 8:03:18 AM > Subje

[flexcoders] EnterFrame listener removed when dragged off screen

2009-03-10 Thread flexaustin
So I have several sprites within a component on the stage (Flex appliation level actually). I have a custom factory component on the main stage that builds popups if one of the sprites is clicked, yes I have to have it this way due to the library I am using. Anyway, I have an EnterFrame listen

[flexcoders] Linecharts and dataproviders

2009-03-24 Thread flexaustin
Its been way to long since I have used Flex Charting. I have this XML data, which I need to display in a lineChart, but I seem to be having issues with getting it output 5 lines (one for each device#) based on the data. I end up with one line? TIA, J Here is my linechart: Here is my ser

[flexcoders] charts and dataProviders

2009-03-25 Thread flexaustin
I guess the forum ate my post so trying again. I have a lineChart in my app that I am trying to hook up with a dataprovider (see below), but all I end up with is one line with three data points rather than 5 lines with 3 data points each. Not sure what I am doing wrong? http://www.adobe.com/20

[flexcoders] Charts and DataProviders

2009-03-25 Thread flexaustin
So I am trying to get a lineChart (CODE BELOW) to show 5 different lines with 3 data points each and all I am getting is one line with 3 data points. I think my issue is that I am using XML instead of XMLList or ArrayCollection, but I can't figure that out either. Any help would be greatly ap

[flexcoders] Can you get the class name of an object?

2009-03-25 Thread flexaustin
I am using a framework that has a function that requires class name, see below (_ops.hasOwnProperty(name) ): The function expects an array of names (name of object types), such as Button or lineChart. Is there a way to get the class name? So if I am passed a Button object is there a way to ge

[flexcoders] GUMBO: Is it my code or do the STATES have bugs?

2009-03-26 Thread flexaustin
I have these two components (large callout and small callout) and they can both be displayed on the main stage at the same time via clicking a marker. If you click on a blue marker you get a large callout. If you click on a red marker you get a small callout. Should be fairly simple , right? We

[flexcoders] Bug in Gumbo or Adobe's Fig Callout funtion being called anonymously??????

2009-03-26 Thread flexaustin
So I have been working with Gumbo and I also happen to be using Adobe's Fig Callout (http://www.adobe.com/devnet/flex/samples/fig_callout/). Anyway, I have two different mxml classes that are based on the Fig component. One we will call SmallCallout and the other is BigCallout. If you click a

[flexcoders] Enumeration???

2009-04-02 Thread flexaustin
I am not sure if enumeration is the correct term, but I was wondering how to achieve this AS3. I have a value object called myVO. I want to set the value of myVO in two ways (XML or and Object). If an Object is passed into myVO's constructor I want to do something like this ( keep an eye on "d"

[flexcoders] TextArea Border?

2009-04-02 Thread flexaustin
I am using the textArea and finally got the border to turn off, but when you click it, the theme color still shows? My background is white so I tried setting the theme and borderColor to white but that doesn't work either? I am using GUMBO so maybe its a bug? CSS TextArea { borderSkin: C

[flexcoders] Re: Enumeration???

2009-04-03 Thread flexaustin
thx, flexaustin --- In flexcoders@yahoogroups.com, Wesley Acheson wrote: > > Assuming its a dynamic object you can iterate through the members using a > for each in and or a for each in > > Imagine you have the following object typing from memory so forgive any > typos. &

[flexcoders] Re: TextArea Border?

2009-04-03 Thread flexaustin
I feel stupid. THX! flexaustin --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > editable="false" > -TH > > --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > > > I am using the textArea and finally got the border

[flexcoders] APE physics engine

2009-04-06 Thread flexaustin
I was wondering if anyone can point me to a tutorial or example of how to apply gravity to a displayobject in Flex? Like this http://www.zoomorama.com/2477f0e8b447bb6570493cdac464c41f (if you zoom in and then drag or throw the map it decelerates as it reaches its destination). I know of APE

[flexcoders] Flex Gumbo profiler: Path 1, Path2, etc..

2009-04-06 Thread flexaustin
So I am trying to profile my application for memory leaks. I create a memory snapshot and when i look at the Object References, expand the reference I don't see objects, functions, mx., etc... holding a reference. I only see 7 items that say "Path 1", "Path 2"..."Path 7". Is this something wro

[flexcoders] cannot load data from http://localhost:37813 ???

2009-04-10 Thread flexaustin
I am making a simple HTTPService call sometimes it works and sometimes it doesn't work. When it doesn't work I get this error: Error #2048: Security sandbox violation: http://rocketship:9675/flash/netmap.swf cannot load data from http://localhost:37813/interface/io_data/405.xml?hostport=rock

[flexcoders] http://localhost:37813 crossdomain needed????

2009-04-10 Thread flexaustin
I am making a simple HTTPService call sometimes it works and sometimes it doesn't work. When it doesn't work I get this error: Error #2048: Security sandbox violation: http://rocketship:9675/flash/netmap.swf cannot load data from http://localhost:37813/interface/io_data/405.xml?hostport=rock

[flexcoders] Profile httpService call

2009-04-13 Thread flexaustin
Once upon a time I remember their being, I think, an AIR application that would allow you to run you compiled Flex app, and see the server/communication during an httpService call. Does anyone know what I am talking about? I can't seem to find it through Google. TIA

[flexcoders] Re: Profile httpService call

2009-04-13 Thread flexaustin
Yes! AppPuncher! Thanks so much J --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > I think you may be thinking of AppPuncher... > > http://www.themidnightcoders.com/products/ria-apppuncher/overview.html > > > --- In flexcoders@yahoogroups.com, &q

[flexcoders] script running longer than....

2009-04-13 Thread flexaustin
I have Flex app that needs to request new data, via httpservice, every 10 to 15 minutes and was wondering how to achieve this. FYI, because of the implementation of our app and distribution we can't use AMF or anything else to push data to the app so that is out. My first thought is to use a t

[flexcoders] Re: Memory consumption by the browser

2009-04-14 Thread flexaustin
I am having the same issue and its only on a MAC (FF, Safari). If I run the flex swf in parallels I have no memory issues. I submitted a bug # SDK-20625 --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > One workaround would be to implement the panel in actionscript using custom > lay

[flexcoders] Mousewheel scrolling entire html page not swf.

2009-04-15 Thread flexaustin
Wondering if anyone else has run into this issue and found a solution? I have an application that allows the user to zoom in/ zoom out using the mousewheel. The issue is that once the swf is in the page the mousewheel ends up scrolling the entire html page. If you view the swf without the htm

[flexcoders] Custom DataTip function and mouse cursor. Little gray forking lines.

2009-04-15 Thread flexaustin
I was wondering if anyone has seen an example or can tell me if I am on the correct track regarding datatips. What I am trying to achieve is create a line chart with two data series, thus two lines. The chart height will be low, like Edward Tuft's sparklines (google it if you aren't familiar).

[flexcoders] Re: Flex Developer Needed (Fulltime)

2009-04-15 Thread flexaustin
Senior guys in Austin are 90k. --- In flexcoders@yahoogroups.com, Nick Collins wrote: > > Good luck getting a senior level Flex dev for that pay range. Most > senior level guys I know are getting between 100-120k. Granted, that's > in Chicago, not the middle of Utah. > > On Tue, Apr 14, 2009 a

[flexcoders] showDataTipsTargets without showing datatips?

2009-04-15 Thread flexaustin
Is their a way to force a flex chart to show datatiptargets even when datatips is set to false? I want the a datatiptarget like Google Financials chart, where the ball moves along the lineseries, but I don't want any datatips. Is this possible? TIA, J

[flexcoders] Re: showDataTipsTargets without showing datatips?

2009-04-15 Thread flexaustin
er... not very elegant but there doesnt seem to be > any property or method to display only these targets... BTW dont know where > to look at to customize them... > > thomas > > > 2009/4/16 flexaustin > > > > > > > Is their a way to force a flex

[flexcoders] ChartBase --- dataTipCalloutStroke

2009-04-17 Thread flexaustin
Can anyone tell me why when I set the dataTipCalloutStroke the stroke doesn't actually change? None of these works (callouts are still grey lines): mylinechart.setStyle('dataTipCalloutStroke', null); mylineseries.setStyle('dataTipCalloutStroke', null); mylinechart.setStyle('dataTipCalloutStroke

[flexcoders] Re: Custom DataTip function and mouse cursor. Little gray forking lines.

2009-04-17 Thread flexaustin
which is not correct (see link below) http://www.mail-archive.com/flexcoders@yahoogroups.com/msg64697.html --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > I was wondering if anyone has seen an example or can tell me if I am on the > correct track regarding datatips.

[flexcoders] Re: showDataTipsTargets without showing datatips?

2009-04-17 Thread flexaustin
Found the problem: You need to do the following: mylinechart.setStyle('calloutStroke', null); or mylinechart.setStyle('calloutStroke', colorofchoice); <-- if you want a different color Eli, I guess didn't fix this for Gumbo either. Documentation for Flex 3 and Gumbo, as well as the code s

[flexcoders] Re: ChartBase --- dataTipCalloutStroke

2009-04-17 Thread flexaustin
Found the problem: Found it!!! You need to do the following: mylinechart.setStyle('calloutStroke', null); or mylinechart.setStyle('calloutStroke', colorofchoice); <-- if you want a different color Ely, I guess didn't fix this for Gumbo either. Documentation for Flex 3 and Gumbo, as well

[flexcoders] Mousewheel scrolling entire html page not swf.

2009-04-17 Thread flexaustin
Wondering if anyone knows how to make the mousewheel just work on the swf not on the entire html page. My swf is embedded in a long html page 1500 pixels in height so when my swf has focus and I use the mousewheel the html page scrolls rather than the swf hearing the mousewheel. Well actually t

[flexcoders] LineChart renedering data twice

2009-04-20 Thread flexaustin
Anyone know why my linechart would be showing the data twice in my linechart? I have interpolate set to false, which should matter right? Here is my data:

[flexcoders] Polling vs. Timeout error vs. ???

2009-04-21 Thread flexaustin
I think I asked this question before but my searches for my messages come up empty (search in this forum is awful). I have a Flex application that I need to do polling. Because of the implementation/install of our app I cannot use any push technology. So my solution, which I am not sure will w

[flexcoders] Re: Polling vs. Timeout error vs. ???

2009-04-21 Thread flexaustin
be > fine using a timer. > > You won't get the 'script running too long' error as a result of using > a timer. That error happens basically when code takes too long to > process or goes into an infinite loop. > > john > > > > On Apr 21, 2009,

[flexcoders] Flash/FLex gravity

2009-04-22 Thread flexaustin
Does anyone know of a tutorial on actionscript and gravity. Not like dropping a ball, but like google maps where you drag an item and it keeps going in that direction but slowing down. So gravity in all directions something like a hockey puck. TIA

[flexcoders] Re: Flash/FLex gravity

2009-04-23 Thread flexaustin
Not sure if the post went through. I have the book now. I am trying to make it work and I am almost there, but the sprite is only glides correctly when thrown if I drag from top right to lower left or lower left to top right. If I throw it directly to the right it moves up and if I throw it to

[flexcoders] Re: Flash/FLex gravity

2009-04-23 Thread flexaustin
pdatePosition():void > > { > > accuratePositionX += velocityX; > > accuratePositionY += velocityY; > > > > x = Math.round(accuratePositionX); > > y = Math.round(accuratePositionY); > > > > velocityX *= 0.9; > > velocityY *=

[flexcoders] Re: Flash/FLex gravity

2009-04-23 Thread flexaustin
pdatePosition():void > > { > > accuratePositionX += velocityX; > > accuratePositionY += velocityY; > > > > x = Math.round(accuratePositionX); > > y = Math.round(accuratePositionY); > > > > velocityX *= 0.9; > > velocityY *=

[flexcoders] Gumbo: Styling Panels or Titlewindows when used as a popup not being styled.

2009-04-23 Thread flexaustin
Does anyone know why styling a popup in css has not bearing on the style that is shown when the popup is created? No matter what I set nothing shows up.

[flexcoders] Re: Flash/FLex gravity

2009-04-24 Thread flexaustin
8_YxbsIVj8GGiKAaHcCY0tPb4&hl=en&ei=0R_xSY_eLMaclQfCroDGDA&sa=X&oi=book_result&ct=result&resnum=1 --- In flexcoders@yahoogroups.com, Josh McDonald wrote: > > Here's a working example I whipped up in 15 minutes: > > http://pastie.textmate.org/private/mmmbwwnwl0ly2ciurwvda

[flexcoders] Resizing browser makes my content jump off screen?

2009-04-24 Thread flexaustin
When I first built my application I set the width and height to 500 x 500. Now the requirements are to let the Flex application scale inside of the html when the user increases the window size. So I set the flex dimensions to width=100% and height=100%, but when the user increases the window si

[flexcoders] Re: Resizing browser makes my content jump off screen?

2009-04-27 Thread flexaustin
flexcoders@yahoogroups.com, "flexaustin" wrote: > > When I first built my application I set the width and height to 500 x 500. > Now the requirements are to let the Flex application scale inside of the html > when the user increases the window size. > > So I set the flex

[flexcoders] scrollRect width and height - flexaustin

2009-04-27 Thread flexaustin
I have tried increasing the width/ height of the scrollRect once its been set, say your swf scales ot the window size, but nothing will increase its width or height. So, instead of increaseing and decreasing the width and height of the scrollRect when the stage is resized I just create and ass

[flexcoders] Draw rectangle to Zoom.

2009-04-30 Thread flexaustin
Was wondering if anyone knew of any examples of adding the ability to draw a rectangle then zoom the stage to what was in the rectangle? Think something like draw a rectangle. Find its bounds. Create a rect from these bounds. Then maybe assign this rect to a displayobject scrollrect?

[flexcoders] Adding text to Cursor: Dilemma

2009-04-30 Thread flexaustin
So I need to add a hover over when I mouse over and object on the stage. My issue is that I am using a framework that creates these objects and puts them on a displaylist randomly so they are in no certain order. I tried putting the hover over on the object but sometimes these object overlap so

[flexcoders] two chart lineseries one mouse

2009-05-05 Thread flexaustin
not just one. Thx, FlexAustin

[flexcoders] Re: two chart lineseries one mouse

2009-05-07 Thread flexaustin
Just decided to remove all callouts. --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > So I have two lineseries in my chart and I have a custom cursor, tall > vertical line, so that when the user mouses over the chart both lines series > are touched by the tall

[flexcoders] httpservice error #2032

2009-05-25 Thread flexaustin
I cannot seem to get my SWF to talk to my rails app. i am getting the following error code: Fault: increment node clicked stat fault[FaultEvent fault=[RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cance

[flexcoders] Re: httpservice error #2032

2009-05-26 Thread flexaustin
ion in the services-config.xml file must allow the > specified URL" > > > --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > > > I cannot seem to get my SWF to talk to my rails app. i am getting the > > following error code: > > > >

[flexcoders] Re: httpservice error #2032

2009-05-26 Thread flexaustin
the > HTTPService object. eg. > > _httpservice.url = "http://127.0.0.1/ditto/myfunction";; > > > --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > > > I don't have a services-config.xml file. > > > > > > > > > >

[flexcoders] Re: httpservice error #2032

2009-05-26 Thread flexaustin
the > HTTPService object. eg. > > _httpservice.url = "http://127.0.0.1/ditto/myfunction";; > > > --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > > > I don't have a services-config.xml file. > > > > > > > > > >

[flexcoders] Re: httpservice error #2032

2009-05-26 Thread flexaustin
t; wrote: > > If you are using a windoze machine you can see the request being handled in > the command window..i don't think the url is correct > > On Mon, May 25, 2009 at 9:35 PM, flexaustin wrote: > > > > > > > I cannot seem to get my SWF to talk to my r

[flexcoders] Re: httpservice error #2032

2009-05-26 Thread flexaustin
--- In flexcoders@yahoogroups.com, Dave Cragg wrote: > > > On 26 May 2009, at 05:35, flexaustin wrote: > > > > _httpservice.url = "/ditto/myfunction"; > > Shouldn't that be > >_httpservice.url = "ditto/myfunction"; > > Che

[flexcoders] Re: httpservice error #2032

2009-05-26 Thread flexaustin
t; > Tracy Spratt, > > Lariat Services, development services available > > _ > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of flexaustin > Sent: Tuesday, May 26, 2009 10:36 PM > To: flexcoders@yahoogroups.com > Subje

[flexcoders] ZOOM PANEL: like google maps

2009-06-03 Thread flexaustin
Wondering if anyone knows of a tut or component or ??? that I can use to learn how to build a Zoom Panel like in google maps (see google maps lower right corner). I am assuming its would be implemented by taking a bitmap snapshot of whats on screen and then use a rectangle object in scroll rect

[flexcoders] Text stuck on screen BUG in FP10 or IE7????

2009-06-03 Thread flexaustin
So I have an app that has upto 300 sprites on screen at once and inside each sprite is a textfield with embedded font (all Arial font). In IE7, when you move the main Sprite around the sprite/textfield text gets stuck on the screen then eventually disappears. Its like the browser isn't refres

[flexcoders] Re: Text stuck on screen BUG in FP10 or IE7????

2009-06-04 Thread flexaustin
er is refreshing the screen. > > Alex Harui > Flex SDK Developer > Adobe Systems Inc.<http://www.adobe.com/> > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of flexaustin > Sent: Wedne

[flexcoders] cannot convert flash.display::Bitmap to mx.core.IUIComponent.

2009-06-04 Thread flexaustin
Why would I be getting this error? http://ns.adobe.com/mxml/2009"; width="100%" height="100%" maxHeight="125" maxWidth="125">

[flexcoders] Re: cannot convert flash.display::Bitmap to mx.core.IUIComponent.

2009-06-04 Thread flexaustin
arui > Flex SDK Developer > Adobe Systems Inc.<http://www.adobe.com/> > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of flexaustin > Sent: Thursday, June 04, 2009 9:13 AM > To: flexcoders@yahoogrou

[flexcoders] SWOBJECT: no action responded to swfobject

2009-06-05 Thread flexaustin
Not sure if anyone is using ruby on rails and flex, but has anyone see this error ( No action responded to swfobject) before? Can't seem to find anything? Here is how I am using swfobject. swfobject.embedSWF(<%= "#...@swf_path}?#{time.now.to_i}".to_json %>, "flashDiv",

[flexcoders] httpservice to arraycollection?

2009-06-08 Thread flexaustin
Ok, its late and I am falling asleep. Can someone be another pair of eyes for me? If httpservice call with IResponder how can I turn my result object which is this: \ to an array or arraycollection? TIA

[flexcoders] Itemrenderers style?

2009-06-09 Thread flexaustin
Below is my custom item renderer, but the styles in my style source do not show up when the itemrenderer is used in a datagrid. I have a tootlip style and it shows up every where in the app, but inside the itemrender. TIA http://ns.adobe.com/mxml/2009"; styleName="callOutHeader" c

[flexcoders] Sort: Datagrid sorting numbers and strings

2009-06-10 Thread flexaustin
So I have a datagrid that has columns that can contain a number or string or both. I was wondering if anyone has seen a sort function that can handle this. Below is a sample of the types of data that can be in a column. 192.12 hello angus range 39.30 - 34.50 zoolu 12 Anyway to sort these?

<    1   2   3   >