RE: [Flashcoders] Fitting squares into an area

2006-05-09 Thread Mike Mountain
One last addition: [as] /** * computes the largest N square size (and layout) that can fit an area (width,height). * * @return an Object containing 'squareSize' and the number of 'cols' and 'rows' * and a layout array for drawing the squares on screen. * * 96% of the credits goes to Danny

RE: [Flashcoders] Fitting squares into an area

2006-05-09 Thread Mike Mountain
; next_sheight = height/(rows+1); } } } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 09 May 2006 10:41 To: Flashcoders mailing list Subject: RE: [Flashcoders] Fitting squares into an area One last addition

RE: [Flashcoders] Fitting squares into an area

2006-05-09 Thread Mike Mountain
OK this is cool, create an MC in the library 100px w h, linkage square, create a smaller different colour square inside it just so you can see what's going on - Then run this: [as] /** * computes the largest N square size (and layout) that can fit an area (width,height). * * @return an

RE: [Flashcoders] Fitting squares into an area

2006-05-09 Thread Mike Mountain
Hmmm it has problems - try 8 at 640x480 M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 09 May 2006 11:11 To: Flashcoders mailing list Subject: RE: [Flashcoders] Fitting squares into an area OK this is cool, create

RE: [Flashcoders] Fitting squares into an area

2006-05-09 Thread Mike Mountain
: [Flashcoders] Fitting squares into an area Not that complex, it turns out... Change the line if (next_swidthnext_sheight) { to if (next_swidth=next_sheight) { Better? :) Danny - Original Message - From: Mike Mountain [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders

RE: [Flashcoders] [OT] Studio 8 licensing in intelMac dual bootscenario

2006-05-09 Thread Mike Mountain
But they do have to have the same OS - AFAIK you license the product for an OS. Change OS and you'll need to relicense. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: 09 May 2006 16:52 To: Flashcoders mailing list

Re: [Flashcoders] external interface not working

2006-05-09 Thread Mike Chambers
Well, you might want to start by posting some code examples. mike chambers Doug Tangren wrote: I am a mac user using flash 8 testing on safari 2.0.3. , flash's external interface and I am not getting flash to communicate with javascript or visa versa. Can anyone help

[Flashcoders] Fitting squares into an area

2006-05-08 Thread Mike Mountain
Anyone got any script to cover the following problem: Given an area (x,y) what's the best way of filling it with 'n' squares? Cheers M ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] Fitting squares into an area

2006-05-08 Thread Mike Mountain
- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Mike Mountain Gesendet: Montag, 8. Mai 2006 14:51 An: Flashcoders mailing list Betreff: [Flashcoders] Fitting squares into an area Anyone got any script to cover the following problem: Given an area (x,y) what's the best

Re: [Flashcoders] quick xml question

2006-05-08 Thread Mike Boutin
You could use php to write an xml file. Flash guru wrote: Hey all, Can anyone point me in the right direction of how to save an xml doc from flash. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] ads inside a SWF

2006-05-07 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

Re: [Flashcoders] ads inside a SWF

2006-05-07 Thread Mike Lyda
well.. anything is possible with a little magic. I'm wondering if someone has already done it, if it's legal, etc.. in all seriousness, I think I've figured out how to do it, but I'm kind of lazy like and not wanting to get a reprimand from the big Google man. --- Rajat Paharia [EMAIL

[Flashcoders] ads inside a SWF

2006-05-06 Thread Mike Lyda
I'd like to include ads (Google ads) inside of a SWF.. with hopes of having the SWF end up on other sites. But is this u legal with Google? And has someone already done something similar? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the

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

2006-05-05 Thread Mike Chambers
Well, wait no more. We have had the Flex 2 Beta for Mac for a month or two now: http://www.macromedia.com/go/labs_flex2_downloads Just click the link on that page for Flex SDK 2.0 mike chambers [EMAIL PROTECTED] Troy Rollins wrote: On May 4, 2006, at 1:01 PM, Mike Chambers wrote: Also

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

2006-05-05 Thread Mike Chambers
Actually, that is a little different. That would work if running the browser, as the browser would handle the HTTP auth (it would pop up a user / pass dialog). However, running in standalone would not work. You would have to manually write the appropriate headers in the request. mike

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

2006-05-05 Thread Mike Britton
This technique is a bit sketchy though. True, and their API isn't finalized. There are few things more soul-shattering than having your XML-parsing wrapper rendered obsolete without warning. Mike On 5/5/06, elibol [EMAIL PROTECTED] wrote: It can be done with AS2. The easiest way would

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

2006-05-04 Thread Mike Chambers
. Also, I am doing this in AS3, not AS2. mike chambers [EMAIL PROTECTED] Weyert de Boer wrote: It probably is a dumb question, but what do you exactly mean by 'HTTP basic authentication'??? :) I think he means the simplest form of http authentication, meaning the credentials are able to give

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 waiting for a flex beta

[Flashcoders] Moving animation positions

2006-05-04 Thread Mike Boutin
I am trying to move all my animations so that they arecentered in the movieclip they were created in (was created off-centered) except I dont want to go through every keyframe and adjust the positioning frame by frame. Is there an easier way of doing this? I am using flash 8 pro... Any

RE: [Flashcoders] Taking a screenshot from a FLVPlayback componentusing AS

2006-05-03 Thread Mike Mountain
It's possible in Flash 8 using copyPixels (BitmapData.copyPixels method) http://livedocs.macromedia.com/flash/8/main/1948.html Hth M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bart Zonneveld Sent: 03 May 2006 10:45 To:

RE: [Flashcoders] Taking a screenshot from a FLVPlayback componentusing AS

2006-05-03 Thread Mike Mountain
: 03 May 2006 11:04 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Taking a screenshot from a FLVPlayback componentusing AS Exactly what I was looking for. However, how can I get to the bitmap data of my FLVPlayback component? thanks! -Original Message- From: 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

[Flashcoders] Flash online vector paint editor app?

2006-05-03 Thread Mike Mountain
Anyone know of a pre rolled flash (as in runs online as a swf - not exports to swf) vector editor/text editor paint app that exports to XML or the like. We'll happily build our own if not but it sounds like one of those things that someone must've already done a million times over. Our only real

RE: [Flashcoders] Q:Flash 8 and memory leaks

2006-05-03 Thread Mike Mountain
It crashes IE too - there is an issue concerning bitmap data that you need to dispose of an instance if you are creatin it as a var within a function it will live beyond the scope of the function so to speak. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [Flashcoders] Flash online vector paint editor app?

2006-05-03 Thread Mike Mountain
? http://www.figleaf.com/products/wysidraw.cfm Jason Merrill | E-Learning Solutions | ICF International -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: Wednesday, May 03, 2006 10:39 AM To: Flashcoders

RE: [Flashcoders] Flash online vector paint editor app?

2006-05-03 Thread Mike Mountain
Having seen the price and checked out the capabilities I think I'll build my own! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 03 May 2006 16:00 To: Flashcoders mailing list Subject: RE: [Flashcoders] Flash online vector

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

2006-05-03 Thread Mike Britton
/ /posts Pretty easy to consume with Flash, but I'm not sure how to 1) authenticate and 2) prevent being banned because of having a weird user-agent. hth Mike On 5/3/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Has anyone incorporated the del.icio.us API or similar social bookmarking

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

2006-05-03 Thread Mike Chambers
a proxy. mike chambers [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Has anyone incorporated the del.icio.us API or similar social bookmarking feature into any of their projects? Just looking for examples and ideas at the moment and what is/isn't possible. Thanks in advance Jim Bachalo [e] jbach

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 to wrap

[Flashcoders] Easing Dynamic Text

2006-05-03 Thread Mike Boutin
Anyone have any links to easing dynamic text? Ive searched google high and low with no luck. Thanks! Boots ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Easing Dynamic Text

2006-05-03 Thread Mike Boutin
Do you know of any tutorials that explain the logic behind easing dynamic text? I understand that a tween class would/could be used but looking for more of how its done. Boots eric dolecki wrote: mc_tween2 does that On 5/3/06, Mike Boutin [EMAIL PROTECTED] wrote: Anyone have any links

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] Can this be true?

2006-05-02 Thread Mike Mountain
I get 23 too, I think there must be something wrong with the FPS counter code. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Kønig Sent: 02 May 2006 15:37 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Can this be

RE: [Flashcoders] Can this be true?

2006-05-02 Thread Mike Mountain
Try this: [as] sTime=getTimer() count=0 onEnterFrame=function(){ count++ split=getTimer()-sTime fps=Math.round(count/split*1000) } [/as] Works great for me in the ide. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [Flashcoders] Can this be true?

2006-05-02 Thread Mike Mountain
Of Mike Mountain Sent: 02 May 2006 15:45 To: Flashcoders mailing list Subject: RE: [Flashcoders] Can this be true? Try this: [as] sTime=getTimer() count=0 onEnterFrame=function(){ count++ split=getTimer()-sTime fps=Math.round(count/split*1000) } [/as] Works great

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

[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

RE: [Flashcoders] PPC SWF2EXE

2006-04-26 Thread Mike Mountain
Wow - talk about on topic, I just came out of a meeting about this very subject. Apparently XAMLON will publish to ppc - but the beta is now closed M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lee McColl-Sylvester Sent: 26 April 2006

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

[Flashcoders] Reverting flash 7 code to Flash 6

2006-04-26 Thread Mike Mountain
Anyone care to point me to a good reference of what Flash7 AS will not work in Flash 6? Can't seem to find a reference doc. Ta M ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Mike Boutin
Have you tried using netstream object to play your flvs instead? Wouter Steidl wrote: Thx for your respose, But I cant believe it has to do with thatcause it works if I don't try to load flvs from the same project but throw in the file from that other project.. Any more thoughts?

Re: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Mike Boutin
is that it all works, but in this weirtd way I described Thx for the tip though! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Boutin Sent: Wednesday, April 26, 2006 10:27 PM To: Flashcoders mailing list Subject: Re: [Flashcoders

RE: [Flashcoders] Best practice DLL Integration

2006-04-24 Thread Mike Mountain
We used to use this approach, utilising Object.watch to check for changes - however we started getting the occasional exception - we switched to xml sockets and haven't looked back since. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lee

RE: [Flashcoders] coordinates of a scaled movieclip

2006-04-24 Thread Mike Mountain
actually, I'm not sure if localToGlobal does anything with the scaling. I have the feeling it simply adds coordinates of parent movieclips to the local ones.. You're right, it doesn't - you have to factor in the multiplier yourself Something like this (for proportional scaling) [as]

RE: [Flashcoders] Looking for tester (PPC/Flash)

2006-04-24 Thread Mike Mountain
Hi Weyert We're looking at doing something similar with Win CE, would you mind letting me know how it goes? Thanks Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: 24 April 2006 13:06 To: flashcoders

RE: [Flashcoders] coordinates of a scaled movieclip

2006-04-24 Thread Mike Mountain
actually, I'm not sure if localToGlobal does anything with the scaling. I have the feeling it simply adds coordinates of parent movieclips to the local ones.. I'm not sure what you're doing and how, but it *does* take into consideration the whole movieclip matrix info -

RE: [Flashcoders] coordinates of a scaled movieclip

2006-04-24 Thread Mike Mountain
That's strange, because I've just done that to test and it's definitely working - even within a timeline tweening, and taking scaling, rotation and skewing into account; it's properly reading an arbitray point on the movieclip and moving a crosshair on the main stage to that same point

RE: [Flashcoders] coordinates of a scaled movieclip

2006-04-24 Thread Mike Mountain
Well I can honestly say mine isn't working that way at all - I have an empty MC, nested into a scaled MC, this is contained within a holder mc. This swf is loaded into a container MC. localToGlobal gives the correct coords for the 'unscaled' mc's.

RE: [Flashcoders] OT: Adobe Licensing - FAO John Dowdell, Mike Chambers et al.

2006-04-21 Thread Mike Mountain
: [Flashcoders] OT: Adobe Licensing - FAO John Dowdell, Mike Chambers et al. Yep :) It works fine with version 6 player for the PPC. They just released version 7 for PPC, actually: http://www.macromedia.com/software/flashplayer_pocketpc/ Dave Watts, CTO, Fig Leaf Software http

[Flashcoders] Firefox, CSS overflow=scroll, flash buttons bug

2006-04-21 Thread Mike Guerrero
So I am having a weird problem. I have a fullscreen flash displayed in on html page using flashobject from this example: http://blog.deconcept.com/flashobject/fullpage.html I wanted to have scrollbars appear in case it didn't fit the browser window. So I changed my css as follow.

RE: [Flashcoders] OT: Adobe Licensing - FAO John Dowdell, Mike Chambers et al.

2006-04-20 Thread Mike Mountain
There's already a Windows CE ActiveX Control, so I'm not sure about the compiling ourselves angle...? Where can I get this? Could this be the issue? This week, I discovered that there were some backend changes as part of our transition that affected the player distribution

RE: [Flashcoders] OT: Adobe Licensing - FAO John Dowdell, Mike Chambers et al.

2006-04-20 Thread Mike Mountain
We've finally been contacted - thanks for any time invested in this John, although I think the contact was due to some persistant phone calls from our project manager. I'm still interested in where I can get the ActiveX control for Win CE from as that could be a quick fix for us Cheers Mike

RE: [Flashcoders] OT: Adobe Licensing - FAO John Dowdell, Mike Chambers et al.

2006-04-19 Thread Mike Mountain
/mmform/index.cfm?event=mmformname=fla shplayer Thanks Mike Mountain -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Dowdell Sent: 18 April 2006 19:35 To: Flashcoders mailing list Subject: Re: [Flashcoders] OT: Adobe Licensing - FAO John

RE: [Flashcoders] OT: Adobe Licensing - FAO John Dowdell, Mike Chambers et al.

2006-04-19 Thread Mike Mountain
Dowdell,Mike Chambers et al. Ahhh, I knew a catch would show somewhere. Oh well, that's the way it goes, I suppose. As a thought, though. Is there anyone out there who even thinks they have the skills to develop there own Flash player? The way I see it, so long as it doesn't directly

RE: [Flashcoders] offline SWF generation from XML

2006-04-19 Thread Mike Mountain
There's also Openlaszlo: http://www.openlaszlo.org/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: 18 April 2006 18:08 To: Flashcoders mailing list Subject: Re: [Flashcoders] offline SWF generation from XML Check out SWFMill:

RE: [Flashcoders] offline SWF generation from XML

2006-04-19 Thread Mike Mountain
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 19 April 2006 11:43 To: Flashcoders mailing list Subject: RE: [Flashcoders] offline SWF generation from XML There's also Openlaszlo: http://www.openlaszlo.org/ Just

RE: [Flashcoders] New wrinkle in IE activation issue...

2006-04-19 Thread Mike Guerrero
Ok, I have not come across anything weird with IE after I installed the security patch. Everything works as it should. Am I using the wrong version of IE? Did the patch not work? IE Ver: 6.0.2900.2180.xpsp_sp2_gdr.050301-1519 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] seemless video in flash

2006-04-19 Thread Mike Guerrero
Is the AVI file compressed already? What data rate are you compressing the video at? What codec are you using to compress the video into flv (squeeze or on2)? Are you embedding the flv into a swf or are you loading it from the cd directly into the application when called? -Original

Re: [Flashcoders] ExternalInterface

2006-04-19 Thread Mike Britton
() { thisMovie(mediaPlayer).goToCuePoint(); } function thisMovie( movieName ) { if (navigator.appName.indexOf(Microsoft) != -1) { return window[movieName]; } else { return document[movieName]; } } /script hth, Mike

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

2006-04-18 Thread Mike Britton
(arEx.length); hth, Mike On 4/18/06, Robert Leisle [EMAIL PROTECTED] wrote: You could also do: var myArray:ArrayExtension = new ArrayExtension(); myArray.push(Hello, Goodbye, World); same result as doing them separately. [EMAIL PROTECTED] wrote: Thanks, that will work. So

[Flashcoders] Duplicating a MovieClip that contains Sub-Clips

2006-04-13 Thread Mike Anderson
that the original MovieClip originally contained? If any of you could clarify this topic, I'd greatly appreciate it. Thanks, Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman

RE: [Flashcoders] Active X and Microsoft IE ...

2006-04-13 Thread Mike Mountain
John Are you going to update Flash 8 so it publishes flash/html that utilises the new javascript methods? M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Dowdell Sent: 12 April 2006 19:34 To: Flashcoders mailing list Subject: Re:

[Flashcoders] Manually triggering the Screens onResize event

2006-04-12 Thread Mike Anderson
% of the browser area - and everything is well. How can I trigger this event, the moment the application is loaded in the browser??? Thanks in advance for your help, Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

RE: [Flashcoders] Manually triggering the Screens onResize event

2006-04-12 Thread Mike Anderson
are not positioned correctly. Any more ideas? Thanks, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Matsikas Sent: Wednesday, April 12, 2006 12:02 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Manually triggering the Screens onResize event

RE: [Flashcoders] Manually triggering the Screens onResize event

2006-04-12 Thread Mike Anderson
throw my way :) Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Matsikas Sent: Wednesday, April 12, 2006 12:41 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Manually triggering the Screens onResize event I'm guessing yer having

RE: [Flashcoders] Manually triggering the Screens onResize event

2006-04-12 Thread Mike Anderson
with all the controls positioned properly. THANK YOU - and I will make sure that I listen with more open ears next time I get some good advice ;-) Thanks and take care, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Anderson Sent: Wednesday

[Flashcoders] Accordion Sizing Weirdness

2006-04-12 Thread Mike Anderson
up the Accordion Children, but this initial behavior of scaling is something that should not be happening right? Could any of you shed more light on this problem? Thanks, Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

RE: [Flashcoders] Accordion Sizing Weirdness

2006-04-12 Thread Mike Anderson
clarify all those things for me? Thanks Eric :) Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of eric dolecki Sent: Wednesday, April 12, 2006 2:43 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Accordion Sizing Weirdness in your onResize

Re: [Flashcoders] Macbook pro issue

2006-04-12 Thread Mike Chambers
Make sure you have the most recent version: http://weblogs.macromedia.com/emmy/archives/2006/03/flash_player_8.cfm mike chambers [EMAIL PROTECTED] Patrick Matte wrote: We have a performance issue here with the flash player on a brand new macbook pro. Our latest site that uses flash 8

[Flashcoders] Clarification if Remoting is included with Flex 2.0

2006-04-12 Thread Mike Anderson
server to perform some basic Database queries. Thanks in advance, for any 100% accurate information you can throw my way. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com

RE: [Flashcoders] Manually triggering the Screens onResize event

2006-04-12 Thread Mike Anderson
# - but Flash was a different story. As soon as I master Flex, I am moving over to that, and will never look back (unless I need to write a Widget, which I think Flash is better suited for). Thanks for the extra input though - Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] Manually triggering the Screens onResize event

2006-04-12 Thread Mike Anderson
Oh man, that works out BEAUTIFULLY!!! I never even thought about doing something like that. Thanks for that excellent information :) Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Matsikas Sent: Wednesday, April 12, 2006 3:47 PM

[Flashcoders] Quick setSize() question

2006-04-12 Thread Mike Anderson
, 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 Training http

RE: [Flashcoders] Quick setSize() question

2006-04-12 Thread Mike Anderson
Yep, it's the same thing except no setting of a variable first... Okay, I just wanted to make sure I couldn't simply pass a Null to it, in hopes of it not changing the existing value of the Nulled place. Thanks! Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [Flashcoders] Clarification if Remoting is included with Flex 2.0

2006-04-12 Thread Mike Anderson
Okay, well thank you nevertheless for your time - and I will try to get something off the FlexCoders list. Take Care, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Dowdell Sent: Wednesday, April 12, 2006 5:53 PM To: Flashcoders mailing list

RE: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Mike Anderson
this way in the first place. This is just my initial reaction to what I've seen, and I am sure some more experienced people will chime in on this thread. Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Cardenas Sent: Wednesday, April 12, 2006 7:10 PM

RE: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Mike Anderson
of the rest, without having to use the Delegate stuff. I am just a mediocre coder, so I am sure lots of other people will help with answering this question for you. Hope this help a little bit, and good luck :) Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [Flashcoders] Need help understanding EventDispatcher

2006-04-12 Thread Mike Anderson
too - as you all helped me solidify my understanding of this topic as well. Take Care everybody! Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Cardenas Sent: Wednesday, April 12, 2006 9:27 PM To: Flashcoders mailing list Subject: Re

RE: [Flashcoders] Reusing MovieClipLoader Listeners

2006-04-12 Thread Mike Anderson
much time into this problem. Also, YES I reuse MY Loader over and over, for different SWF files, and it does work just fine. You don't have to do anything differently - so I am not sure what else may be happening, if it doesn't end up being what I mentioned above. Hth, Mike -Original

[Flashcoders] Using EventDispatcher to update Controls and other Variables?

2006-04-12 Thread Mike Anderson
the .text properties for a ton of controls is just the easiest way, rather than dispatching events? (keep in mind, this variable gets updated many times per second) This topic has been on my mind for a LONG time now - and I would love a definitive answer on how to do this. Thanks in advance! Mike

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

[Flashcoders] Adobe Licensing for flash player on embedded systems

2006-04-07 Thread Mike Mountain
in 2001 that talk about bundling the flash player embedded license fee in with the cost of CE but find no mention of this on the Adobe site. So Mike C, JD or anyone else who may read this post who can help - can you please drop me a line. Thanks Mike Mountain

[Flashcoders] Load 40% of target with MovieClipLoader Class

2006-04-07 Thread Mike Guerrero
Question: How can I load only 40% of a target movieclip using the MovieClipLoader class? I have used several times to load swfs, but on a recent project the target swfs are over 4MB. So, instead of waiting for all of it to load, want it to start playing at around 40%. I am using onLoadInit. I

RE: [Flashcoders] Load 40% of target with MovieClipLoader Class

2006-04-07 Thread Mike Guerrero
, April 07, 2006 7:22 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Load 40% of target with MovieClipLoader Class Use onLoadProgress ... wait for whatever percent you want, then play On Apr 7, 2006, at 8:10 PM, Mike Guerrero wrote: Question: How can I load only 40% of a target

[Flashcoders] There is no method with the name 'Math'.

2006-04-06 Thread Mike Mountain
Why on earth would the compiler be telling me There is no method with the name 'Math'. iNumber = Math.floor(iNumber/2); ? M ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] There is no method with the name 'Math'.

2006-04-06 Thread Mike Mountain
] wrote: it works for me. the only thing I can think of is it's not finding the class. Does syntax coloring recognise it? Did you modify class path? On 4/6/06, Mike Mountain [EMAIL PROTECTED] wrote: Why on earth would the compiler be telling me There is no method with the name 'Math

[Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
. Thanks in advance, 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

[Flashcoders] Resizing Stage w/Components not scaling Examples

2006-04-05 Thread Mike Anderson
applications of this nature. Thanks again for all your help, 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

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
homework on this topic. I was totally into Flex when it first came out, but I heard there were tons of changes down the road, so I sort of backed off from the whole thing. Could you shed some more light on that whole thing? Thanks for all your help, Mike -Original Message- From: [EMAIL

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
into production on the client side of things. I still have high hopes with Flex 2.0 - I just hope it all stays reasonable. Thanks again!! Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Wednesday, April 05, 2006 12:23 PM To: Flashcoders

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
want to master Flex very badly - because it's simply amazing what it can do. Thanks again, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Watts Sent: Wednesday, April 05, 2006 12:27 PM To: Flashcoders mailing list Subject: RE: [Flashcoders

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
it, it's kind of a moot point. Can you shed more light on that topic? Thanks again for everything :) Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Watts Sent: Wednesday, April 05, 2006 12:44 PM To: Flashcoders mailing list Subject: RE

[Flashcoders] RE: Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike B Baker
working on a project codename 'Apollo' which I believe will be the way forward for desktop and mobile applications. Keep an eye on the Adobe blogs for more information over the next while. Mike B. ___ Flashcoders@chattyfig.figleaf.com To change your

RE: [Flashcoders] RE: Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
considering making the switch. I know there is a Flex list - but these 2 products are so closely related, and we are talking about what makes each unique - and their proper place in the world. Thanks, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike B

Re: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Chambers
fyi, You can download a beta of Flex 2, Flex Builder, Flash Player 8.5 and mxmlc (command line compiler) from: http://labs.macromedia.com mike chambers [EMAIL PROTECTED] Dave Watts wrote: Early on though, I thought there some legalities surrounding the pre-compiling of SWF's via Flex

[Flashcoders] Split Pane component??

2006-04-05 Thread Mike Anderson
- but I am just not having good luck with it. Thanks for all your help on this, Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought

Re: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Chambers
services This is all in the player and the framework, and is available (and free) to everyone. mike chambers [EMAIL PROTECTED] Mike Anderson wrote: Wow that is great! If I hear you correctly then, there is NO Data functionality built into the BASIC Flex 2.0 Architecture? For a SWF file

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
Wow - so when you say AMF - this is the same as Remoting correct? As far as I know, these 2 terms are/were interchangeable. With that said, if I have a ColdFusion Server running, I can immediately start writing highly functional apps using Flex 2.0 Beta and make Remoting calls?? Thanks Mike

RE: [Flashcoders] Split Pane component??

2006-04-05 Thread Mike Anderson
or other advanced programming environments (VB, Java, Delphi, etc.) If anybody knows of another one, please let me know - Thanks!! Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ing. Mario Falomir Sent: Wednesday, April 05, 2006 7:16 PM

RE: [Flashcoders] Split Pane component??

2006-04-05 Thread Mike Anderson
no stranger to code - in fact, I make a point of doing everything in code whenever possible. Thanks again - and if you want to post back to the list, or directly to me, I'd greatly appreciate it. Take Care, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

<    1   2   3   4   5   6   7   8   9   >