Re: [Flashcoders] Flash / Flex / ActionScript Podcasts?

2006-03-10 Thread Mike Britton
Eric Dolecki's is the best out there right now. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier A

Re: [Flashcoders] Accordion Component

2006-03-11 Thread Mike Britton
Here's some code I snipped out of one of my apps that uses the accordion. I'm sure it can be simplified. var childWidth:Number = 300; var childHeight:Number = 200; main_ac.setSize(300,400); main_ac.createChild("View","latest",{label:" Posts"}); main_ac.createChild("View","latestComments",{label

Re: [Flashcoders] 8.5 player and javascript

2006-03-27 Thread Mike Britton
I suggest switching to the flash.external (ExternalInterface) package. This seems to be *the way* to do it in AS3. I use it currently in AS2 and it works really well. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or sea

Re: [Flashcoders] Actionscript 2 - suitable for designers?

2006-03-27 Thread Mike Britton
Knowing AS2 well would also make it easier to learn architectural frameworks for Flash applications (ARP and Cairngorn). These allow you to fully experience the benefits of OOP, and you get the added bonus of a developer community around any given framework to answer specific questions. Mike

Re: [Flashcoders] Recommendation on good AS 2.0 framework code?

2006-03-29 Thread Mike Britton
ARP: http://www.osflash.org/arp Cairngorn: http://www.macromedia.com/devnet/flex/articles/cairngorm_pt1_02.html William Gibson: http://en.wikipedia.org/wiki/William_Gibson_%28novelist%29 - respect! Mike ___ Flashcoders@chattyfig.figleaf.com To change y

Re: [Flashcoders] PayPal issues

2006-04-01 Thread Mike Britton
Thanks Dave, that's good to know. You have to love when a company stops supporting a product and fails to notify us about it. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.

Re: [Flashcoders] Local Connection Object problem

2006-04-11 Thread Mike Britton
I've also had problems when there's more than one instance of your application active. If the name of the LC is the same across applications it can result in windows stealing LC's from each other. Mike ___ Flashcoders@chattyfig.figleaf.com To change you

Re: [Flashcoders] RE:Flashcoders] Extending Array Question

2006-04-18 Thread Mike Britton
class com.ArrayExtension extends Array { public function ArrayExtension() { super() var argString = arguments[0].split(","); for(var i=0; i< argString.length; i++) push(argString[i]); } } Usage: var arEx = new ArrayExtension("one,two,three"); trace(ar

Re: [Flashcoders] ExternalInterface

2006-04-19 Thread Mike Britton
Sorry about the crappily-formatted code - I'm writing it in GMail! FLASH: import flash.external.ExternalInterface; class blah { var instance:Object = new Object(); // Function alias for JavaScript var methodName:String = "goToCuePoint"; // Function alias for Actionscript var

Re: [Flashcoders] Flash Layout Manager

2006-04-26 Thread Mike Britton
Also keep in mind that layout management will be part of Flex 2. Personally I can't wait. http://livedocs.macromedia.com/labs/1/flex20beta2/langref//mx/containers/Panel.html Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

Re: [Flashcoders] Flash Layout Manager

2006-04-26 Thread Mike Britton
I hear ya. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Traini

[Flashcoders] MXNA

2006-04-28 Thread Mike Britton
What's going on with MXNA? It looks like the server is down. http://weblogs.macromedia.com/mxna/index.cfm Mike -- http://www.mikebritton.com ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] Required Actionscript Programmers

2006-05-02 Thread Mike Britton
As a precautionary measure, I never work with people who use the word 'gr8'. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you

Re: [Flashcoders] eLearning Standards Guide?

2006-05-02 Thread Mike Britton
Although e-learning is interesting, a call for these kinds of standards is probably more appropriate on a design list or discussion forum, not flashcoders imho (please correct me if I'm wrong). That is, unless the question relates to coding or best practices. Mike ___

Re: [Flashcoders] retrieving names of external files in a folder (or is there something similar to Directors getNthFileNameInFolder())

2006-05-03 Thread Mike Britton
I made a very basic "directory scraper" class way back. I use this with AMFPHP. http://www.randomusa.com/flash/downloads/directoryScraper.zip hth, Mike On 5/3/06, Mikael Wirén <[EMAIL PROTECTED]> wrote: Hi gang, I´m slowly finding the pros (can admit there are some =) and cons of Flash I´m

Re: [Flashcoders] Q:del.icio.us API

2006-05-03 Thread Mike Britton
The API is under development and it requires authentication. I looked into it and it's pretty simple: http://del.icio.us/api/posts/get?tag=humor ...returns an XML object like this: Pretty easy to consume with Flash, but I'm not sure how to 1) authenticate and 2) prevent being banned becaus

Re: [Flashcoders] Q:del.icio.us API

2006-05-03 Thread Mike Britton
This may be a dumb question, but how would HTTP basic authentication be handled through AS2? Wouldn't it have to go through some kind of server-side proxy? Mike Britton On 5/3/06, Mike Chambers <[EMAIL PROTECTED]> wrote: I am in the process of building an ActionScript 3 library t

Re: [Flashcoders] Q:del.icio.us API

2006-05-04 Thread Mike Britton
Mike, can it be done with AS2? Mike Britton On 5/4/06, Troy Rollins <[EMAIL PROTECTED]> wrote: On May 4, 2006, at 1:01 PM, Mike Chambers wrote: > Also, I am doing this in AS3, not AS2. You wouldn't happen to be doing this in AS3 on a Mac, would you Mike? ;-) (Still wait

Re: [Flashcoders] Q:del.icio.us API

2006-05-05 Thread Mike Britton
t way would be to build an API around the query strings. _xml.load(http://del.icio.us/api/posts/get?tag=humor); This technique is a bit sketchy though. M. On 5/4/06, Mike Britton <[EMAIL PROTECTED]> wrote: > > Mike, can it be done with AS2? > > Mike Britton > > > >

Re: [Flashcoders] ads inside a SWF

2006-05-06 Thread Mike Britton
Do it! (Disclaimer: I have no legal training...) Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premie

Re: [Flashcoders] XML Parsing

2006-05-25 Thread Mike Britton
How many nodes are in the XML file? Can you post the code that does the parsing? Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to

Re: [Flashcoders] XML Parsing

2006-05-25 Thread Mike Britton
t;+menu_interactive_xml.firstChi ld.childNodes[counter].attributes.buttonIMAGE, this["btn"+counter].imageLoader.btnImage); counter++; } _parent._visible = true; info_clip._visible = false; } ---

Re: [Flashcoders] self published.

2006-05-30 Thread Mike Britton
Someone please correct me if I'm wrong, but it would be possible to make a connection between servers using LocalConnection. You'd have to ensure your client swf was assigned an id to "authenticate" their application to access the data. There would have to be a security model, in other words. O

Re: [Flashcoders] re: self published

2006-05-31 Thread Mike Britton
Good luck Thomas. From a high-level perspective, your "server flash element" can create a localconnection to receive, and your "client flash element" can do the sending. In the data can be the type of action required, allowing for a switch statement to route it properly, as well as the data itse

Re: [Flashcoders] self published.

2006-06-01 Thread Mike Britton
Red5 requires a jvm (or jre) on the server, if I read correctly. I've been trying to get my host to install one for shared hosting accounts, and would use this red5 over localconnection if I were lucky enough to have java. Mike ___ Flashcoders@chattyfi

Re: [Flashcoders] mp3 play back being sped up

2006-06-06 Thread Mike Britton
The sample rate shopuld be 44.1Khz. You may need to resample your audio before you create the mp3. I've also had problems using variable bitrate. hth, Mike Britton ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or s

Re: [Flashcoders] anyone using mCom?

2006-06-07 Thread Mike Britton
Could someone please email these .mxps to me so I can do a visual inspection? ;-) Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought t

Re: [Flashcoders] Stretching Designs - Coded?

2006-06-11 Thread Mike Britton
Aaron, thanks for putting together that example. I made an example of keeping an element in the center of the Stage using zmc_tween along with your technique, something I started doing to add a little depth when the user resizes. Just eye candy. The attachment is your example with zmc_tween bei

Re: [Flashcoders] Flash and Javascript Interaction

2006-06-12 Thread Mike Britton
I recommend going with ExternalInterface. No external files needed: http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=2200.html However the kit is good and definitely works! Mike ___ Fla

Re: [Flashcoders] Flash coders content degrading

2006-06-12 Thread Mike Britton
Not to mention the ability to search through messages (or digests) for keywords of interest. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash coders content degrading

2006-06-13 Thread Mike Britton
Any way you look at it, we're building a searchable repository of both newb and advanced tips. Flash programmers aren't Nazis, marching together as some kind of unified front against all newbies. A community has elements from all skill levels, and if a newbie has a coding question for the group,

Re: [Flashcoders] Flash coders content degrading

2006-06-13 Thread Mike Britton
I recommend avoiding flashvars and loading the XML using XML2 http://www.gskinner.com/blog/archives/2004/02/the_ultimate_as.html. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.fi

[Flashcoders] Yahoo! Maps Flash API

2006-06-14 Thread Mike Britton
I'm getting started with the Yahoo! Flash API, and noticed their Maps mxp doesn't include com.yahoo.maps.widgets.NavigatorWidget. Looks like Yahoo! needs to update their MXP to include this code since there's an article on Adobe about how to use it. http://www.adobe.com/devnet/flash/articles/yah

Re: [Flashcoders] growing animation

2006-06-20 Thread Mike Britton
It looks like a lot of onEnterFrame (to position the flower and adjust as it grows) and setInterval for the spawning of the branches. I think the text generation uses setInterval, maybe 100 milliseconds to make it seem like it's being output by a computer. Really beautiful work, I think. Mike _

Re: [Flashcoders] Fjax... does this seem ridiculous to anyone else?

2006-06-23 Thread Mike Britton
Seems like a hack to me, from both the AJAX programming and Flash programming perspective. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders B

Re: [Flashcoders] Sound markers

2006-06-27 Thread Mike Britton
Cuepoints can be used with mp3 as well as flv. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier

Re: [Flashcoders] Help for a Java Guy: Instantiating a MovieClip with a linked class and calling class methods

2006-07-06 Thread Mike Britton
Hey Julian, I feel your pain. Take a look at this example: http://www.randomusa.com/flash/downloads/tojulian.zip Mike Britton ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] Help for a Java Guy: Instantiating a MovieClip with a linked class and calling class methods

2006-07-06 Thread Mike Britton
Perhaps, but you never know: someone on this list may have a better solution for your problem. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoder

Re: [Flashcoders] Php Host

2006-07-12 Thread Mike Britton
I use FutureQuest (http://www.futurequest.net/) and love their service. I've never had a problem for over four years. They have PHP, MySQL and Ruby; shared and dedicated hosting; I can't say enough good things about them quite honestly. hth, Mike ___

Re: [Flashcoders] IIS vs Apache: transferring of vars from swf to PHPproblem?

2006-07-12 Thread Mike Britton
Bernard is right. Take a look at these resources before you go live with your application: http://del.icio.us/search/?all=PHP+security Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chatty

Re: [Flashcoders] How to embed metadata in SWF files?

2006-07-15 Thread Mike Britton
A couple questions for you Jeff: 1. What version of Flash player are you targeting? 2. How are you generating the swfs? Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/

Re: [Flashcoders] How to embed metadata in SWF files?

2006-07-16 Thread Mike Britton
I would build a "wrapper" MovieClip class extension for your compiled SWF, and use LocalConnection to send/receive the values. That is, use LocalConnection in both the compiled swfs and in the wrapper. The wrapper is the receiver and the compiled clips are the broadcasters. http://www.osflash.o

Re: [Flashcoders] AMFPHP: CrossDomain

2006-07-17 Thread Mike Britton
To skirt this issue, I use AMFPHP proxy classes on my swf's host server to talk to other servers or snap up RSS files. Not sure about filesystem stuff though. It seems like that would be a security issue on the backend as well as the front! Feel free to mail me offlist if you want to check out

Re: [Flashcoders] ActionScript Application Framework

2006-07-18 Thread Mike Britton
We definitely can do this, but it may amount to reinventing the wheel. Do you suggest this in lieu of Cairngorm and ARP? Are there things about these frameworks that make them undesirable? Mike ___ Flashcoders@chattyfig.figleaf.com To change your subs

<    1   2