[Flashcoders] Building ActionScript-Only State-of-the-Art Video Players -- An In-Depth How-To Code Walkthrough (Using Codebase of Open Source Strobe Media Playback)

2010-11-15 Thread greg h
Flash Player 10.1 introduced vital new video delivery options: - HTTP Dynamic Streaming (Live and VoD) - RTMFP Groups for Peer Assisted Multicasting (Live) - Flash Access DRM Support (Live and VoD) Each of these 3 new delivery options requires significant logic client-side in the video

[Flashcoders] **TODAY** Developers: Flash Platform -- Building State of the Art Video and Media Players ** Online-only, Public User Group Meeting -- TODAY Wednesday January 20 @ 12:00 NOON PST

2010-01-19 Thread greg h
The online-only OSMF User Group http://groups.adobe.com/groups/7af970e6e4is pleased to have a live presentation **TODAY** on OSMF's new features by a developer from the OSMF Team, Edwin van Rijkomhttp://nl.linkedin.com/in/vanrijkom, Sr. Computer Scientist at Adobe. This meeting is open to all who

[Flashcoders] Flash Video and Media Player Developer User Group Launching (Online-only) | Thur 11/19 @ 10:00 AM PST

2009-11-17 Thread greg h
Build State of the Art Flash Video and Media Players. Targeting worldwide specialists who develop and deploy Flash Video and Media Players, a new online-only, public user group is launching this Thursday 11/19 @ 10:00 AM PST. All are welcome. Please forward notice about this meeting to all who

Re: [Flashcoders] Weak eventListener Problem

2009-11-08 Thread Keith H
my garbage after I put it outside for them. -- Keith H -- www.keith-hair.net Steven Sacks wrote: No, it's not true. You're misunderstanding how weak listeners work, how anonymous functions work (you shouldn't use those anyway), and you're also misunderstanding how the garbage collector

Re: [Flashcoders] localconnection in as2

2009-09-19 Thread Keith H
/actionscript/40k-byte-size-limit-on-localconnection-56395.html ...hope that leads you in the way you want to go. -- Keith H -- www.keith-hair.net Hans Wichman wrote: Hi list, as I understand it, there is a send/receive limit of 40k to the localconnection object in actionscript2. Mostly

Re: [Flashcoders] Weird htmlText line break behavior

2009-08-21 Thread Keith H
Maybe the lettercase of a property is causing an error. myTF.wordwrap = true; //Need to be wordWrap -- Keith H -- www.keith-hair.net Joel Stransky wrote: I'm encountering an odd problem in as3/fp9-10 when dealing with embedded fonts, condensed whitespace, style sheet objects and br

Re: [Flashcoders] How to add a DisplayObject into a container without using addChild() method.

2009-08-18 Thread Keith H
Back when I was using AS2 and Javascript || operator was useful to me. I was so glad when AS3 brought default parameters. var value:String = foo || bar; -- Keith H -- www.keith-hair.net Steven Sacks wrote: Dave, come on. Take a stand on the issue. Stop straddling the fence. Pick a side

Re: [Flashcoders] maintainable code

2009-08-18 Thread Keith H
) { return false; } } if (bool == true) { return true; } if (bool == false) { return false; } return false; } return bool; } -- Keith H -- www.keith-hair.net Juan Pablo Califano wrote: This remainds me of a utility

Re: [Flashcoders] How to add a DisplayObject into a container without using addChild() method.

2009-08-17 Thread Keith H
); } -- Keith H -- www.keith-hair.net Steven Sacks wrote: I don't understand why you would not want to write a single line of code in the class where it would provide the most clarity, and instead write MORE code in another class obscuring the behavior that is going on. In other words, you're

Re: [Flashcoders] How to add a DisplayObject into a container without using addChild() method.

2009-08-17 Thread Keith H
Thanks. That is a better way to write the check. (Clever! you escaped from using null once again LOL) BTW I just put the try/catch there to demonstrate error. -- Keith H -- www.keith-hair.net Steven Sacks wrote: Here's the best way to write that. No try catch required. if (myDO

Re: [Flashcoders] array.indexOf problem

2009-06-16 Thread Keith H
trace (buttonsArray.indexOf(e.target.name)); Looking at the aboveyour buttonsArray is an Array containing Objects. And you are using the indexOf method looking for a String. Take off the .name property and you should see a difference. -- Keith H -- www.keith-hair.net Isaac

