Re: [Flashcoders] Noise Cancelling in Flash

2006-01-31 Thread ryanm
, though, you're SOL. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Gotcha: F8 Security Model

2006-01-27 Thread ryanm
crossdomain policy file in the Flash help. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: SV: SV: [Flashcoders] Microsoft Sparkle

2006-01-26 Thread ryanm
, and who knows, 2 years from now XAML may become the standard markup behind your display layer. Or not. Who cares? I'll use whatever works the best. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com

Re: [Flashcoders] AMFPHP for commercial projects

2006-01-26 Thread ryanm
recommending it to his clients, then I would hazard to say that I might be able to recommend it as well. It's really going to end up being more about how comfortable your client is with OSS software and how comfortable you are supporting it if it breaks. ryanm

Re: SV: SV: [Flashcoders] Microsoft Sparkle

2006-01-25 Thread ryanm
these days? ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: SV: SV: [Flashcoders] Microsoft Sparkle

2006-01-25 Thread ryanm
hardware. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Documenting my code

2006-01-19 Thread ryanm
. All that said, if you look around I'm sure you can find a number of open source documentation generators based on the javadoc comment style. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] Documenting my code

2006-01-18 Thread ryanm
Or, can anyone suggest an alternative software that takes the java-doc style comments and create documentation? Check out NaturalDocs. It's free (open course), and it reads almost any style of comments. ryanm ___ Flashcoders mailing list

Re: [Flashcoders] Making things

2006-01-08 Thread ryanm
could ask on, I know some of the guys that work there administer the list. I haven't bought any of their stuff, but I've been thinking about it for several personal projects. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

Re: [Flashcoders] Massive XML files and Flash

2006-01-07 Thread ryanm
on the exact format and more tolerant to minor changes. Not to mention much easier to update if the format changes drastically. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Massive XML files and Flash

2006-01-07 Thread ryanm
seconds isn't a long time to wait if there is a progress bar and the rest of the app is working, but it's a loong time to wait if the whole app is locked up. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

Re: [Flashcoders] Massive XML files and Flash

2006-01-07 Thread ryanm
that is to not use XML at all, but use a format that is easier to parse, like comma delimited or fixed-width. Check the archives, it's been discussed at length before. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread ryanm
to be a thing of the past (whenever they get around to releasing 8.5, that is). ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Any good 3rd party penetration numbers for v8 yet?

2006-01-06 Thread ryanm
Does anyone have any references to 3rd party Flash 8 player penetration numbers? I have some execs asking me if it's safe to use v8 yet, and they're looking for numbers in the 70%-80% range. Of course they'll doubt numbers from Adobemedia, so 3rd party numbers would be better. ryanm

Re: [Flashcoders] Any good 3rd party penetration numbers for v8 yet?

2006-01-06 Thread ryanm
that attitude by many companies, it's pretty amazing that Flash gets as much penetration as they do. Apparently people play a lot of games and look at a lot of independant sites, and the corporate penetration is just a useful side effect. ryanm

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread ryanm
needing E4X and RegEx, not just for the convenience, but out of necessity. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Any good 3rd party penetration numbers for v8 yet?

2006-01-06 Thread ryanm
being new (not that 4 months old is new in this industry), and are afraid of extra dialogs and whatnot, so I get stuck back in v7 even though I can demonstrate that their app/site would perform substantially better compiled for 8. ryanm

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread ryanm
xpath has been around for a while XPath != *native* E4X XPath only bears a passing resemblence to E4X, and is nothing like it in terms of performance. You should check out http://labs.macromedia.com and download the Flex2 alpha. ryanm

Re: [Flashcoders] Massive XML files and Flash

2006-01-05 Thread ryanm
from the web if you were online and it gave you the option to store it (in an ungodly-sized shared object) if you wanted to. Anyway, that's how I did it, whether or not it was successful is a matter of opinion. ;-) ryanm ___ Flashcoders mailing

Re: [Flashcoders] Flash Player 8.5 - Illegal Operation caused by ?

2006-01-03 Thread ryanm
be HTML 4.0 with an embed tag inside of an object tag. If you remove the doctype declaration Firefox won't call it an error anymore. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo

Re: [Flashcoders] Flash Class Array bug - Please verify

