Re: [Flashcoders] Actionscript 3.0 help w/ simple HelloWorld

2007-03-22 Thread Anthony Lee
Hi Jason, I'm just guessing here but how about: addChild(hw); Anthony On 3/22/07, Merrill, Jason [EMAIL PROTECTED] wrote: Getting my feet wet with AS3, I just bought the AS3 cookbook and have learned a lot already - great book. I feel like an idiot asking this as I'm pretty good in AS2,

Re: [Flashcoders] wordpress and flash integration

2007-03-20 Thread Anthony Lee
Take a look at AWI. The blog is in Spanish but the code is clear enough. http://code.google.com/p/awi/source http://klr20mg.com/awi/ Anthony On 3/20/07, Kerem İŞERİ [EMAIL PROTECTED] wrote: hi Joe, Im trying to use wordpress as source.. ofcourse some php will run inside to generate the

Re: [Flashcoders] flash.media.Camera.setMode Freeze SWF

2007-03-14 Thread Anthony Lee
Hi Luciano, It sets the pixel width, pixel height and framerate for the camera it's called on. ie. What the data is grabbed at. How you choose to preset it is something else. For example: var cam:Camera = Camera.get(); cam.setMode(320, 240, 20); But it's a bit more complicated than that

Re: [Flashcoders] Q:Inheritance issue with simplified MVC

2006-11-08 Thread Anthony Lee
Hi Jim, Don't think you can get around listening to for the event unless you want to get into callbacks... How's this though? Requires GDispatcher in the Model. --- class AbstractWidget { var localData:Array; var provider:Model; var build:Function; //--child

Re: [Flashcoders] Chopping an FLV

2006-11-06 Thread Anthony Lee
You might want to try FLV Knife while you're at it: http://soenkerohde.com/software/flv-knife/ ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Where to add eventListners in UIComponent classes?

2006-11-06 Thread Anthony Lee
This seems to work reliably for simple decoration and composition into homemade widgets. Don't know if it will help you with building Adobe style 'components'... function makeBtn():Void { btnV2 = Button(btn_mc.attachMovie(Button, btnV2, 0)); if (btnV2.initializing == true){

Re: [Flashcoders] Q:Flash frameworks, Caringorn vs ARP vs PixLib vs GuggaFF

2006-11-05 Thread Anthony Lee
Hi Jim, You might find this article interesting: http://weblogs.macromedia.com/swebster/archives/2006/08/why_i_think_you.cfm Tony ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Any success with using ExternalInterface with SCORM2004 API?

2006-11-03 Thread Anthony Lee
Hi Craig Andrei, Hopefully when this project [http://edumatic.net] starts moving again it will help to centralize this kind of information. There's already a lot in the archive. I worked with the scripts written by Alan Schultz. Originally, they worked with fscommand(), but I ported it to

Re: [FlashCoders] Delegates and performance

2006-10-20 Thread Anthony Lee
By the way Dimitrios, Your Delegate Class wouldn't compile with MTASC. ...com/zefxis/utils/Delegate.as:18: characters 3-12 : type error Local variable redefinition : _func Tony ___ Flashcoders@chattyfig.figleaf.com To change your subscription

Re: [Flashcoders] flash synchronization

2006-10-20 Thread Anthony Lee
Wei Xiaobin, I think you'd do well to start here: http://www.adobe.com/devnet/captivate/articles/cpvideo.html Tony ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [FlashCoders] Delegates and performance

2006-10-16 Thread Anthony Lee
I thought this would interest quite a few people, so I wrote an article on this. I found your post to be a good practical example of implementing Timothee Groleau's article. Thank you. Tony ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Flash Classes and Preloading ...

2006-10-15 Thread Anthony Lee
Stephen, Don't know about the Flash IDE, but MTASC can do this for you. I posted a similar question to osflash.org, here's the thread: http://www.osflash.org/pipermail/osflash_osflash.org/2006-July/009853.html The short answer is compile your main Classes into a later frame of a SWF that

Re: [Flashcoders] Google Adsense in Flash ...

2006-09-27 Thread Anthony Lee
Hi Geoff, Have you heard anything that would invalidate your article on Flash SEO? http://blog.deconcept.com/2006/03/ Great article! SWFObject's the duck's nuts, and you'd have to be a hell of a great guy yourself by the way. But I keep wondering when it's going to fall through, Google

Re: [Flashcoders] Scrubber for streamed flv

2006-09-01 Thread Anthony Lee
greg, You might want to repost this question over on the FlashComm list: http://chattyfig.figleaf.com/mailman/listinfo/flashcomm Is it working? I've never been able to load the page or subscribe. Tony ___ Flashcoders@chattyfig.figleaf.com To change

Re: [Flashcoders] Using assets from external SWF

2006-08-29 Thread Anthony Lee
Marcelo de Moraes Serpa wrote: No you can´t unless it´s a RSL and you're using the sharepoint trick (if you don´t know what it is just do a quick search on google about rsl and sharepoint). Hi Marcelo, I did that and was not able to turn it up. Do you have a link to anything on the

Re: [Flashcoders] working with dynamic images using mysql database

2006-08-24 Thread Anthony Lee
neo, Try replicating a few million files to 200 sites using a file system. Since this was basically a hi hello how do I make a multi-player game in flash its got to have lasers question, I doubt that's was what bhasker had in mind. Never the less, thanks for your informed advice. Tony

Re: [Flashcoders] Word processor in Flash

2006-08-23 Thread Anthony Lee
GregoryN wrote: Tony, I've just tried your test page - it works OK. Firefox 1.5, win2k. However, after submit it is waiting for noen.org forever... :-) Sorry Gregory noen.org's DNS provider was unreliable so I changed the service domain. I figured the test was over... I'll take it down.

Re: [Flashcoders] working with dynamic images using mysql database

2006-08-23 Thread Anthony Lee
Hi Ron, Put a thousand files in a Windows directory and watch the fun. Hmm... well yes that won't be your only problem with that choice of web server. I disagree on the rest but don't have the inclination to argue the point. Tony ___

Re: [Flashcoders] Tab, tab, tab ...

2006-08-22 Thread Anthony Lee
The problem I am having is tabbing between the textfields within these movieclips and I don't know what the problem is. You've looked at tabEnabled, tabOrder, tabChildren? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] working with dynamic images using mysql database

2006-08-22 Thread Anthony Lee
iam interested to *load images from databse* using mysql. Don't keep blob data in a database. Store a reference to it's location in the file system. Tony ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] getting my info into flash