Re: [Flashcoders] textField fed htmlText renders title

2008-08-27 Thread H
I think pre parsing the string is your only option. textField.htmlText = myString.replace(/title.+?\/title/g, ); Might be easier to do if the html text is xml compliant. Make it an xml object and run an xml query on to get all nodes where node.name().toString() != title... H On Wed, Aug 27

Re: [Flashcoders] textField fed htmlText renders title

2008-08-27 Thread H
('', a)+1; s = s.substring(0, a) + s.substring(b, s.length); i = a-1; } } } else s = ''; return s; } A little something I had laying around... H On Wed, Aug 27, 2008 at 1:00 PM, Mendelsohn

Re: [Flashcoders] textField fed htmlText renders title

2008-08-27 Thread H
= s.substring(0, otIndex) + s.substring(endIndex, s.length); i = otIndex-1; } } else s = ''; return s; } This one should be easier to read too :) H On Wed, Aug 27, 2008 at 2:16 PM, sebastian [EMAIL PROTECTED] wrote: Looks cool, but any chance you could replace your

Re: [Flashcoders] Removing loaded swf...

2008-08-15 Thread H
cleanly in general :) Here is a nice article about System.gc(), it might be helpful: http://www.craftymind.com/2008/04/09/kick-starting-the-garbage-collector-in-actionscript-3-with-air/ And if you haven't already, check this out: http://www.gskinner.com/blog/archives/2008/04/failure_to_unlo.html H

Re: [Flashcoders] Removing loaded swf...

2008-08-15 Thread H
It is a bit like that isn't it :) H On Fri, Aug 15, 2008 at 9:13 AM, Hans Wichman [EMAIL PROTECTED] wrote: Hi, I thought the point of Grant's article was that it's hopelessly bugged in player 9 even if you are an academic?:) greetz JC On Fri, Aug 15, 2008 at 3:47 PM, Eduardo Omine

Re: [Flashcoders] Odd compiler errors in CS3

2008-08-15 Thread H
what it is. Another way to debug it would be to comment out all document class code and make layers guides. If it compiles then re-enable parts of the fla slowly to find the issue. H On Fri, Aug 15, 2008 at 3:11 PM, Merrill, Jason [EMAIL PROTECTED] wrote: I am getting odd compiler errors in my

Re: [Flashcoders] Odd compiler errors in CS3

2008-08-15 Thread H
)/ActionScript 3.0/Classes. Just a thought... H On Fri, Aug 15, 2008 at 4:25 PM, Dave Watts [EMAIL PROTECTED] wrote: So I got it fixed, but it's still perplexing. I mean, it's a large project, we do use Webservices and such in it, but I wouldn't think Flash CS3 would get messed up compilinng

Re: [Flashcoders] AS3 accessing functions from other classes

2008-08-14 Thread H
level... H On Thu, Aug 14, 2008 at 8:55 AM, SJM - Flash [EMAIL PROTECTED] wrote: Again another solution i tried but this too does not work! Thanks SJM - Original Message - From: Kenneth Kawamoto To: Flash Coders List Sent: Thursday, August 14, 2008 1:36 PM Subject: Re

Re: [Flashcoders] Binary Data Question

2008-08-14 Thread H
don't even think it's worth listening for the result. Loader.content should be a Bitmap object... H On Thu, Aug 14, 2008 at 10:21 AM, Omar Fouad [EMAIL PROTECTED]wrote: Hello all, I was wondering if I can get the binary data from a bitmap data, and send it to database (blob) or/and getting

Re: [Flashcoders] urgent TweenMax easing question

2008-08-13 Thread H
I don't think so. It sounds like your issue has to do with rendering changing transparent objects on top of one another. This is inherently slow. On Wed, Aug 13, 2008 at 5:44 AM, allandt bik-elliott (thefieldcomic.com) [EMAIL PROTECTED] wrote: Hi guys I'm having a problem with a TweenMax

Re: [Flashcoders] AS3 accessing functions from other classes

2008-08-13 Thread H
); But, if you are having trouble with this, grab a copy of actionscript 3.0 essentials http://www.amazon.com/Essential-ActionScript-3-0/dp/0596526946. Here is a short article that might help you: http://www.adobe.com/devnet/flash/quickstart/creating_class_as3/ Keep at it! H On Wed, Aug 13, 2008 at 4:14 PM

