[Flashcoders] Flash Remoting Updater

2006-07-21 Thread clark slater
At the start of this week we purchased Flash Remoting for integration with a client's .NET application. When I went to download the updater from the Adobe site I found a 404 error (what's up with the whole site anyway, seems totally unresponsive and often hangs my browser?!). Five days later

Re: [Flashcoders] Re: Biased Random Particle Distribution

2006-05-27 Thread clark slater
Thanks Ron, I'm working on a dynamic portfolio component for a client and I've been given static designs that I have to match. The beginning of the portfolio has a couple hundred *tiny* icons that appear spread across the stage in a non overlapping random pattern. Thing is, it's not a normal

[Flashcoders] Re: Biased Random Particle Distribution

2006-05-26 Thread clark slater
Here I go answering my own question. To make it more dense toward the origin, use {x,y} = {random[]^2, random[]^2}--squaring the independently generated numbers (random[]*random[] won't work). The result is a distribution with a sharp cusp at the origin--the probability is a maximum there, and

Re: [Flashcoders] view swfs in file folder window (windows os)

2006-05-26 Thread clark slater
Hell yeah I am also looking for the same thing. I *WISH* picasa would show swf previews. Clark On 5/26/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Anyone know of tweak or program that lets you preview SWFs the same way you can preview jpgs, gifs etc as you click on them in the window?

Re: [Flashcoders] Re: Biased Random Particle Distribution

2006-05-26 Thread clark slater
/26/06, Ron Wheeler [EMAIL PROTECTED] wrote: Would a formula based on logarithms give you what you want as well? You were not very specific about what you wanted the distribution to look like. Ron clark slater wrote: Here I go answering my own question. To make it more dense toward the origin

[Flashcoders] Biased Random Particle Distribution

2006-05-25 Thread clark slater
I need to randomly distribute a series of particles in a 2D space with a bias towards the zero point for both dimensions. I know how to create a biased distribution towards the center (thanks Keith peters) by averaging a series of throws - but I am stuck on the zero bias distribution. Any ideas?

[Flashcoders] MovieClipLoader Script Timeout Bug?

2006-05-12 Thread clark slater
Posted this yesterday but it looks like there was a problem with the list, sorry if some people get it twice. I think I may have come across a bug in the intrinisc MovieClipLoader class. When loading a large file using an instance of this class on a slow connection, the script timeout error is

Re: [Flashcoders] Re: Flash Player 6 on PSP

2006-04-27 Thread clark slater
I have been testing side by side performance of SWF content on a pocket pc (Asus 636) versus PSP and the difference is stunning. Surprisingly the performance of the Flash 6 player on the PPC is much, much better than on the PSP. Not what I expected, comparing a device running the Windows PPC

Re: [Flashcoders] Re: Flash Player 6 on PSP

2006-04-27 Thread clark slater
Forgot to add that one of the reasons I am really surprised at the difference in performance of the same SWF content on PPC versus PSP is because I believe the PPC I am using has a very similar processor to the PSP (312MHz vs 333MHz). Then I found out the PSP processor is itself neutered to help

Re: [Flashcoders] RANT: Collect Fonts Button

2006-04-14 Thread clark slater
With respect to the legality, fonts may be likely candidates for piracy - but there's nothing to stop people swapping system font folders. So given that users can copy and swap font files, I really don't see the problem introducing a utility in the IDE that collects the fonts for any given

[Flashcoders] RANT: Collect Fonts Button

2006-04-13 Thread clark slater
that could fix this would be a *really* shit hot item for someone to develop and offer to the Flash community as a whole. Clark Slater www.bayinteractive.com ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] RANT: Collect Fonts Button

2006-04-13 Thread clark slater
Of clark slater Sent: Thursday, April 13, 2006 6:16 PM To: [ExtendFlash]; [FlashCoders] Subject: [Flashcoders] RANT: Collect Fonts Button Print designers who use QuarkXpress have had an essential utility for years. They can collect all the fonts used in a project so that when passing the source

Re: [Flashcoders] What's your job title?

2006-03-10 Thread clark slater
Rich.Internet.Applicator aka Clark On 3/10/06, Kirk Roberts [EMAIL PROTECTED] wrote: Hello everybody, Here's a non-technical question: what is your job title? For a long time I've been telling people Flash Developer, although that shortchanges the consultation and on-the-fly design I do.

Re: [Flashcoders] Flash connecting to a database - all running on a DVD-ROM

2006-02-23 Thread clark slater
Hi Nik, Check out SWFStudio, it offers ADO connectivity. Downside is ADO has to be installed on the machine. Alternatively check out the Catalog plugin for SWFStudio - offers search functions through a flat tab delimited file. We used it to do exactly what you describe for a HUGE floor tile

Re: [Flashcoders] WindowSWF buggy ?

2006-02-17 Thread clark slater
Hi Mani, I suffered from this for quite some time and it was driving me crazy when trying to develop extensions. I finally found a way to fix it: - delete any windowSWF's from the following folder C:\Flash 8\en\First Run\WindowSWF - delete panelset.xml and FirstRun.log from the following folder

Re: [Flashcoders] WindowSWF buggy ?

2006-02-17 Thread clark slater
Unfortunately yes, it seems so - but not always. I have had it happen to certain team members here when I create some tool for them, but not to others when installing the same extension. So far have been unable to figure out a pattern or reason. What really gets me is that this got fixed in the

Re: [Flashcoders] International Address to Map position

2006-02-03 Thread clark slater
your own data over the world map, or even substitute your own map. All the zooming/latitude/longitude/place marker on map location code is already built in. Cheers, Ian On 2/3/06, clark slater [EMAIL PROTECTED] wrote: Hey Folks, I'm working on an application that has a requirement