2005-12-29 Thread ryanm
Flash is still treating the array as a static member. It isn't static, but it is being assigned the array object in the prototype, which acts sort of like a static member. You need to assign (initialize) it in the constructor, rather than in the member defenition. ryanm

Re: [Flashcoders] Flash Class Array bug - Please verify

2005-12-29 Thread ryanm
in the constructor and everything will work exactly how you expect it to. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Faster code?

2005-12-22 Thread ryanm
performance gain at runtime, what is its purpose? If you just enjoy writing cryptic and difficult to scan code, go for it, have fun. Personally, I like to write code that makes my job easier. ryanm ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] Is Adobe settings manager usable ?

2005-12-22 Thread ryanm
(on the client). The biggest concern is that people will think there has been a mistake when they find themselves on MM/Adobe's website. If something *can* be done about this, then please understand that it's important to us and deserves attention. ryanm

Re: [Flashcoders] Faster code?

2005-12-22 Thread ryanm
can't go back. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Faster code?

2005-12-22 Thread ryanm
an end to that, though. The end goal is ECMA-4 compliance, which means that from here forward, ActionScript should change at about the same rate as C# or Java, and with those languages companies and developers count on classes being reusable with only minor revisions. ryanm

Re: [Flashcoders] Faster code?

2005-12-22 Thread ryanm
or ad, but that's not where I spend the majority of my time these days. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Faster code?

2005-12-22 Thread ryanm
I've yet to get a death threat from some poor sod to who had to maintain my code... but, to be on the safe side, I always keep my glock loaded. I've come pretty close to issuing several of those death threats. ;-) ryanm ___ Flashcoders mailing

Re: [Flashcoders] Faster code?

2005-12-21 Thread ryanm
the way you approach the problem. Changing your code to use optimized loops or whatever may gain you hundredths of a second, but changing your approach can save you several seconds in one fell swoop. ryanm ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] Array like access to custom class?

2005-12-20 Thread ryanm
Can I provide array like access to a custom collection object? The easiest way would be to extend Array. Then you start with all the functionality of the Array object, and you can add or remove functionality as needed. ryanm ___ Flashcoders

Re: [Flashcoders] What not to do

2005-12-20 Thread ryanm
important than the deadline or the budget, while at other companies the opposite will be true. Your best practices will depend heavily on your employer's priorities, and the team (or lack therof) that you have to work with. ryanm ___ Flashcoders

[Flashcoders] generating documentation

2005-12-20 Thread ryanm
and documentation standard for Flash developers (and recommending a documentation app) for my company, so I thought I would see what is out there before I go making any decisions. Any recommendations or warnings about specific software are appreciated. ryanm

Re: [Flashcoders] flash and ASP.NET (ryanm)

2005-12-13 Thread ryanm
the end-user bandwidth and time, not to mention keeping traffic volume on the server down? It all depends on the needs of the app, of course, but I find that in most cases, remoting would often be easier on me but that doesn't necessarily mean it serves the app best. ryanm

Re: [Flashcoders] flash and ASP.NET (ryanm)

2005-12-12 Thread ryanm
That's about it. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Display same value in 3 fields

2005-12-08 Thread ryanm
; } GlobalField = OK; ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] HTML markup for highlighted text...

2005-12-07 Thread ryanm
I'm working on a chat, and what I want to do is highlight text that is whispered. But the background-color style property doesn't work on spans, does anyone know of a good way to set the background color of text in an HTML text field? Is it even possible? ryanm

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-07 Thread ryanm
nightmare. It's like a big welcome mat for viruses. I wouldn't hold my breath. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-07 Thread ryanm
directly to the systel-level sound buffer to minimize latency, making it a prime target for a virus entry point. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-07 Thread ryanm
list of ways to compromise the client with an innocent-looking Flash x-mas card. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Who wants MIDI in the Flash Player?

2005-12-07 Thread ryanm
channels. I don't have any idea what kind of Flash content could put such controls to use, but the best way to find out would be to make it possible, and then sit back and see what people do. ryanm ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] Dynamic variables in as3

2005-11-25 Thread ryanm
you should do instead is build an array of references to your movie clips, like this: var clips:Array = new Array(); for(var i:Number =0;i acRate; i++){ clips[i] = new MovieClip(); clips[i].x = i*10; clips[i].y = i*10; } ryanm