2006-08-22 Thread Anthony Lee
And maybe change your name to something else... Stick with what you got. I for one looking forward to see what lame question you'll ask next, Guru. ;-) Tony ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] Word processor in Flash

2006-08-22 Thread Anthony Lee
Gregory, Just out of interest have either you or Jason noticed that there's a problem pasting text into flash on Firefox? I posted a thread on this recently and found that 6 out of 22 people with the latest install of FF where experiencing it. Tony

Re: [Flashcoders] RE: Best way to learn OO Analysis and Design with ActionScript

2006-08-20 Thread Anthony Lee
also, I came to Flash recently (as in about 6 weeks ago) and I found it very useful to get all the information in one place, i.e. does AS2 have abstract interfaces?, is there try...catch construct for unit testing with assertions?, are classnames treated as types, can you override the

Re: [Flashcoders] RE: Best way to learn OO Analysis and Design with ActionScript

2006-08-19 Thread Anthony Lee
http://www.amazon.com/gp/product/0596007124/sr=8-1/qid=1155996611/ref=pd_bbs_1/104-7942318-0256721?ie=UTF8 Good book. Read it at Aral's recommendation. http://www.amazon.com/gp/product/0735713804/104-7942318-0256721?v=glancen=283155 Sorry authors... but I found this book to be a waste of

Re: [Flashcoders] LoadMovie library

2006-08-10 Thread Anthony Lee
I want this because I want to separate code from viewing assets, and import different templates. I feel your pain Bart. Unfortunately it's a no can do: http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004file=1519.html Do a

Re: [Flashcoders] New Flash based website

2006-08-10 Thread Anthony Lee
Hi Aaron, There is an issue that occurs when users with smaller monitors (13 macbooks) accessing 100% flash content. Say you do not want to scale the content down to 13. Agreed. I overcame this within Flash. It's just a mater of wrapping Stage in a class that has min values set. In my

