[Flashcoders] external jpg resize script

2005-12-06 Thread Brumm, Mike
ideas? Thanks in advance, Mike //SET STAGE PROPERTIES Stage.showMenu = false; Stage.scaleMode = noScale; Stage.align = LT; //RESIZE EXTERNAL JPG var tmp:MovieClip; tmp = this.createEmptyMovieClip(bgExpand_mc, 1); tmp.loadMovie(images/background/bg_image1.jpg); tmp.onResize

Re: [Flashcoders] targeting classes in a loaded swf

2005-12-03 Thread Mike Britton
(lc_name, init); hth, Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] text effects similar to fonttwister product

2005-12-02 Thread Mike Mountain
Hi Rishi You've posted on this several times now with the same question and have been given good advice - ie. Check out the displacement map filter option. Your only other option is to get the array of pixels for an offstage text box and work out the transformations yourself and apply them to an

[Flashcoders] Flash 8 security settings tool

2005-12-02 Thread Mike Mountain
I may have been dreaming but I'm sure someone posted a link for a tool to disable the sandbox for flash 8 swfs running in embedded apps. Anyone repost? I know about the activeX settings, http://www.macromedia.com/devnet/flash/articles/fplayer8_security_08.htm l but if we had a tool which

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

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

Re: [Flashcoders] xml, atomic values, special chars