Re: [Flashcoders] Object vs *

2008-08-11 Thread H
Hmm, it is done pretty well on this sony style web site... On Mon, Aug 11, 2008 at 10:56 AM, Romuald Quantin [EMAIL PROTECTED] wrote: It has been done there, after the intro: http://www.sonystyle.com.mx/lounge/ It is working pretty well I guess. Romu www.soundstep.com -Original

Re: [Flashcoders] Object vs *

2008-08-10 Thread H
a():* { return hi; } var b:String = a(); //this is legal H On Sat, Aug 9, 2008 at 6:12 PM, Claus Wahlers [EMAIL PROTECTED] wrote: Also, mind this: var a:*; trace(a); // undefined var b:Object; trace(b); // null An Object can't be undefined. Cheers, Claus. Ian Thomas wrote

Re: [Flashcoders] Object vs *

2008-08-10 Thread H
No... I believe the reason is related to security. This is unrelated to the subject, though. I think you would get a quicker response if you emailed the list with a fresh subject related to your question. H On Sun, Aug 10, 2008 at 7:21 AM, thomas nordahl [EMAIL PROTECTED]wrote: is there any

Re: [Flashcoders] Using Copy Motion to Actionscript 3.0 Document Class

2008-08-08 Thread H
to garbage collection. What is strange is that this doesn't cause any other classes that have asynchronous methods to misbehave (Loader, URLLoader.) Stranger yet, callbacks to IOErrorEvent.IO_ERROR are still invoked. I've yet to run this with the Profiler to see what is going on... H On Thu, Aug 7

Re: [Flashcoders] Re: Another Sound Bug - transform.pan

2008-08-07 Thread H
Have you ever used Captivate :S On Thu, Aug 7, 2008 at 8:08 PM, Steven Sacks [EMAIL PROTECTED]wrote: Update: Unfortunately, it looks like even if you set the pan all the way in one direction or the other, it doesn't actually work. You can still hear the sound coming out of the side that it is

Re: [Flashcoders] AS3 frustration - help get component working

2008-08-07 Thread H
Settings-Flash-Settings...-Automatically Declare Stage Instances H On Thu, Aug 7, 2008 at 8:11 PM, Steven Sacks [EMAIL PROTECTED]wrote: The issue isn't Gaia. If you try to load that component living in a child swf into a parent swf it doesn't work. Many component authors never take into account

Re: [Flashcoders] Integrating Flash SWFs with Flex

2007-08-03 Thread greg h
Hi Matt, First, Flex 2 is AS3 only. So if you intend your interactive charting widget to integrate with Flex create it in Flash CS3 using AS3. (The background is ... In Flash Player, AS3 runs in its own AVM2 (ActionScript Virtual Machine 2). AVM2 exists only in Flash Player 9 and higher. In

Re: [Flashcoders] How to use media server alongwith webserver for video streaming

2007-07-24 Thread greg h
Hi Abhishek, Bob's summary is 100% correct. For more detail, you might want to check out the heading About streaming video here on the Delivery options for Flash video page of the Flash video learning guide: http://www.adobe.com/devnet/flash/articles/video_guide_02.html Also this page may help

[Flashcoders] Flash Media Server Component Usage Survey

2007-07-12 Thread greg h
Do you work with the Flash Media Server? If so, the FMS product team would like feedback on how you use the FMS componentshttp://www.adobe.com/devnet/flashmediaserver/articles/components.html. Or, if you do not use them, why not. The product team has opened up a survey at the following link.

[Flashcoders] Alternate ActionScript-centric Support Mailing Lists

2007-07-01 Thread greg h
Just curious, other than FlashCoders, are there any active ActionScript-centric support mailing lists? Recommendations of any good ones would be appreciated ;-) g ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] fyi ... Adobe's Marketing Of Flash and Apollo Should Be Copied By Others

2007-06-26 Thread greg h
Following is a link for a blog post that is a nice, feel good piece for the teams at Adobe and for the Adobe community: Adobe's Marketing Of Flash and Apollo Should Be Copied By Others http://blog.streamingmedia.com/the_business_of_online_vi/2007/06/adobes-marketin.html I just hope competitors