Re: [Flashcoders] DK - redrawing interface elements after destruction

2006-08-10 Thread Anthony Lee
At any rate - when i create my thumbnails, all works fine the first time, but after they have been wiped out, and I recall my method to re-draw the thumbnails, for some reason my buttons are not working. Now I did a bunch of tracing tests to see if: Hi dnk, This may not be a proper answer

Re: [Flashcoders] New Flash based website

2006-08-09 Thread Anthony Lee
use javascript to resize the swf's object height attribute, so that when your user opens a section that will increase your stage height beyond the window height, Hi Aaron, I noticed a site doing that just this morning. Switching the swf attributes from Javascript doesn't mess with the

Re: [Flashcoders] flash and sessions

2006-08-09 Thread Anthony Lee
does anyone have any experience using flash and sessions? specifically, i'm trying to get flash to read the jsession id from the http header. You can just push it into flash from the object tag when the page is written: myFlash.swf?jsession_id=woof Turns up in Flash at: _root.jsession

Re: [Flashcoders] LoadMovie library

2006-08-09 Thread Anthony Lee
Bart, I don't find a solution where I can get my movieclips away of the library container to some movieclip on the main.swf. I think if you look at the technotes you'll find that it can't be done. That doesn't mean you can't use loaded movie library assets. You just have to access them

Re: [Flashcoders] png load queue

2006-08-09 Thread Anthony Lee
How are you loading them? What queue are you using? Tony player is performing very very slowly I am loading in sequence up to 100 png files - if that makes a difference. Any idea why this may be happenening? ___

Re: [Flashcoders] New Flash based website

2006-08-09 Thread Anthony Lee
Hi Bjorn, There's a better way to do it. Have you seen swfObject? Seen it. Use it. Love it. Insert the swf into the html with noscale and showall, then you are not limited to a stage size. noScale showAll? They are not mutually exclusive? Have a listener set up in js for onResize and

RE: [Flashcoders] Flash Lite - what's happening

2006-08-07 Thread Anthony Lee
You literally can't buy a new handset in Japan that doesn't support Flash Lite. 1.1 and you have to register with the carrier to be a content provider. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: : RE: [Flashcoders] Flash Lite - what's happening

2006-08-07 Thread Anthony Lee
1.1 and you have to register with the carrier to be a content provider. thats not true - you have to register to be part of their official portal Happy to be corrected! I only know what I read on Japanese developer's blogs, and from that I'd formed the opinion that it wasn't worth looking

Re: [Flashcoders] Re: how to hide your AS 2.0 from flash leech software

2006-08-05 Thread Anthony Lee
nom-de-plumes noms-de-plume t ___ 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

RE: [Flashcoders] Copy Paste into Firefox

2006-07-18 Thread Anthony Lee
Of the 22 people that took the Quiz http://dozo.jp/paste_test?result=true 6 reported paste problems. ie. 1/3. I guess I have to watch for key code: 17,86,86,17 then offer an alternate input method for these people. HTML floating in front of Flash, wmode=opaque, Javascript bridge. Yuck! Thanks

RE: [Flashcoders] Copy Paste into Firefox

2006-07-17 Thread Anthony Lee
Hi Jim, All, No worries, If it works in one version and not in another - it's up to you/theclient/company to decide which browsers you support. I'm the client, the end users are my clients, and I say not being able to copy and paste into Firefox bites!! This is obviously very important to my

[Flashcoders] Does your next RIA work in Firefox?

2006-07-17 Thread Anthony Lee
Hi, Sorry for starting a new thread on this but it seems important. Rich Internet Application development review 1) Get information for the punters 2) Do something sexy with it in Flash It's not all pushing buttons and typing. There's the clipboard... If your not building something to get data

Re: [Flashcoders] amf-php, AS2, mysql, and multilanguage website

2006-07-17 Thread Anthony Lee
Hi all, can someone put a step by step guide about what are the correct steps to have a front(in flash) that connects to a MySql with AMFPHP Lots of good information at: http://www.sephiroth.it http://www.5etdemi.com/blog/ http://amfphp.org Flash player uses UTF-8 so you shouldn't have