2005-12-01 Thread Mike Boutin
Have you tried somethign like a attrib=name1![CDATA[This is the atmoic value. It's so cool]]/a Ramon Tayag wrote: Hey everyone, How do I properly render text that was pulled from an atomic value? For example, here's the node: a attrib=name1This is the atomic value. It's so cool./a Getting

[Flashcoders] Navigate through XML

2005-12-01 Thread Mike Boutin
Does anyone have any good links for explaining how to navigate through an xml object? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Navigate through XML

2005-12-01 Thread Mike Boutin
Merrill | E-Learning Solutions | icfconsulting.com -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Mike Boutin Sent: Thursday, December 01, 2005 12:26 PM To: Flashcoders mailing list Subject: [Flashcoders] Navigate through XML Does

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

[Flashcoders] (no subject)

2005-12-01 Thread Mike Boutin
I have downloaded XPath implementation for AS2. Where do I extract the *.as files to? There seems to be no documentation on how to install. http://www.xfactorstudio.com/ActionScript/AS2/XPath/ Thanks! ___ Flashcoders mailing list

Re: [Flashcoders] (no subject)

2005-12-01 Thread Mike Boutin
This works great, but this does not have syntax highlighting, is that another issue in itself? Chris Hill wrote: http://ubergeek.tv/article.php?pid=90 Mike Boutin wrote: I have downloaded XPath implementation for AS2. Where do I extract the *.as files to? There seems

[Flashcoders] Targeting when using for loop

2005-12-01 Thread Mike Boutin
I am trying to target an object inside my scrollpane. This is what im trying to achieve: my_pane.content[product_+i].[color_+j].loadMovie What is the correct way to target a movieclip in this way? Thanks! ___ Flashcoders mailing list

[Flashcoders] preload loadvar xml return

2005-12-01 Thread Mike Boutin
I am doing a loadVars call to a php file, that then returns a bunch of xml. Is it possible to show a preloader for this load? var catalog_xml:XML = new XML(); catalog_xml.ignoreWhite = true; catalog_xml.onLoad = function(success:Boolean) { if (success) { } else { }

Re: [Flashcoders] preload loadvar xml return

2005-12-01 Thread Mike Boutin
. - Original Message - From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, December 01, 2005 7:16 PM Subject: [Flashcoders] preload loadvar xml return I am doing a loadVars call to a php file, that then returns a bunch of xml

Re: [Flashcoders] preload loadvar xml return

2005-12-01 Thread Mike Boutin
to parse, or use Remoting where possible. - Original Message - From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, December 01, 2005 7:40 PM Subject: Re: [Flashcoders] preload loadvar xml return Thanks! The problem I have seems

[Flashcoders] Change object in xpath

2005-12-01 Thread Mike Boutin
productNames = XPath.selectNodes(catalog_xml, /shirtBin/shirt/name/text()); var ttTotal = XPath.selectNodes(catalog_xml,/shirtBin/shirt[price12.00]); Is it possible to say do another XPath query and get back a list of results. Then pass that xml object (ttTotal) through instead of

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
I have tried using both content (which is read-only) and contentPath (which seems to target a enternal source, or a movieclip in the library with a linkage set). The problem is I am dynamically creating the clips first on the stage, then placing them in the scrollpane, so it does not contain

Re: [Flashcoders] best place to start building flash 8 components

2005-11-30 Thread Mike Boutin
Yes I have done quite a bit of testing and searching different web sites including all the standard goto sites like actionscript.org / ultrashock.com etc... It seems like I should be able to use scrollpane.contentPath = _root.productHolder; but this doesnt work. Steve Krichten wrote: Flash

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
So I should be able to do something like this rather than putting all the clips in a empty_mc first: myScrollpane.attachMovie(productDisplay, product_+i, i, {_x:700, _y:pro_startY}); ? Steve Krichten wrote: Sorry, you can't do that with the V2 component. However I don't see why you

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
Derek Vadneau wrote: _root.productPane.contentPath = productHolder; The contentPath code will do the attachMovie for you. You either have to specify a symbol name from the library or a URL. Derek Vadneau - Original Message - From: Mike Boutin [EMAIL PROTECTED] To: flashcoders

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
- From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, November 30, 2005 5:55 PM Subject: Re: [Flashcoders] Scrollpane in the arse So I should be able to do something like this rather than putting all the clips in a empty_mc

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
; pro_startY += 160; } That'll make 10 panes, each with a productDisplay loaded in it. - Original Message - From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, November 30, 2005 6:06 PM Subject: Re: [Flashcoders] Scrollpane

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
Perfect! thanks it works great! Mike Boutin wrote: Thanks for the example, except I need 10 productDisplay clips in 1 scrollpane. JesterXL wrote: Then try: var pro_startY= 0; for(i=0; i10; i++) { var ref:ScrollPane = ScrollPane(attachMovie(ScrollPane, pane + i, i)); ref.move(0

RE: [Flashcoders] water ripple

2005-11-29 Thread Mike Mountain
Andre Michelle has a beautiful example on his site - http://lab.andre-michelle.com/ See 'rain' and 'wate'r - there's no source but it looks like he's just using displacment maps You never know if you ask nicely he may send you the fla. M -Original Message- From: [EMAIL PROTECTED]

RE: [Flashcoders] DOS support for swf's

2005-11-28 Thread Mike Mountain
We have some LED dislays in the field that use very small res 16 colour VGA graphics, all the hardware that runs them is quite old. Hence we use old and bespoke software to create very small animation packages to run on these systems. I'm looking for a solution to unify some of our authoring

RE: [Flashcoders] Post awaiting for approval[OT]

2005-11-22 Thread Mike Mountain
Not sure flashcoders is the place to post asking for reviews - but as you asked.. I'd have preloader for all the apps - at the moment you can see them 'build' on screen - a place holder with a load bar would be a better way to hide the fact the images are still loading in, and reassure the user -

RE: [Flashcoders] embedFonts oddity

2005-11-21 Thread Mike Mountain
You've not got Auto kern turned on by any chance - I find it monkeys with dynamic text boxes to the point that it's useless. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Judah Frangipane Sent: 18 November 2005 20:14 To: Flashcoders mailing

RE: [Flashcoders] embedFonts oddity

2005-11-21 Thread Mike Mountain
Subject: Re: [Flashcoders] embedFonts oddity Mike, I don't _think_ so - this is a dynamically created TextField object. I can't immediately find an AS property (rather than the UI's checkbox) to control kerning. Any pointers? Doesn't seem obvious under TextField or TextFormat... Cheers

[Flashcoders] Copying an MC as a bitmap

2005-11-21 Thread Mike Mountain
I'm sure I used to know how to do this but it seems to be eluding me... Say I have an MC (may be made up of text, vectors and bitmaps) on the stage or in the library and I want to copy it as a bitmap into a holder mc on the stage - how do I copy the MC's bitmap properties? In pseudo code

[Flashcoders] Contract Job: Flash/Web Video User Interface

2005-11-21 Thread Mike Lanza
Nice to Haves --- - Location in San Francisco Bay Area Compensation: negotiable Please send an email including work samples to [EMAIL PROTECTED] ONLY if you have all the required skills listed above. Thanks! - Mike Lanza - Mike Lanza

[Flashcoders] FW: getURL() file download revisited

2005-11-21 Thread Mike Schimanowsky
downloading the file? Thoughts are much appreciated, .. MIKE SCHIMANOWSKY Switch Interactive 1237 Howe Street, Vancouver, BC Canada V6Z 1R3 T 604.669.2296 | F 604.669.2310 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

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

2005-11-21 Thread Mike Britton
Hall and Sam Wan. This book showed me so much I can't even begin to express my appreciation for it. It's AS1, but it still holds up, I tell ya. One of the classics. This truly shaped my understanding of OOP because it put it in a context I was already familiar with. Mike

RE: [Flashcoders] Movie seems to unload?

2005-11-18 Thread Mike Mountain
Hi Stathi Just out of interest are you using a preloader toload your content in? That may explain the initial load followed by the error - try the content without the preloader - if that works your problem is in there somewhere. Cheers M -Original Message- From: [EMAIL PROTECTED]

Re: [Flashcoders] Working in macintosh browser ?

2005-11-17 Thread Mike West
Works here.. Safari and Fire Fox Mac OS 10.4.3 Screen resolution 1920x1200 The browser window is full-screen and the swf appears to go edge to edge... the graphics do not scale though (not sure if that's what your asking), the right side of the screen is white. -Mike On Nov 17, 2005

RE: [Flashcoders] I need help with a flash game

2005-11-16 Thread Brumm, Mike
to Excitebike. Thanks in advance for any help/advice, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan - Grindstone Media Sent: Wednesday, November 16, 2005 4:27 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] I need help

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

Re: [Flashcoders] Questions Using MVC Pattern with Flash

2005-11-11 Thread Mike Britton
Command Pattern http://en.wikipedia.org/wiki/Command_pattern Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] AS2Lib Examples

2005-11-11 Thread Mike Britton
in though, so I thought i'd take it for a whirl. 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
. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Offline/Online Security in FP8

2005-11-08 Thread Mike West
. Has anyone run into this and if so, have you found out how to modify the security settings so that a website hosted swf can read flv's from a clients CDROM or hard drive? Thanks for the help. -Mike ___ Flashcoders mailing list Flashcoders

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Mike Mountain
Prolly going to get shot down for this - but I don't see the point of using Flash and Ajax together - flash can do everything Ajax can and more, so if you're going to use flashthen 'use' flash. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Mike Mountain
Success won't be down to just ease of development or features, it will depend on backing from early adopters. Most sites that you'd think would benefit form an RIA (banking, shopping, auctions etc.) are still using fairly old (read reliable) set ups. They are more IA's than RIA's - sure we're

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Mike Mountain
Correction www.rac.co.uk Best mapping tool going -Original Message- From: Mike Mountain Sent: 07 November 2005 12:37 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Ajax and Flash Success won't be down to just ease of development or features, it will depend

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Mike Mountain
Yep. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marco Romeny Sent: 07 November 2005 14:32 To: Flashcoders mailing list Subject: Re: [Flashcoders] Ajax and Flash You mean map24.com (which powers rac.co.uk).

Re: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Mike Britton
I use AMFPHP and this little ditty: ?php /* -- AMFPHP Service Class - directoryReader.php I return an array of filenames Author: Mike Britton 05/19/05 Methods:: getFiles */ class directoryReader { function

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] Batch linkage jsfl command

2005-11-03 Thread Mike Mountain
var lib = fl.getDocumentDOM().library; if (lib.getItemProperty('linkageImportForRS') == true) { lib.setItemProperty('linkageImportForRS', false); } lib.setItemProperty('linkageExportForAS', true); lib.setItemProperty('linkageExportForRS', false); lib.setItemProperty('linkageExportInFirstFrame',

RE: [Flashcoders] Batch linkage jsfl command

2005-11-03 Thread Mike Mountain
Oh it does work, it just doesn't refresh the library view. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 03 November 2005 15:04 To: Flashcoders mailing list Subject: RE: [Flashcoders] Batch linkage jsfl command var

RE: [Flashcoders] Batch linkage jsfl command

2005-11-03 Thread Mike Mountain
Enabling the Export for ActionScript option automatically sets the linkage ID to the name (without path) of the symbol. So setting the linkageIdentifier isn't really required. Just a FYI :-) As per my example, no looping required...wonder if there's a way to refresh the library though

[Flashcoders] LiveMotion Woes

2005-11-03 Thread Mike West
, Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Batch linkage jsfl command

2005-11-03 Thread Mike Mountain
Not quite - if you try the script I posted it doesn't update the library view with the linkage names until you click on them - even though it's done it's mojo. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muzak Sent: 03 November 2005 16:19 To:

Re: [Flashcoders] LiveMotion Woes

2005-11-03 Thread Mike West
:[EMAIL PROTECTED] On Behalf Of Mike West Sent: 03 November 2005 16:10 To: Flashcoders mailing list Subject: [Flashcoders] LiveMotion Woes I have a client looking to edit several (100s) of files that were created in LiveMotion by an animator and now are dropped on my door. This is a long shot-but does

Re: [Flashcoders] Debugging wih FAMES?

2005-11-01 Thread Mike Britton
a choice to avoid FlexBuilder 2. It's the same environment so FAME projects can sit alongside other types of projects. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] blog presentation flash

2005-10-31 Thread Mike Duguid
probably worth checking out mosxml, a version of mambo that outputs xml and has a basic flash skin in the download http://www.ciadd.co.uk/mosxml/index.php?option=contenttask=viewid=41 On 10/31/05, dc [EMAIL PROTECTED] wrote: I need to do a product site which is viewed in flash, but want to use

Re: [Flashcoders] Debugging wih FAMES?

2005-10-31 Thread Mike Britton
really exciting to people like me who remember using the Flash IDE and View-Actions to get to the scripting environment. I feel spoiled by all this awesome new stuff.) Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

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] Flash vs Flex

2005-10-27 Thread Mike Britton
will be for development, period, rapid or otherwise, and Flash or the Flash IDE will be a designer's tool. Both sit on top of the Flash Platform and are the foundation for implementing the technology. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

[Flashcoders] Entrepreneur seeks tech partner for startup

2005-10-27 Thread Mike Lanza
or dweebs...) Me (Mike Lanza) -- - Experienced, successful entrepreneur (4 startups, batting .500 w/ one home run and one single, currently on a 2-hit streak) - Most recent startups in online finance - Producer of family documentary videos - A business guy, but one who loves

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
(rim shot). I have spent a good portion of the last 2 years writing plugins for Eclipse I wonder if one could be written to manage the Library. Then I'd never have to open the Flash IDE. Mike ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
/ Eclipse imports these assets into its own Library plugin to be used by programmers. In this scenario, Flex is to Flash what Photoshop is to Dreamweaver. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com

Re: [Flashcoders] Flash vs Flex

2005-10-27 Thread Mike Britton
others will have more. 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
Library. There may be issues with components/EULA. yep, will need to look into that This is keeping people from sharing source and that is bad. Can't they just open source the components? Come on! (Bangs fist on keyboard.) Mike ___ Flashcoders mailing list

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
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] 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

[Flashcoders] load assets from memory stream?

2005-10-26 Thread Mike Lyda
ok, this is way off the beaten path, but does anyone know of a way to load assets (XML, JPG, etc) with a SWF if the SWF is loaded purely from memory (via the Flash Player in a VB wrapper rather than via the browser). Basically in this situation the SWF and all assets need to be unpacked in memory

Re: [Flashcoders] Local machine data manipulation

2005-10-26 Thread Mike Lyda
Or Central..? --- JesterXL [EMAIL PROTECTED] wrote: Flash cannot write to the local file system; it can read. To write, you'll need a 3rd party projector (mProjector, SWFStudio, Zinc, Screenweaver [open source]), or Macromedia Director. - Original Message - From: Nick Weekes

RE: [Flashcoders] OT: Flash player keeps 'downgrading' itself

2005-10-25 Thread Mike Mountain
More info: http://blog.fuelindustries.com/archives/000108.htm -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 25 October 2005 09:46 To: Flashcoders mailing list Subject: RE: [Flashcoders] OT: Flash player keeps 'downgrading

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

2005-10-25 Thread Mike Britton
the features of ScrollPane (hScroll, vScroll, etc). Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] OT: Flash player keeps 'downgrading' itself

2005-10-24 Thread Mike Mountain
experiencing this on the list? Solutions? Causes? Etc. Cheers Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Flash Game Advice

2005-10-20 Thread Brumm, Mike
Thanks for the advice, Alias. I just ordered the book and joined the Flash Game Coders list. Thanks, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alias Sent: Wednesday, October 19, 2005 5:19 PM To: Flashcoders mailing list Subject: Re

Re: [Flashcoders] Flexbuilder 2 Alpha IDE problems

2005-10-20 Thread Mike Chambers
You can turn this off with: Project Build Automatically mike chambers [EMAIL PROTECTED] Muzak wrote: Hmmm, can't say I've noticed that. Only thing that annoys the hell out of me is the 'rebuilding workspace' dialog each time I hit CTRL+S. I tend to hit that after every word or so. I wasn't

[Flashcoders] The Squid and the Whale Text Effect

2005-10-20 Thread Brumm, Mike
I'm looking to create a text effect similar to the effect of the movie reviews found on the website for The Squid and the Whale (http://www.squidandthewhalemovie.com/). I'm not looking for source code (although that would be nice), but more the overall approach. I assume the words that make

Re: [Flashcoders] Help with Flexbuilder 2 and XML loading

2005-10-20 Thread Mike Chambers
Really? That is working for me. Make sure that you are compiling the project before debugging. mike chambers [EMAIL PROTECTED] Merrill, Jason wrote: Yeah, no dice Mike. No compiler or player errors, but no text in the panel title either. Jason Merrill | E-Learning Solutions

RE: [Flashcoders] Fears and anxiety regarding Flex

2005-10-19 Thread Mike Mountain
Add some to that list: As2 currently compiles down to As1, I assume this is NOT the case with AS3, therefore to take advantage of the speed increases that player 8.5 offers, you have to develop in AS3? Flash's USP as far as I'm concerned is it's very easy to pick and and develop/design

Re: [Flashcoders] Macromedia unveiling Flex 2 andFlash9 :communication or cacophony ?

2005-10-19 Thread Mike Chambers
You can view a captivate demo on how to create an ActionScript only project in Flex Builder here: http://labs.macromedia.com/wiki/index.php/Flex_Builder:tutorials:create_as_project Basically File New ActionScript Project mike chambers [EMAIL PROTECTED] David Stiller wrote: the Flash

Re: [Flashcoders] Help with Flexbuilder 2 and XML loading

2005-10-19 Thread Mike Chambers
); myLoader.addEventListener(complete, xmlLoaded); } function xmlLoaded(evtObj:Event) { myXML = XML(myLoader.data); trace(Data loaded.); } ]] /mx:Script /mx:Application mike chambers [EMAIL PROTECTED] Merrill, Jason wrote: I'm trying to load in an XML file