Re: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-07 Thread greg h
Ian, thank you for the link on Robert Taylor's FlashInterface. Regarding Scott's intuitive response, the responses by Austin, Muzak and Ian pretty much tell the story. When I used the word stupefying the other day this is what I meant. Just to recap: AS2 to AS3 - At runtime can only integrate

[Flashcoders] Flash Remoting for Flash CS3 AS3

2007-06-06 Thread greg h
As yet Adobe has not updated Flash Remoting for Flash CS3 AS3. Following are links to 3 sources documenting how to make remoting calls in AS3 using NetConnection.call(...)http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/NetConnection.html#call%28%29 . NOTE: I have not

Re: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-06 Thread greg h
Jason, Regarding How about calling a WSDL - Webservice? Not possible in CS3? First I just want to rephrase that as Flash CS3 AS3 because for the AS2 components (aka V2 components) nothing has changed from Flash MX 2004 to Flash 8 to Flash CS3 (except FLVPlayback being introduced with Flash 8).

Re: [Flashcoders] Exporting a swf to an FLV

2007-06-06 Thread greg h
Patrick, I know of no way to export swf directly to FLV. Flash CS3 has introduced a new option on export to Quicktime. Once an MOV has been rendered, you can use the Flash Video Encoder (or encoder of your choice) to transcode into FLV. Animators who use Flash for broadcast have long

Re: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-05 Thread greg h
Yes, who would have believed that Flash CS3 would yield AS3 components that are: - a reduced set of UI components from AS2 - no data components - elimination of databinding And as Randy points out, all this in the run up to Microsoft's Silverlight release. Based on my decades of

Re: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-05 Thread greg h
Yes, Flex has AS3 versions of all of the components that Flash 8 had and then some. That is the point. The message is pretty clear: If you want a comprehensive, state of the art component set use Flex. You can preview the full set of Flex UI components here:

Re: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-05 Thread greg h
Regarding Jason's question, NO. As yet Flash CS3 has no AS3 classes/components for WebService or Remoting. And no where have I seen any promised. (I would like to see them, so if anyone from Adobe is on this list and might like to tell us that there one day will be Flash CS3 AS3 Data

Re: [Flashcoders] Flash CS3 Prof copy: missing Tree component.

2007-06-05 Thread greg h
Spot on Austin. Yup. You then get the new software ... and try to port an application and You then cannot ... because you ... have ... components ... missing. Yes sirree, that is how I figured it out. Regarding It would be good if Adobe could make an official statement on this. Like maybe a

[Flashcoders] Error 2152 when selecting Fullscreen Button on Flash CS3 AS3 FLVPlayback component

2007-05-29 Thread greg h
I am wondering if anyone has encountered the following (and if so if you offer any solutions). Flash CS3 includes an AS3 FLVPlayback component which has several skins that support fullscreen. When running the resulting SWF in a browser that has the debug player, when the fullscreen button is

Re: [Flashcoders] Re: should be simple: MovieClip drawing API

2007-04-27 Thread greg h
fyi ... For AS3 examples of Drawing API this link is the bomb: http://www.3gcomm.fr/Flex/PrimitiveExplorer/Flex2PrimitiveExplorer.html Each primative class includes Class Call Sample code. Right-click for View Source. On source page, bottom right has Download source option. Explanation by the

Re: [Flashcoders] Flash 9 CS3 - Key questions

2007-04-26 Thread greg h
Regarding Flash / Flex integration ... As a Flash developer I have felt that Adobe was doing a pretty crappy job explaining Flash / Flex integration. Now I understand that they were just waiting to release Flash CS3. After all, Flex 2 is exclusively AS3 based. So in retrospect it seems fair

[Flashcoders] Adobe to Open Source Flex!!!

2007-04-25 Thread greg h
Oh, my God. Who would ever have thunk it! ADOBE HAS PUT UP AN ANNOUNCEMENT THAT THEY WILL BE OPEN SOURCING FLEX. THE WHOLE KIT AND KABOODLE!!! http://labs.adobe.com/wiki/index.php/Flex:Open_Source It will take time, but likely by this time next year it will all be out there! TRULY, NOW,

Re: [Flashcoders] You Tube + Progressive download of flvs

