Re: [flexcoders] THIS IS ABSOLUTELY NUTS

2008-07-01 Thread Patrick Driggett
Have you cleared your cache? Happens to me all the time if I don't. On Tue, Jul 1, 2008 at 2:05 PM, Dan Pride [EMAIL PROTECTED] wrote: I have an application which will not compile, delivers no error code and simply gives me the last good app with no explanation whatsoever??? Who designed

Re: [flexcoders] I'm really, really frustrated with Flex

2008-02-29 Thread Patrick Driggett
?externalId=tn_14213 Sincerely, Patrick Driggett On Fri, Feb 29, 2008 at 8:50 AM, alexander.marktl [EMAIL PROTECTED] wrote: I have an app that needs to load multiple images. I do not wanna embed them. But no matter what method I try, nothing works on my server. On localhost everything works

Re: [flexcoders] Bug on IF..ELSE Condition Or What ?

2008-02-24 Thread Patrick Driggett
I agree, with Gordon, do that and if that doesn't work, I'm willing to bet that your first if-statement you actually have if( stat=2 ) as opposed to if( stat==2 ) Patrick On Sat, Feb 23, 2008 at 12:09 AM, Gordon Smith [EMAIL PROTECTED] wrote: That makes no sense and would be an extremely

Re: [flexcoders] Issues with SWF playing in Firefox but not in IE6 or IE7

2008-02-12 Thread Patrick Driggett
Ok, I fixed it but didn't realize this was a problem in IE. I had to explicitly put the height and width in pixels in both the object and embed tags, apparently 100%, which is what Flex Builder outputs in the HTML file, does not work. -Patrick On Feb 12, 2008 1:36 PM, Patrick Driggett [EMAIL

[flexcoders] Issues with SWF playing in Firefox but not in IE6 or IE7

2008-02-12 Thread Patrick Driggett
with Flash Player 9 installed through the Adobe website. Any ideas? Thanks, Patrick Driggett

Re: [flexcoders] Issues with SWF playing in Firefox but not in IE6 or IE7

2008-02-12 Thread Patrick Driggett
and it still didn't fix anything. -Patrick On Feb 12, 2008 11:54 AM, Bob Wohl [EMAIL PROTECTED] wrote: Do you get the security error? IE doesn't like activeX embedded items that use external data w/o a javascript embed method. B. On Feb 12, 2008 9:44 AM, Patrick Driggett [EMAIL PROTECTED] wrote

[flexcoders] Realtime 3D to FLV

2008-01-23 Thread Patrick Driggett
application, we're looking for a library that we can link our code to that would provide the video capture. Sincerely, Patrick Driggett

Re: [flexcoders] Flex Builder 3 beta 3 licence

2007-12-13 Thread Patrick Driggett
I think this was just answered like 3 e-mails ago in the last half hour or so. This is probably the last Beta and with release looming they are clamping down. On Dec 13, 2007 2:27 PM, windsail05 [EMAIL PROTECTED] wrote: In FB3 beta 2 you are able to enter your serial numbers from FB2, but

Re: [flexcoders] Re: new to FLEX

2007-12-07 Thread Patrick Driggett
What version of Flex, timeframe and what kind of project? Sincerely, Patrick Driggett On Dec 7, 2007 2:49 PM, nan patel [EMAIL PROTECTED] wrote: hey I just got this Flex project at Mercedes Benz are you interested...spread the word they need to build the team for 6-7 people. Thanks

Re: [flexcoders] Re: How do I setStyle(showDataEffect, interpolate) for a LineSeries?

2007-09-14 Thread Patrick Driggett
I have used this. There are two ways: A) mx:LineSeries interpolateValues=true/ or B) var lineSeries:LineSeries = new LineSeries(); lineSeries.setStyle( interpolateValues, true ); -Patrick Driggett On 9/13/07, Matt Horn [EMAIL PROTECTED] wrote: can you post a complete code sample

Re: [flexcoders] Re: How do I setStyle(showDataEffect, interpolate) for a LineSeries?

2007-09-14 Thread Patrick Driggett
Why don't they just set interpolateValues to true instead? -Patrick On 9/14/07, Matt Horn [EMAIL PROTECTED] wrote: Interesting. Looks like showDataEffect is only triggered when the data provider changes or when an element is added to a series, but not when the series is added to the

Re: [flexcoders] Solved: How do I setStyle(showDataEffect, interpolate) for a LineSeries?

2007-09-14 Thread Patrick Driggett
Glad you got it working. -Patrick On 9/14/07, Nate Pearson [EMAIL PROTECTED] wrote: Anything for you Ely ;). I tried three methods, here's what I found. 1) I tried what Ely said. He was right, it didn't interpolate the first time it was added but did after the data changed. This is how

Re: [flexcoders] How to check to see if an XML element exists

2007-09-12 Thread Patrick Driggett
if( node.ItemSource.hasOwnProperty( Value ) ) { // Do stuff } On 9/12/07, kc7cia [EMAIL PROTECTED] wrote: Hi, I was hoping someone could tell me how to check to see if an XML element exists in AS3. I have an XML structure that looks like this: ItemSource component=DAM ValueCandy/Value

Re: [flexcoders] How do I generate random colors (within a range)?

2007-09-12 Thread Patrick Driggett
i:Number = Math.random( 0, 15 ); var j:Number = Math.random( 0, 15 ); var randomGrey:Number = ( i 20 ) | ( j 16 ) | ( i 12 ) | ( j 8 ) | ( i 4 ) | j; I haven't tested this at all, I'm just kind of writing it out, but give it a go and it should get you in the right direction. Patrick Driggett On 9

Re: [flexcoders] Re: Help with event.stopImmediatePropagation();

2007-09-11 Thread Patrick Driggett
Have you tried using a try{}catch( e:Error){} block and using an Alert box to show the target or object you're in? -Patrick Driggett On 9/11/07, Sheriff [EMAIL PROTECTED] wrote: i see so is there anyway to find what listener is causing that problem, since i only have one in my code

Re: [flexcoders] Re: FlexMouseEvent stop propagation

2007-09-03 Thread Patrick Driggett
] *On Behalf Of *Patrick Driggett *Sent:* Saturday, September 01, 2007 6:19 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: FlexMouseEvent stop propagation Yes, its for a touch screen medical application that basically adjusts settings in real time and then when you touch outside

Re: [flexcoders] Re: FlexMouseEvent stop propagation

2007-09-02 Thread Patrick Driggett
listening for the click event also and use event.stopImmediatePropagation(). HTH, Ben --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Patrick Driggett [EMAIL PROTECTED] wrote: I am listening for FlexMouseEvent.MOUSE_DOWN_OUTSIDE so that I can close a dialog when I click

[flexcoders] FlexMouseEvent stop propagation

2007-09-01 Thread Patrick Driggett
this to happen, is there an easy way to stop this next event from happening when I handle the MOUSE_DOWN_OUTSIDE event? I'm already doing stopPropagation on the MOUSE_DOWN_OUTSIDE event, but that isn't working for the mouse click event. Thanks, Patrick Driggett