Re: [Flashcoders] Flex Builder 2 - FP8?

2005-10-19 Thread Mike Chambers
No. Currently Flex Builder creates Flash Player 8.5 SWFs. mike chambers [EMAIL PROTECTED] Kent Humphrey wrote: Is it possible to use the new IDE to produce Flash Player 8.0 compatible .swfs? Of course, you couldn't use any of the new AS3 abilities, but can it work like Flash 8 - as long

Re: [Flashcoders] Will ActionScript 3 require me to rewrite my apps to use it?

2005-10-19 Thread Mike Chambers
because some APIs moved. Hope that helps... mike chambers [EMAIL PROTECTED] ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Need for the Flex Server

2005-10-19 Thread Mike Chambers
this are ColdFusion (via an alpha adapter) and Flex Enterprise Services (which is not in public alpha yet). As far as when third party remoting services support this, you will need to talk to those project's leaders. mike chambers [EMAIL PROTECTED] hank williams wrote: I think that you are right

Re: [Flashcoders] Help with Flexbuilder 2 and XML loading

2005-10-19 Thread Mike Chambers
(evtObj.target.data); trace(Data loaded.); } ]] /mx:Script /mx:Application -- mike chambers [EMAIL PROTECTED] Merrill, Jason wrote: Thanks Mike, but I tried your script and got the exact same compiler errors. Ultimately what I am trying to do is bind some XML

Re: [Flashcoders] Help with Flexbuilder 2 and XML loading

2005-10-19 Thread Mike Chambers
With E4X: http://labs.macromedia.com/wiki/index.php/ActionScript_3:resources:apis:E4X mike chambers [EMAIL PROTECTED] Merrill, Jason wrote: Cool, thanks. That didn't throw any errors. Now how would I traverse that XML data in my mxml? Jason Merrill | E-Learning Solutions

[Flashcoders] Flash Game Advice

2005-10-19 Thread Brumm, Mike
recommend a book on developing Flash Games? Thanks in advance for any help. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Remoting (attn: Mike Chambers)

2005-10-19 Thread Mike Chambers
is). The mx.* packages are part of the framework. The flash.* classes are part of the player. This is an early ALPHA, so documentation and implimentations may not be complete. mike chambers [EMAIL PROTECTED] hank williams wrote: Ok, so I am potentially back to my original position of being

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

<    4   5   6   7   8   9