2007-04-10 Thread Cay Garrido H.
Its progressive download, Google Video uses streaming... You can check it by jumping forward to a certain point in an unloaded clip and check if it loads from the start of the video till that point, or if it loads from that point on... the latter is streaming ;) How YouTube is handling the

Re: [Flashcoders] The great CS3 Swindle

2007-03-30 Thread Cay Garrido H.
Of the top of my head a possible reason is that higher prices respond to the amount of illegal software used in Europe in comparison to the US... I could be wrong, but the system seems far more controlled over there, and there are less companies using pirated copies... now, I don't see how

Re: [Flashcoders] Image Caching Problem

2007-03-25 Thread Cay Garrido H.
Hi, By default cache I think you refer to the local storage setting in the Flash Player configuration... AFAIK, that's the amount of info you can store with SharedObjects, and has nothing to do with the cache used for storing loaded assets... the later depends exclusively on the browser's

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

2007-03-14 Thread l u c h y x
Hi guy's. I´m doing a component CameraDisplay. and other componente CameraSettings, wich enable you to change few settings of the camera. (in beta) With this component I test the capabilities and limitations of me webcam, and under the test process I noticed the freeze behavior. I know that

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

2007-03-13 Thread l u c h y x
Hi list!. Does anybody here know why calling Camera.setMode freeze the movie ? I know that calling Camera.names will trigger a new scan for camera devices on the machine but what Camera.setMode really do ? Any idea to make this action run smoothly ??. Thank's -- Luciano Bustos - Luchyx

Re: [Flashcoders] Controlling flv

2007-03-13 Thread greg h
Adrian, Have you gotten this resolved yet? I am a little rusty on the FLVPlayback component. It wraps the VideoPlayer class. If you look on the docs there are a number of properties on VideoPlayer that you might be able to use to construct the logic you describe. Docs here:

Re: [Flashcoders] Append variables to SWF server-side

2007-02-27 Thread Cay Garrido H.
search FlashVars ;) Mick G escribió: Does anyone know if there is a way to add data to a SWF file server-side? Eg. I have a swf that site on my server. I want users to be able to select an option from a dropdown such as Select a color: BLUE. This would then send them a SWF to download that

Re: [Flashcoders] List changes- Help!!

2007-02-23 Thread Jack H
Same problem here.I checked my settings and I'm suppose to get these emails by digest, not individually. Can the administrator of this email list look into this problem? - Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Friday,

Re: [Flashcoders] load jpg/gif to player 6 AS1?

2007-02-19 Thread Cay Garrido H.
Before Flash 8 you cant load anything but non-progressive JPEG, and SWFs. Flash MX loadMovie documentation will tell you exactly that ;) Cheers, Arseniy Shklyaev escribió: loadMovie(../widegames/scrnshots/bladeofinnocence.gif, screenshot);flashcoders@chattyfig.figleaf.com When I publish it to

Re: [Flashcoders] problem with fl9 beta

2007-02-18 Thread Cay Garrido H.
The error is weird, 'cause it says line 5 and you showed only 4 lines of code check that... About the code, it's not AS3... you need to use something like this: miButton.addEventListener ( rollOver, miFunction); function miFunction (event) { miButton.rotation--; } See that the event

Re: [Flashcoders] Detecting Rollover w/o onRollOver

2007-02-06 Thread Cay Garrido H.
I usually delete the rollOver handler while I'm over it, detecting the rollOut event through hitTest instead of onRollOut... its something like this: myFunction clip.onRollOver delete clip.onRollOver clip.onMouseMove if(!clip.hitTest(_xmouse,_ymouse)) delete

Re: [Flashcoders] SVG format

2007-02-05 Thread Cay Garrido H.
You could try printing (with printJob) through a virtual printer and generate some kind of File... I know Adobe PDF virtual printer will generate a vector based document that you could import to Illustrator and then create the SVG file. Maybe there is even a SVG virtual printer out there...

Re: [Flashcoders] gotoandlearn.com (what is he using to capture his input)

2007-02-02 Thread greg h
Back in May 2005, I had asked Lee. At that time he graciously replied. I am confident that Lee won't object to my sharing with you his reply from that time: I have been using Camtasia to record the screen into AVI files. From there I bring them into Premiere and edit them together if there are

Re: [Flashcoders] fullscreen javascript