Re: [Flashcoders] How to solve SSS triangle?

2005-11-22 Thread ryanm
) Where a, b, and c are the sides, and q is the angle opposite c ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Expandable banners

2005-11-09 Thread ryanm
to consume it. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Fairy dust

2005-11-07 Thread ryanm
I have a quick question, im doing a script that is going to produce fairy dust, but i cant seem to get the right touch. Does anyone else have any good scripts och tips that they want to share. Click on tinkerbell. http://www.horsefish.net/elementalfx/flashdemo.html ryanm

Re: [Flashcoders] Bizare...AS3.0 packages have methods?

2005-10-31 Thread ryanm
(for the mentioned functions) in a single line of code: import flash.util.* Then your trace() calls will work just like the do now. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Re: Newbie AS3 question

2005-10-29 Thread ryanm
to type those extra 5 characters, and it is to save time, money, and the embarrasment of explaining to your boss that you deleted something without fully understanding the implications. ryanm ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] Newbie AS3 question

2005-10-29 Thread ryanm
had to support. ;-) ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Re: Newbie AS3 question

2005-10-29 Thread ryanm
sometimes and other times it is extraneous, why not use it all the time for the sake of consistency? ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Newbie AS3 question

2005-10-29 Thread ryanm
in a Flash IDE context yet. A movie clip is still a movie clip, but now, instead of being the basic unit of Flash, there are smaller units, such as sprites, displayobjects, etc. More granualrity means more control, but it also means a few extra lines of code. ryanm

Re: [Flashcoders] Re: Newbie AS3 question

2005-10-29 Thread ryanm
, then it probably isn't necessary, and if it's necessary, it's important enough to be a member. So really, this is the only ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Re: Newbie AS3 question

2005-10-29 Thread ryanm
to make a base class containing only that method and then extend it (because of the size limit imposed by Flash), but as was mentioned, they are mostly encryption or compression classes, and are special cases. ryanm ___ Flashcoders mailing list

Re: [Flashcoders] Newbie AS3 question

2005-10-28 Thread ryanm
I'd be more inclined to say it's awesome! I have to agree, I'm just dissapointed that it doesn't work like that in Flash 8. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo

Re: [Flashcoders] Newbie AS3 question

2005-10-28 Thread ryanm
display objects can only have one parent. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Generic listeners

2005-10-26 Thread ryanm
change it. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Multilanguage sites

2005-10-25 Thread ryanm
Make sure you encode your XML as UTF-8, if possible, write a good schema for your data format (this is not easy) and if file size is a serious consideration(which it always is), Keep in mind that you can use compression on your XML, pretty much all browsers support it. ryanm

Re: [Flashcoders] Problem with .as files

2005-10-24 Thread ryanm
This can also be an issue with working on a network drive. You should make sure all your .as files are local. Or make sure that your local clock is a minute or two behind the network machine's clock. ryanm ___ Flashcoders mailing list

Re: [Flashcoders] Learn AS2 or AS3?

2005-10-21 Thread ryanm
that the new VM is incompatible with the old one because of the fundamental changes in the way the player works. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Particle effects theory as it relates to BitmapData

2005-10-20 Thread ryanm
I am not sure if this has been mentioned. The definitive particle effect site for Flash. http://www.horsefish.net/ElementalFX/what.html FYI, ElementalFX uses the one particle per movieclip method. ryanm [EMAIL PROTECTED] ___ Flashcoders mailing

Re: [Flashcoders] flash linux

2005-10-20 Thread ryanm
buggy. you should ask them. they know best. I wouldn't call it buggy, I would call it an incomplete implementation. Do yourself a favor and don't tell your customers that linux is supported. ryanm ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] flash linux

2005-10-20 Thread ryanm
if a feature is sometimes working and sometimes not, what shall we call it in your opinion ? Lazy ? When I'm feeling generous, I would call the linux Flash player a prematurely released beta. That's about it. ryanm ___ Flashcoders mailing

Re: [Flashcoders] Flash player 8.5 and ActionScript 3.0

2005-10-08 Thread ryanm
How does that work on the Mac? Go to any site developed with .NET on a mac, and it'll work. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash player 8.5 and ActionScript 3.0

2005-10-07 Thread ryanm
And I replied to that. ryanm ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

<    1   2