Re: [flexcoders] Web-based Sync data - Flex/Air & VS.NET

2008-08-16 Thread Guy Morton
t downloading a plug-in, is like saying how do you run flash without Flash? HTH. On Fri, Aug 15, 2008 at 9:00 PM, Guy Morton <[EMAIL PROTECTED]> wrote: If MS had a reputation for innovation, great products and fair play instead of for abuse and misuse of market power, I would a

Re: [flexcoders] Web-based Sync data - Flex/Air & VS.NET

2008-08-15 Thread Guy Morton
y some good stuff, maybe. I would try my best to stay in the Flex world P.S Scott, I am pretty sure that was a statement that guy madelol Link Scott Barnes wrote: > > Is this a question or statement? :) > > All the best. > > On Thu, Aug 14, 2008 at 10:56 PM, Guy Morton <[

Re: [flexcoders] Deep Zoom (Silverlght) in Flex??

2008-08-15 Thread Guy Morton
Adobe should dust off XRes...that was pretty similar tech from what I recall. With broadband being so common these days there'd probably be a renewed interest in this sort of capability. On 15/08/2008, at 2:37 PM, Scott Barnes wrote: Actually not true, it's the client-side that does the ac

Re: [flexcoders] global replace with strings

2008-08-15 Thread Guy Morton
I think the point is he's not aware that the way to do what he wants is to create a RegEx with the g flag. eg var strTest:String = "This is a test string"; var reggy:RegExp = new RegExp("t", "g"); trace(strTest.replace(reggy,"s")); >This is a sess ssring HTH O

Re: [flexcoders] Re: Web-based Sync data - Flex/Air & VS.NET

2008-08-15 Thread Guy Morton
Why not both? On 15/08/2008, at 4:39 PM, Scott Barnes wrote: Is this a question or statement? :) All the best. On Thu, Aug 14, 2008 at 10:56 PM, Guy Morton <[EMAIL PROTECTED]> wrote: Oh and the way MS has stiffed SVG as a standard by refusing to support it in IE definitely pushe

Re: [flexcoders] Re: Web-based Sync data - Flex/Air & VS.NET

2008-08-14 Thread Guy Morton
Oh and the way MS has stiffed SVG as a standard by refusing to support it in IE definitely pushes them into the category of evil. They even "embraced and extended" the acronym when they named their competing product SilVerliGht. I choose Flex because I don't want to live in a world dominate

Re: [flexcoders] Re: Web-based Sync data - Flex/Air & VS.NET

2008-08-14 Thread Guy Morton
Hi Scott Can you point to a compelling silverlight app that runs on my Mac in Firefox without me having to install a new plugin? How about something that'll run on my linux desktop? What Flex/Flash has got that MS hasn't is a pretty much ubiquitous runtime in the browser. On top of that,

Re: [flexcoders] SandBox security issue

2008-08-12 Thread Guy Morton
If the flex app is running on a different host you will need a crossdomain.xml file on the machine running the web service. On 12/08/2008, at 3:30 AM, kirilminevgroups wrote: I am experiencing some sandBox security issues. I have flex chart which communicated to web service. When both the we

Re: [flexcoders] Re: Application close event?

2008-08-09 Thread Guy Morton
On 10/08/2008, at 7:41 AM, gerhard.schlager wrote: --- In flexcoders@yahoogroups.com, Guy Morton <[EMAIL PROTECTED]> wrote: > Does anyone know if there is an event that can be used to trigger > clean-up activities when a Flex app is closed, either by the browser > being closed o

[flexcoders] Application close event?

2008-08-08 Thread Guy Morton
Hi all Does anyone know if there is an event that can be used to trigger clean-up activities when a Flex app is closed, either by the browser being closed or the user navigating to a new page? TIA Guy

[flexcoders] Virtual Earth in Flex, or UMap