Re: [Flashcoders] Gotcha: F8 Security Model

2006-01-27 Thread clark slater
There's obviously no question about the value of the security sandbox and the crossdomain policy control. The issue for me is that 'www.' should not be considered a subdomain. This is inexcusable and will catch out a lot of people, particularly given the dreadful documentation. Clark On

[Flashcoders] Gotcha: F8 Security Model

2006-01-26 Thread clark slater
I was totally *disgusted* to find out that our site was failing to make remoting calls when loaded via http://bayinteractive.com instead of http://www.bayinteractive.com Sure enough FP8 security sandbox at work, because the remoting calls were using an absolute path to the gateway instead of a

[Flashcoders] FileReference: verify file and return status

2006-01-20 Thread clark slater
Hey Folks, I'm uploading files from my SWF with FileReference and I need to verify the file is acceptable on the server (make sure it is a non progressive JPG) and let the SWF client know if the file was accepted by the server or rejected. I've been using ColdFusion for this and it has a handy

Re: [Flashcoders] OT: CFM and Remoting Hosting

2006-01-19 Thread clark slater
I recommend FusionLink. Very CF friendly, excellent network connectivity and a great control panel for configuring directory permissions for tags like cffile and cfdirectory. We've done a lot of remoting development with this host over the last year+ and it has been great:

Re: [Flashcoders] FLVPlayback complete event not firing.

2006-01-18 Thread clark slater
This is caused by a poorly coded flv. I have encountered it before and finally tracked it down to our client using a desperately underpowered machine to encode the flv. On 1/18/06, Dan Wade [EMAIL PROTECTED] wrote: Hello, I'm using the flvPlayback component. Then adding listener:

Re: [Flashcoders] Public examples of Business RIAs

2006-01-17 Thread clark slater
Here's one we developed for a Golf Club manufacturer who sells highly customized clubs directly to the public. http://www.gigagolf.com I think this is a good example of a business RIA because it makes the product configuration a lot easier than an HTML version might in terms of using the 'eFit'

Re: [Flashcoders] Public examples of Business RIAs

2006-01-17 Thread clark slater
interface btw. grant - Original Message - From: clark slater [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 1/17/06 12:38 PM Subject: Re: [Flashcoders] Public examples of Business RIAs Here's one we developed for a Golf Club manufacturer who

[Flashcoders] FLASH8 IDE BUG: Swf Panels

2006-01-16 Thread clark slater
Hey Folks, I have this problem with my F8 IDE install which is driving me nuts. In the lower pane of the Window-Other Panels dialog I have several swfpanels I have developed along with the NetConnection Debugger. Every time I choose a panel, a completely random panel will open. Well not

[Flashcoders] Serverside Screensaver Generation

2006-01-14 Thread clark slater
Hey Folks, Has anyone come up with a solution to generate installable screensavers on the server? e.g. user can select from images, and have an installable screensaver built for them on the server? Obviously there are several options to generate the SWF - but I am wondering how I am going to get

Re: [Flashcoders] Serverside Screensaver Generation

2006-01-14 Thread clark slater
Thanks Stacey - right answer! ;) So SWFStudio V3 has a batch build feature that I can use to build a *.scr from my custom generated swf, and then sequentially invoke another SWFStudio build to create a pseudo installer (an exe that carries the *.scr as a payload and copies it to the system32

Re: SV: SV: [Flashcoders] flash 8 security hint

2006-01-12 Thread clark slater
Hi Cedric, I recently had the same problem and the reason was because I was using the IP (hidden in the html object tag) to launch the app from the server, but the domain name to load the other SWF - so the security sandbox considered this a different domain of course. This happened because the

[Flashcoders] Removing A Delegated EventListener

2005-12-23 Thread clark slater
Hey Folks, HAPPY HOLIDAYS! Now say I delegate an event listener as so: chooseBtn.addEventListener (click, Delegate.create (this, onChooseOptions)); How do I go about removing the eventListener? Like this? chooseBtn.removeEventListener (click, Delegate.create (this, onChooseOptions)); Thanks,

Re: [Flashcoders] Removing A Delegated EventListener

2005-12-23 Thread clark slater
); - Original Message - From: clark slater [EMAIL PROTECTED] To: [FlashCoders] flashcoders@chattyfig.figleaf.com Sent: Friday, December 23, 2005 2:37 PM Subject: [Flashcoders] Removing A Delegated EventListener Hey Folks, HAPPY HOLIDAYS! Now say I delegate an event listener as so

[Flashcoders] V2 ComboBox: Target not Found

2005-12-23 Thread clark slater
Hey Folks, V2 ComboBox component is causing a problem. When I use a ComboBox anywhere in my application it breaks some simple existing code that loads external JPGs even though the ComboBox *never* exists at the same time as my image loading instance. If a ComboBox has appeared anywhere in the

[Flashcoders] TESTPOST

2005-12-16 Thread clark slater
Probs posting to the list, just testing. Clark ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Fast Property Compare

2005-12-14 Thread clark slater
Hey Folks, Originally sent this yesterday but it never seemed to come through. Apologies if you get it twice. I'm working on some code for a catalog style application and I need to compare objects from two different sets of data. Any object may have 10+ properties and I need to know if *some*

[Flashcoders] Fast Object Property Comparison

2005-12-13 Thread clark slater
Hey Folks, I'm working on some code for a catalog style application and I need to compare objects from two different sets of data. Any object may have 10+ properties and I need to know if *some* properties have identical values. So far I have been doing this the old fashioned way but I am

[Flashcoders] Casting in Mx2004 vs Flash 8

2005-10-20 Thread clark slater
if the object is not cast to MenuList when attached myList.doSomeOtherThing(); } } Thanks Clark Slater ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders