Re: [Flashcoders] Re: AMFPHP for commercial projects

2006-01-26 Thread Mike Britton
Any would-be lawyers lurking here who could once and for all help us resolve this issue? Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Re: AMFPHP for commercial projects

2006-01-26 Thread Mike Britton
It's the legal issue -- this implies risk where other options don't. Personally I love AMFPHP and have never observed it blowing up; it's far faster than ColdFusion remoting in my experience. Legal issues aside, I'd go with it for enterprise-scale projects. Mike On 1/26/06, Simen Brekken <[EMA

[Flashcoders] Preview window: always full screen?

2006-01-24 Thread Mike Britton
I apologize if this has been covered, but can someone tell me how to make the Flash IDE preview window launch fullscreen? I have dynamically-scaling apps I need to test without causing a resize event to trigger by making the damn window larger. This is killing me! Thanks in advance, Mike __

Re: [Flashcoders] embed SWF with PHP

2006-01-17 Thread Mike Britton
Pumping the object and embed tags into a DIV's innerHTML using AJAX is one possibility. You could also write the object and embed tags with an external JavaScript. This would prevent the source from being viewed and is probably an easier option given its all on the client. It's impossible to com

Re: [Flashcoders] Using the $ sign at the beginning of a variable

2006-01-12 Thread Mike Britton
Nothing in particular - just a style of naming vars. I don't do it because it looks too much like PHP and I get disoriented. I recall seeing this technique used to distinguish public from private vars, but I think it went out of favor when AS2 came out. On 1/12/06, Ryan Luce <[EMAIL PROTECTED]

Re: [Flashcoders] Stage.height Misreporting

2006-01-05 Thread Mike Britton
Try using setInterval Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash does not run when wmode is transparent and div is hidden

2006-01-04 Thread Mike Britton
I never use wmode transparent -- it's buggy and broken. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] flash and cfm

2005-12-20 Thread Mike Britton
Looks like you're running into the character limit of URL strings. I second Jason's recommendation of remoting. Either that or use coldfusion to write XML files. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figle

Re: [Flashcoders] anchors in dynamic textfield?

2005-12-15 Thread Mike Britton
In the past I've simulated anchors with a ScrollPane using its vPosition property and duplicated clips inside the ScrollPane. However I agree it would be nice if TextArea had the ability to anchor. You could use asfunction to control the textArea's vPosition based on a variable you pass in. The

Re: [Flashcoders] Book sequence...

2005-12-12 Thread Mike Britton
> December should be a fun month. With this in mind: 1. Foundation ActionScript Animation: Making Things Move! 2. Flash Math Creativity: Second Edition Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/ma

Re: [Flashcoders] Flash is a single-threaded app? Maybe it's just the AVM? or...

2005-12-08 Thread Mike Britton
It scares me too, but so does UI lock, something that's been happening to me a lot lately. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] targeting classes in a loaded swf

2005-12-03 Thread Mike Britton
I'd look into LocalConnection. It sounds like you're trying to figure out how to avoid dependencies between objects, which (to me) makes sense. Rather than over-design and make things work in a complicated way, you can use LocalConnection to init your child clips from your controller: receiving_

Re: [Flashcoders] Firefox flash plugin problem?

2005-12-02 Thread Mike Britton
Flash has had this problem for years. I wish MM would either fix it or do away with the idea. It's definitely cost me time and caused my users headaches. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/m

Re: [Flashcoders] zooming application

2005-12-02 Thread Mike Britton
If it were me, rather than reinvent the wheel (this is a common need) and if I had a budget, I'd go for Zoomify Enterprise: http://www.zoomify.com/enterprise/ Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.c

Re: [Flashcoders] Firefox flash plugin problem?

2005-12-01 Thread Mike Britton
Do you have fonts embedded, and if so have you included all the right characters? Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [flashcoders] Q for the Pro's: How did you learn flash?

2005-11-21 Thread Mike Britton
I'm not a "pro", but speaking of influential books: OOPWAS! http://www.amazon.com/gp/product/0735711836/002-9062480-9398441?v=glance&n=283155&n=507846&s=books&v=glance I was doing "procedural MVC" with fusebox when I read / became obsessed with Object-Oriented Programming with Actionscript by Bra

Re: [flashcoders] Q for the Pro's: How did you learn flash?

2005-11-21 Thread Mike Britton
Same here, I started when it was "futuresplash." At first I was fascinated with the effects possible, then I was drawn into using it for data display. When I want to learn something, I focus in on that one thing and do a simple example. I save that example and use it as a reference. Every tiny

[Flashcoders] AS2Lib Examples

2005-11-11 Thread Mike Britton
Does anyone have a basic AS2Lib example application they don't mind sharing? Coming from an ARP perspective, AS2Lib looks like it provides the same benefits, but the learning curve is harder. I'm checking out the API docs now and it looks pretty deep. I like how it has a testing framework built in

Re: [Flashcoders] Questions Using MVC Pattern with Flash

2005-11-11 Thread Mike Britton
The Command pattern is a true design pattern, while MVC is an architectural pattern. It's difficult to explain how one could be used in place of the other because the Command pattern can be used inside an MVC design/architecture. Similarly, MVC can be used inside a Command. I believe Brent's origi

Re: [Flashcoders] Question from newbie

2005-11-11 Thread Mike Britton
Hi Joan, If you're using the timeline, try adding this actionscript to a keyframe at the end of your animation: stop(); getURL("http://google.com";); Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mail

Re: [Flashcoders] Remoting with AMFPHP vs. ASP

2005-11-09 Thread Mike Britton
Why not use Java? Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Questions Using MVC Pattern with Flash

2005-11-09 Thread Mike Britton
You'll quickly get into framework-building, something that can delay your project. Why not use an existing open source framework like ARP? http://www.osflash.org/ARP I've gone the route of employing MVC in every aspect of my architectures, then I discovered the command pattern, which ARP uses.

Re: [Flashcoders] [OTAnn] Feedback

2005-11-07 Thread Mike Britton
Wait -- I HEARD THIS WAS THE NEXT BIG THING! ;) Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Mike Britton
I use AMFPHP and this little ditty: methodTable = array( "getFiles" => array( "description" => "I return all files.", "access" => "remote", "returns" => "array", "arguments" => array("argDir") ) ); } function getFiles($argDir) { $dir = opendir($argDir); $names = array(); $names['files'] = arra

Re: [Flashcoders] Debugging wih FAMES?

2005-11-01 Thread Mike Britton
> Learning FlexBuilder 2 can coincide with your FAMES learning because it all happens in the same IDE (Eclipse). There is really no difference between FAMES and FlexBuilder 2 in terms of IDE. That's why I said it was probably a good idea for Brent to continue using FAME, but not consider doing so

Re: [Flashcoders] Debugging wih FAMES?

2005-10-31 Thread Mike Britton
Learning FlexBuilder 2 can coincide with your FAMES learning because it all happens in the same IDE (Eclipse). I don't recommend switching entirely unless you don't plan to release anything until Flex 2 comes out (Jan?). Flex is simply another way to develop apps on the Flash Platform. (It's really

Re: [Flashcoders] blog presentation > flash

2005-10-31 Thread Mike Britton
I've done a presentation layer for Movable Type that hits an AMFPHP service class. Email me offlist if you want the class. I'm not sure if it works with the latest Movable Type though. It's really easy to work with using Flash remoting, methods like getEntries, getCommentsForEntry, getCategories

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
I think a Library plugin is a logical requirement if MM really wants to improve workflow. Hopefully it will be considered for FB2/8.5 update. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinf

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
> ok, in what format is the library saved from the Flash IDE? Right now from what I know it isn't possible to save a Library from the IDE, but if I were to venture a guess I'd say this would be possible using JSFL. If so, a resulting XML and SWC would make sense. Mike

Re: [Flashcoders] When migrate to Flash 8?

2005-10-27 Thread Mike Britton
> little things that make development quicker Faster compile time being the most important, IMHO. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
>Not totally sure what you mean by that... Map symbols to classes via some kind of package explorer wizard: if you create a movieclip in Flash, it goes into the Flash Library as a symbol. When you right-click this new symbol in the Library and choose 'properties' you'll see a wizard in which you c

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
1. Map symbols to classes via some kind of package explorer wizard 2. Import existing Libraries from Flash and maintain symbols' package paths 3. Ability to export so you can import into another FlexBuilder installation There may be issues with components/EULA. Those are the biggies. I'm sure oth

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
Rather, "In this scenario, Flex is to Flash what Dreamweaver is to Photoshop." Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
Agreed. Quite selfishly, I'd like the following to happen: Blaze joins the Adobe graphics suite of tools and integrates with them in all the obvious ways (video, vector graphics, animation timeline like After Effects, etc). Its Library can export all these assets into FlexBuilder. FlexBuilder / Ecl

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
> you can create an ActionScript 3 project in Flex Builder that never goes anywhere near the Flex Framework. That's the reason I was soothsaying about FlexBuilder 2 becoming the defacto development environment and the Flash IDE evolving into a tool for design. Eclipse will "eclipse" the Flash IDE

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
That makes sense Robert. In the same line of thinking, as the Flex stuff evolves, I see the Flash IDE turning into a sort of "Photoshop for Flash" where graphical assets are designed/maintained, and FlexBuilder 2 (eclipse) becoming the programming environment. So FlexBuilder 2 will be for developm

Re: [Flashcoders] When migrate to Flash 8?

2005-10-27 Thread Mike Britton
I'd go ahead and upgrade now. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] full browser flash + vertical html scrollbar

2005-10-25 Thread Mike Britton
Another solution would be a three-pronged approach: have a fullscreen swf that loads in another swf containing a ScrollPane component at 0,0. Pass Stage.width and Stage.height to the swf containing the ScrollPane (to resize it), and load in the content (your site). This would give you all the fea

Re: [Flashcoders] how can I make the RSS reader for my site

2005-10-20 Thread Mike Britton
In case you still need reference I snipped this out of somehting i did awhile back. Seems pretty incredible that in flex2 this will be reduced to just a few lines of code. for (var j=0; jhttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Bug when using String Object in MovieClipLoader.loadClip()

2005-10-19 Thread Mike Britton
Are you in MX04? This isn't the case in Flash 8: var strlit = "myswf.swf"; my_mcLoader.loadClip(strlit, targetMC); Works fine. Also, I wouldn't name any of my variables 'target' or 'url' since these are properties of some internal classes. Mike ___

Re: [Flashcoders] How do you get started in flex ?

2005-10-19 Thread Mike Britton
Although I don't have an answer for you Grant, I's like to add a few questions of my own to what you said. My problem is I like coding Flash apps in ARP; will this still be practical if I switch? Can I use Flex and "standard" ActionScript programming together? Are there advantages to approaching

Re: [Flashcoders] Drop Shadow Rendering Issue

2005-10-08 Thread Mike Britton
I went through the same thing and was disappointed to discover that for dropshadows, we may be better off still using imported pngs. Glad you sorted it out. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/

Re: [Flashcoders] Drop Shadow Rendering Issue

2005-10-08 Thread Mike Britton
Why don't you create a new mc behind image_holder, draw a rectangle in it and apply the DropShadowFilter to it? Better yet, create one mc specifically for the DropShadowFilter and duplicate it. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.fi

Re: [Flashcoders] RUNNING SOLUTIONS zieht um!

2005-10-07 Thread Mike Britton
This message is driving me insane. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

<    1   2