2008-07-30 Thread Guy Morton
Hello Does anyone on this list have experience with implementing Virtual Earth maps in Flex, either via UMap (http://www.afcomponents.com/components/umap_as3/ ) or some other component? We have an app that currently uses Yahoo! maps (via REST interface). We animate a bunch of things over th

Re: [flexcoders] Context menu triggers browser crash

2008-07-23 Thread Guy Morton
Hi Borja No, I've not had any luck in figuring out the cause or a fix as yet. Are you able to post a link to an app that shows the problem? Anyone on the list able to help? Guy On 23/07/2008, at 9:06 PM, Borja Jelič wrote: > Hi, > I've seen your post on the > http://www.mail-archive.com/flex

Re: [flexcoders] Transparent Application Background

2008-07-16 Thread Guy Morton
I'm just guessing, but wouldn't backgroundAlpha="0" in your flex app plus wmode="transparent" in your object/embed tag do the trick? On 16/07/2008, at 11:48 PM, ammu nath wrote: Hi All, Can any body help me how can i achive Transparent Application background in a flex application

Re: [flexcoders] Chart question - area chart with line chart overlay

2008-07-14 Thread Guy Morton
I'll answer my own question... you can mix AreaSeries and LineSeries within a LineChart. Too easy! Guy On 15/07/2008, at 12:58 PM, Guy Morton wrote: Hello group Is it possible to have an area chart with a line chart overlaid over the top? I note that you can stack some types of chart

[flexcoders] Chart question - area chart with line chart overlay

2008-07-14 Thread Guy Morton
Hello group Is it possible to have an area chart with a line chart overlaid over the top? I note that you can stack some types of charts but not line charts...is there a way to do this? tia Guy

[flexcoders] Context menu triggers browser crash

2008-07-12 Thread Guy Morton
Hi there I have a Flex 2 app that has a custom context menu attached to the root application object. It works without incident on the Mac, but on windows, choosing an item from the context menu sometimes causes the browser to crash. There appears to be no pattern to it, though it does seem to oc

Re: [flexcoders] Weird sandbox violation error

2007-03-17 Thread Guy Morton
I can answer this - it's not, because I'm now encoding the URL and it still barfs. Any ideas would be appreciated. This is very perplexing. Guy On 18/03/2007, at 3:12 PM, Guy Morton wrote: Is Flex barfing over the un-encoded URL?

[flexcoders] Weird sandbox violation error

2007-03-17 Thread Guy Morton
I am seeing a weird violation Security sandbox violation: http://www.mydomain.com/bin/myApp.swf? mh=-118.1258%2C33.8751&mc=-118.15411% 2C33.81669&mz=0&rls=20070202101010 cannot load data from /data/handle/ 2007-03-17 10:10:00."] As you can see I am running this on my server and all http reques

Re: [flexcoders] cacheAsBitmap - does anyone know?

2007-03-06 Thread Guy Morton
Thanks Patrick. That's pretty much what I suspected would be the case. Guy

[flexcoders] cacheAsBitmap - does anyone know?

2007-03-06 Thread Guy Morton
I've created an mxml component that uses a canvas object and writes a graphic on it based on some input parameters. This graphic is then animated over a bitmap background. If I set cacheAsBitmap on the graphic's canvas to true, then rotate the canvas, am I improving performance? Or does the rotate

[flexcoders] cacheAsBitmap

2007-03-05 Thread Guy Morton
I've created an mxml component that uses a canvas object and writes a graphic on it based on some input parameters. This graphic is then animated over a bitmap background. If I set cacheAsBitmap on the graphic's canvas to true, then rotate the canvas, am I improving performance? Or does the

Re: [flexcoders] Security error after moving project

2007-02-26 Thread Guy Morton
Fixed the problem. Had to manually add my new project bin path to ~/ Library/Preferences/Macromedia/Flash Player/#Security/ FlashPlayerTrust/flexbuilder.cfg. This should have happened automatically but I suspect Flex builder 2.01 (on Mac at least) is a little flaky when it comes to moving pro

[flexcoders] Security error after moving project

2007-02-26 Thread Guy Morton
Hi there Can someone please help me? I've moved my project in my local filesystem (to add it to my checked-out CVS repos) and now my network connections fail: [RPC Fault faultString="Security error accessing url" faultCode="Channel.Security.Error" faultDetail="Destination: DefaultHTTP"]

Re: [flexcoders] Dynamically creating a text object

2007-02-26 Thread Guy Morton
f you dont apply the flip, the text and circle will display fine. But the addition of the flip requires that you embed the font in the text component. see the docs on how to embed fonts using styles. :) --- Guy Morton <[EMAIL PROTECTED]> wrote: > Nope, adding the text children clears my canv

Re: [flexcoders] Dynamically creating a text object

2007-02-26 Thread Guy Morton
= 20; childCanvas.addChild(text); Karl Cynergy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guy Morton Sent: Sunday, February 25, 2007 8:03 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Dynamically creating a text object Hello. I'm stumped. I'm creati

Re: [flexcoders] Dynamically creating a text object

2007-02-26 Thread Guy Morton
llo"; myText.x = 200; myText.y = 200; myText.transform.matrix = new Matrix(1,0,0,-1,0,300); myCanvas.addChild(myText); Guy On 26/02/2007, at 8:53 AM, Guy Morton wrote: Nope, adding the text children clears my canvas. I think I now know why. After I add all these children to my main Canvas

Re: [flexcoders] Dynamically creating a text object

2007-02-25 Thread Guy Morton
Nope, adding the text children clears my canvas. I think I now know why. After I add all these children to my main Canvas I'm adding a transform matrix to it to flip it vertically, like so: mainCanvas.transform.matrix = new Matrix(1,0,0,-1); This works just fine so long as I don't add the te

[flexcoders] Dynamically creating a text object

2007-02-25 Thread Guy Morton
Hello. I'm stumped. I'm creating some circles in AS and putting them on a Canvas that's declared in my MXML file like so var childCanvas:Canvas = new Canvas(); childCanvas.graphics.lineStyle(1, 0x33, 1); childCanvas.graphics.beginFill(0xCC,0.6); childCanvas.graphics.drawCircle(200,150

Re: [flexcoders] Drawing primitives in MXML

2007-02-22 Thread Guy Morton
Thanks. Seems kinda weird to me that they're not there when you have such advanced components available. Or does Flex expect that you will re-skin a panel component instead? Guy On 22/02/2007, at 9:28 AM, dordea cosmin wrote: You can not use mxml to draw basic shapes because you have no

[flexcoders] Drawing primitives in MXML

2007-02-21 Thread Guy Morton
Hi there I'm new to Flex, so forgive me if this is a dumb question. I've been trying to get my head around Flex using Flex builder/Flex 2. Previously I've been working with SVG. So far, I've been unable to figure out how you draw primitive shapes (circles, rectangles, roundedrects etc) in

<    1   2   3