2007-02-01 Thread Cay Garrido H.
man, I hate that... ^^ Hairy Dog Digital escribió: Gustavo, You could write a Javascript function that resizes the browser window to screen size. it's not exactly the same and maximizing, but it would fill the screen. ...Rob -Original Message- From: [EMAIL PROTECTED]

Re: [Flashcoders] Q:Hittest and transparent PNG's

2007-02-01 Thread Cay Garrido H.
You could convert it to a bitmapData and check the transparency level with getPixel32... [EMAIL PROTECTED] escribió: Hi Does anyone know if there is a way to get hitTest to ignore transparent areas in dynamically loaded PNG's? [e] jbach at bitstream.ca [c] 416.668.0034 [w] www.bitstream.ca

Re: [Flashcoders] Progresivly track upload speed

2007-01-31 Thread Cay Garrido H.
onProgress(file, bytesLoaded, bytesTotal); Chase Brammer escribió: Is there any way to progressively track upload speed in flash? Cheers, Chase ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Flex vs. Laszlo

2007-01-30 Thread greg h
Cort, Thank you very much for your very thoughtful and informed post. This is a great time to be a Flash developer. It is great watching the Flash/SWF ecosystem expanding. I have my hands full with Flash and Flex. But I appreciate having an understanding of how others generate swfs. Your

Re: [Flashcoders] Flex vs. Laszlo

2007-01-29 Thread greg h
William, This came up on FlexCoders last month. Following is a link to a reply I posted there (that in turn includes links out to other sources): http://tech.groups.yahoo.com/group/flexcoders/message/59767 I am interested in a thorough comparison of Flex 2 vs Laszlo, so if anyone can provide a

Re: [Flashcoders] LoadVars.send() in Flash 9 Player

2007-01-19 Thread greg h
David, Per the link that follows below, the AS2 LoadVars.send() Method is changed in AS3 to flash.net.sendToURL() Source: ActionScript 2.0 Migration: The following table describes the differences between ActionScript 2.0 and 3.0.

Re: [Flashcoders] Will the new iPhone run flash?

2007-01-10 Thread l u c h y x
c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54 (11) 4931-7006 ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] FlexBuilder/Actionscript 3 Meta Tags

2007-01-02 Thread greg h
Kalani, For code hints, I believe you are looking for the [Inspectable] metadata tag. [Inspectable] is used by both Flash and Flex components. For Flash 8, the doc page on [Inspectable] is here: http://livedocs.macromedia.com/flash/8/main/3033.html For Flex 2, the doc page on

Re: [Flashcoders] FileReference + ASP + FlashPlayer9

2006-12-29 Thread l u c h y x
://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54 (11) 4931

Re: [Flashcoders] Q:AS2 AS3 and loop speed

2006-12-22 Thread greg h
Hi jbach, You ask about differences for as2, and as3. But you preface it with I know this has been discussed ad nauseam for as1. I think any performance comparisons of AS1 to AS3 would be the same for AS2 to AS3. fwiw, my understanding is that *at runtime* AS1 and AS2 are one-and-the-same.

Re: [Flashcoders] 8 sounds maximum limit

2006-12-19 Thread greg h
Patrick, I can not answer this one from experience. However, following is a link into the LiveDocs for Sound object the Flash AS3 preview:

Re: [Flashcoders] Cairngorm

2006-12-18 Thread greg h
Bram, Cairngorm has been used on Flash only projects (although not by me ;-). Following are 3 links related to 2 occasions that this question came up last month here on this list. http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/175801.html

Re: [Flashcoders] AS3 with Flash Authoring 9

2006-12-16 Thread greg h
Daniel, AS3 requires Flash Player 9. Is that dependency ok for your application? As of the latest FP penetration stats (Sept '06), FP9 is only at around 36% (of the known universe). Some have reported successfully deploying on external facing sites with the express install very easily

Re: [Flashcoders] Flashcoders - Flashcomm

2006-12-08 Thread greg h
Dennis, The Flashcomm list has been back up since Nov 1. My guess is that you need to resubscribe. I think the corruption that brought the list down resulted in the subscriber list being lost. I am guessing that because there has been very low traffic since it came back up. The following

Re: [Flashcoders] Q: Performance of AS3 vs Java

2006-12-07 Thread greg h
I am not at all knowledgeable about 3D. So I offer the following observations only as an observer looking in. Adobe already has 3D in Acrobat. Six weeks ago at MAX there was a sneak peek of an Acrobat 3D / Flash mashup. Here is the description off of

Re: [Flashcoders] weird htmlText split and join behavior

2006-11-29 Thread l u c h y x
the same but using a button... No problem and all works as expected. My solution (because i canA?t use a button to edit the image) was to rebuild the area. Yes... each time you edit an image, i rebuild the entire textarea... === l u c h y x wrote: First do a Trace of (my_text1

Re: [Flashcoders] [OT] SCM/Project management tool

2006-11-29 Thread l u c h y x
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://www.figleaf.com http://training.figleaf.com -- l u c h y x r i a e v o l u

Re: [Flashcoders] weird htmlText split and join behavior

2006-11-28 Thread l u c h y x
/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54 (11) 4931-7006

Re: [Flashcoders] Image as intro to FLV

2006-11-27 Thread greg h
Not to detract in any way from Jason's excellent solution. I very much appreciate his sharing. And I love the fotoko.com UI. Very nicely done :-) Just as an fyi ... a solution is also provided in a January 2005 Devnet article by Lisa Larson under the heading Generating Dynamic Thumbnails:

Re: [Flashcoders] migrating to Flex

2006-11-27 Thread greg h
Millie, I think Dave and Kent pretty much answered your question about Flex cost. Since you mention education licenses, one thing I can add is that academic licenses for Flex 2 w/Components are a mere $79! Of course you have to be a student, teacher, professor, etc. One source here:

Re: [Flashcoders] Flash webcam sites ...

2006-11-15 Thread greg h
webcam component: http://parentnode.org/uncategorized/free-webcam-based-barcode-scanner-component/ Does anyone have any other Flash webcam sites they can add to the list? hth, g On 10/2/06, greg h [EMAIL PROTECTED] wrote: Stephen, Following are some sample sites. Not Community sites

Re: [Flashcoders] Remoting bytesLoaded/bytesTotal

2006-11-14 Thread l u c h y x
://www.figleaf.com http://training.figleaf.com -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54 (11) 4931-7006 ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

[Flashcoders] ActionScript 3 API Poster (PDF download @ Flex.org)

2006-10-18 Thread greg h
ActionScript 3 API PDF at Flex.org www.flex.org/download/AS3API_01.pdf print dimensions 40x28 fyi ... Acrobat Drawing Error has been reported by some on opening the pdfs also ... Flex 2 Framework API PDF at Flex.org www.flex.org/download/FX2API_01.pdf print dimensions 48x36 For sale onsite at

[Flashcoders] Now Shipping: ActionScript 3. 0 Cookbook – Solutions for Flash Platform and F lex Application Developers

2006-10-15 Thread greg h
fyi ... O'Reilly is now shipping: ActionScript 3.0 Cookbook Solutions for Flash Platform and Flex Application Developers By Joey Lott, Darron Schall, Keith Peters http://www.oreilly.com/catalog/actscpt3ckbk/#top ___ Flashcoders@chattyfig.figleaf.com To

Re: [Flashcoders] Re: [haXe] Flash Player 9 FullScreen Mode

2006-10-05 Thread l u c h y x
You need the latest version of the player version: 9.0.18 On 10/5/06, slangeberg [EMAIL PROTECTED] wrote: Throws errors in IE and Firefox for me: ReferenceError: Error #1065: Variable flash.display::StageDisplayState is not defined. at main/goFullScreen() Scott On 10/4/06, l u c h y x

Re: [Flashcoders] OT- subscribe to Flashcomm list

2006-10-04 Thread greg h
fyi ... Following was posted a week ago on the bloghttp://www.flashcomguru.com/index.cfm/2006/9/27/flashmedialistover at flashcomguru.com: September 27, 2006 Alternative Mailing List for Flashcom and Flash Videohttp://www.flashcomguru.com/index.cfm/2006/9/27/flashmedialist After I have been

[Flashcoders] Flash Player 9 FullScreen Mode

2006-10-04 Thread l u c h y x
Yesss it here.! now available. Detailed example here http://www.riaevolution.com/blog/?p=44 -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54 (11) 4931-7006 ___ Flashcoders

Re: [Flashcoders] Flash Player 9 FullScreen Mode

2006-10-04 Thread l u c h y x
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of l u c h y x Sent: Thursday, 5 October 2006 11:47 AM To: The haXe compiler list; Flashcoders mailing list Subject: [Flashcoders] Flash Player 9 FullScreen Mode Yesss it here.! now available. Detailed example here http

Re: [Flashcoders] Flash Player 9 FullScreen Mode

2006-10-04 Thread l u c h y x
? Regards, Bjorn Schultheiss -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of l u c h y x Sent: Thursday, 5 October 2006 12:13 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Flash Player 9 FullScreen Mode Loll .. yes it's true. A trusted

Re: [Flashcoders] Rendering flash 8 to video

2006-10-03 Thread greg h
Alias, SWF2Video was also used in the cases detailed in these two Devnet articles: Migrating Flash Projects to Video by Chris Georgenes www.adobe.com/devnet/flash/articles/flash_to_video.html Taking Flash Animation to DVD Video (Broken Saints) by Brooke Burgess

Re: [Flashcoders] Flashcom mailing list

2006-10-02 Thread greg h
Following was posted last week on the bloghttp://www.flashcomguru.com/index.cfm/2006/9/27/flashmedialistover at flashcomguru.com: September 27, 2006 Alternative Mailing List for Flashcom and Flash Videohttp://www.flashcomguru.com/index.cfm/2006/9/27/flashmedialist After I have been receiving

Re: [Flashcoders] Flash webcam sites ...

2006-10-02 Thread greg h
Stephen, Following are some sample sites. Not Community sites or online chat. Perhaps others can post examples of those? Please post back regarding how you might use webcams in your Flash projects. hth, g Flex Barcode Reader http://renaun.com/blog/2006/05/17/33/ Grant Skinner Flash 8

Re: [Flashcoders] Video chat

2006-09-25 Thread greg h
. And the V1 Communication Components provided by Macromedia have never been updated. There are now some examples around Flex 2, but those are AS3. hth, g On 9/24/06, greg h [EMAIL PROTECTED] wrote: Mike, I believe a server is required for video chat with Flash. Either Flash Media Server

Re: [Flashcoders] How do you manage your classes?

2006-09-25 Thread greg h
Dan, I can not answer your specifc questions, so I hope that others will jump in and add their voices along with details about how they manage the problems you described. I just want to comment generally that Subversion is the successor to CVS. You can find full documentation here:

Re: [Flashcoders] Video chat

2006-09-24 Thread greg h
Mike, I believe a server is required for video chat with Flash. Either Flash Media Server or Red5. The sample apps for Flash Media Server include a Video Conference app, which is essentially video chat. You can download the sample apps here:

Re: [Flashcoders] Code ceases working after months, PC only

2006-09-24 Thread l u c h y x
://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54 (11) 4931

Re: [Flashcoders] How to hide my flash communication server address

2006-09-24 Thread greg h
Mudit, Why is the RTMP server address in your HTML? Can you post back the relevant portion of your HTML object or embed tags (masking your RTMP address, of course :-) If you RTMP address is not likely to change, could you embed the RTMP address in your SWF? Or if it might change you could

Re: [Flashcoders] locality

2006-09-22 Thread l u c h y x
://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54 (11) 4931

Re: [Flashcoders] locality

2006-09-22 Thread l u c h y x
Consulting and Training http://www.figleaf.com http://training.figleaf.com -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54 (11) 4931-7006 ___ Flashcoders@chattyfig.figleaf.com To change your

[Flashcoders] FLEX UPDATE URL FOR ECLIPSE installation

2006-09-22 Thread l u c h y x
Does anybody here know the UPDATE url for install the eclipse flex plug-in.? Or where can i found the plugin-files for eclipse. ? I´m using eclipse so i don't want to install the flexbuilder standalone. Thanks! a lot. -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http

Re: [Flashcoders] Beta testers and comments needed

2006-09-21 Thread l u c h y x
Consulting and Training http://www.figleaf.com http://training.figleaf.com -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54 (11) 4931-7006 ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Beta testers and comments needed

2006-09-21 Thread l u c h y x
://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- l u c h y x r i a e v o l u t i o n (r) [EMAIL PROTECTED] http://www.riaevolution.com Phone: +54

  1   2   >