[Flashcoders] looking for combobox w/ autocomplete

2006-01-06 Thread Nick Appelmans
Can anyone point me in the direction of a combobox with autocomplete like that offered as a Dreamweaver extension MX Widgets by interaktonline.com? I'm not looking for the interface so much as an example of how to create a combobox that would select a matching item from a list (based on the first

Re: [Flashcoders] Accordion Question

2006-01-06 Thread MyName
Sure yes. Accordion inherites load event from UIObject class. In your accordion load event handler, set accordion selectedIndex property. good luck Doug - Original Message - From: coker todd [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent:

Re: [Flashcoders] execute a string as actionscript in MX

2006-01-06 Thread Michael Nisi
How about arguments? var str =trace('Hello'); var func = str.split((); var arg = func[1].split(')[1]; eval(func[0]).call(this, arg); Is there a serializer to pass real arguments? eg. myFunction('Hello', { x:100, name:'foo' }) Regards, Michael

RE: [Flashcoders] Flash Ant build for Flash IDE?

2006-01-06 Thread Ben Smeets
Eh, cool. If it is this simple I will go and sit ashamed in the corner :D Any way to get a jsfl file to accept parameters? For which file to publish e.g. (jsfl noob). Tx. Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Nel Sent: donderdag

Re: [Flashcoders] execute a string as actionscript in MX

2006-01-06 Thread Thimon Sistermans [Us Media]
Hi, check apply in help docs eval(myFunction).apply(null, myArgumentsArray); Thimon How about arguments? var str =trace('Hello'); var func = str.split((); var arg = func[1].split(')[1]; eval(func[0]).call(this, arg); Is there a serializer to pass real arguments? eg. myFunction('Hello', {

Re: [Flashcoders] Flash Lite 2.0

2006-01-06 Thread Weyert de Boer
Flash Lite 2.0 just rocks! If you are dumb ass who doesn't really understand sh*t of Flash4/5 actionscript. Glad those setProperty() functions are deprecated. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] input text scrolls when pressing right arrow key

2006-01-06 Thread fla coder
hi please try the following: create a TextField with properties similar to: txf.type = input; txf.autoSize = left; txf.multiline = false; txf.wordWrap = false; txf.text = test; run the movie and click inside the field. press the right cursor key until you reach the last character in the field.

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Jonathan Clarke
Xpath looks pretty sweet, anyone used it for simillar data sizes? On 06/01/06, ryanm [EMAIL PROTECTED] wrote: I find myself in a situation where I need to build a tool to analyse lots of xml data. Thousands of records containing a lot of strings as well as numericals. When I found

[Flashcoders] Picassa-like Control

2006-01-06 Thread Eric E. Dolecki
Has anyone seen anything open-source like the Picassa main photo viewer? They eye-candy one, not the simple iphoto-like view. Viewing photos on a vertically directional arc, main image scaled up largest in the arc center. Looking for a Class or something like that where you give it a

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Jason
If I understand it correctly, the whole XML file needs to be loaded for you to use XPath, so it won't help you much if you just want the section of the XML data to utilize... I'd go with what JesterXL said... Make smaller chunks of XML file and load them as needed... CyanBlue - Original

RE: [Flashcoders] input text scrolls when pressing right arrow key

2006-01-06 Thread Derek Vadneau
The combination of input and autoSize is what's killing you. Do you really need the textfield to resize with the text entry? If not, you're better off setting the width and height explicitly. However, if you don't know the size before you enter text, then here is an alternative:

RE: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Merrill, Jason
True - that's how I've used it anyway - you still have to load in an XML file into an XML object. Then you can call specific nodes. So XPath doesn't create an additional object representation of the XML file like many other parsers do, but it does have to load in the entire XML file first.

Re: [Flashcoders] input text scrolls when pressing right arrow key

2006-01-06 Thread fla coder
thanks derek! just the sort of nastiness i was hoping for. i didn't go down the prototype line of attack as i have built up distrust in getTextExtent the text would potentially get styled and other elements within the same component as the textField depend highly on the correct text width being

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Weyert de Boer
Jonathan Clarke wrote: Xpath looks pretty sweet, anyone used it for simillar data sizes? Too avoid memory and performance issues most people use a SAX-liek parser instead of a DOM one, to avoid building the xml file in object tree. Normally XPath is implementated on top of a DOM parser, but

[Flashcoders] RFID tags

2006-01-06 Thread Weyert de Boer
Does anyone ever tried to use any RFID-based stuff with Flex or Flash in general? Beside of that does someone know where you can that kind of stuff cheap. I think it's cool stuff to make tangible interface with which will then control some cool thinks . For example, you drop a element on a

[Flashcoders] Bug in Macromedia's flash detection code when installed player is either 6.0.22, 6.0.23 and 6.0.29 ?

2006-01-06 Thread Martin Baltzer
Hi, I'm having a serious detection issue with macromedias own flash detection code which you all probably know can be auto generated along with the html file under publish settings in the Flash8 editor or can be found in their detection kit which contains it as well. The problem is related to

Re: [Flashcoders] Bug in Macromedia's flash detection code wheninstalled player is either 6.0.22, 6.0.23 and 6.0.29 ?

2006-01-06 Thread Tom Rhodes
i just had a client refuse content in 8, because of their security settings rendering the nice smooth express install i had set up useless. they got the noscript instead. so now i'm redoing everything for player 6 (pain the the you know what) :( - Original Message - From: Martin

Re: [Flashcoders] Bug in Macromedia's flash detection code wheninstalled player is either 6.0.22, 6.0.23 and 6.0.29 ?

2006-01-06 Thread Matt Muller
Tom, could you elaborate a bit more on what security scenario would cause the no script? Do they have js / vb script disabled in their browsers? Wouldnt the no script just open a page with a link to upgrade? MaTT On 1/6/06, Tom Rhodes [EMAIL PROTECTED] wrote: i just had a client refuse

[Flashcoders] class conflicts

2006-01-06 Thread PR Durand
Hi List Nobody answered me yesterday but I need to konw what happens please... When I generate my movie, I sometimes get a class name conflict error... but there are 3 problems in this error: - if I wait 2 or 3 minutes wihtout using flash before compiling, I don't have this error anymore and my

RE: [Flashcoders] Bug in Macromedia's flash detectioncodewheninstalled player is either 6.0.22, 6.0.23 and 6.0.29 ?

2006-01-06 Thread Nick Weekes
I wonder what sites they actually permit, given that js is disabled. in my experience, the interweb just don't work properly without it... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Rhodes Sent: 06 January 2006 15:17 To: Flashcoders mailing list

SV: [Flashcoders] REPOST Bug in Macromedia's flash detectioncodewheninstalled player is either 6.0.22, 6.0.23 and 6.0.29 ?

2006-01-06 Thread Martin Baltzer
I would really appreciate that this tread is not taken over by another problem;-) Anyone knows of a solution to the first question? Thanks alot Martin Fra: [EMAIL PROTECTED] på vegne af Tom Rhodes Sendt: fr 06-01-2006 16:17 Til: Flashcoders mailing list

RE: [Flashcoders] class conflicts

2006-01-06 Thread Nick Weekes
You tried the delete ASO files and test movie option? Might be a screwed aso cache... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of PR Durand Sent: 06 January 2006 15:15 To: Flashcoders mailing list Subject: [Flashcoders] class conflicts Hi List

RE: [Flashcoders] class conflicts

2006-01-06 Thread Adrian Lynch
Can you tell us your package and code structure. It might be that you're importing the same thing twice and Flash doesn't like it. Although I would have thought that importing the same package many times wouldn't be a problem. Ade -Original Message- From: [EMAIL PROTECTED]

Re: [Flashcoders] class conflicts

2006-01-06 Thread Roman Blöth
PR Durand schrieb: Hi List Nobody answered me yesterday but I need to konw what happens please... When I generate my movie, I sometimes get a class name conflict error... but there are 3 problems in this error: - if I wait 2 or 3 minutes wihtout using flash before compiling, I don't have this

[Flashcoders] Flash Component for use in Dreamweaver

2006-01-06 Thread Judah Frangipane
I didn't know this was possible but I think that you can take your Flash component and use it in Dreamweaver. Has anyone made an extension to package their components for use in Dreamweaver? I have no idea where to start on this. I'm also wondering if Dreamweaver will inherit the property

Re: [Flashcoders] what happens to exceptions i throw inasyncfunctions.

2006-01-06 Thread Johannes Nel
yeah. i want to impliment exception handeling like in java, but async functions are the bugger since i want it to bubble upwards. i have however thought of a sollution to this and am currently working on that :) On 1/5/06, JesterXL [EMAIL PROTECTED] wrote: You sound just like the Java guys who

Re: [Flashcoders] REPOST Bug in Macromedia's flashdetectioncodewheninstalled player is either 6.0.22, 6.0.23 and 6.0.29 ?

2006-01-06 Thread Tom Rhodes
sorry bro. - Original Message - From: Martin Baltzer [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com; Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, January 06, 2006 4:24 PM Subject: SV: [Flashcoders] REPOST Bug in

RE: [Flashcoders] class conflicts

2006-01-06 Thread Merrill, Jason
The other workaround is to install the ASO Commands available via the Macromedia (Adobe?) Flash-Website If you have Flash 8, Delete ASO Files is also an option built into the Control drop-down menu. Jason Merrill | E-Learning Solutions | icfconsulting.com NOTICE: This message is for

[Flashcoders] XMLSocket + close()

2006-01-06 Thread Weyert de Boer
Hmm, does anyone know a way to get a call to find if I got succesfully disconnected using the close()-method? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] class conflicts

2006-01-06 Thread PR Durand
Thanks a lot all of you to have given an answer. I thought about server problems, class cache, etc but and I didn't knew this delete ASO and all things about synchronising times, etc... And for the server problems, flash never like to work on server files, I always encounter problems... but I

Re: [Flashcoders] XMLSocket + close()

2006-01-06 Thread Jobe Makar
Hi Weyert, I think that you're supposed to assume it worked. The only time you get the closed event is when its not intiated by the client. BTW, if you use ElectroServer, there is a close event fired through the ElectroServer class no matter what, client-initiated or server-initiated...or

Re: [Flashcoders] what happens to exceptions i throw inasyncfunctions.

2006-01-06 Thread bryan.rice
On Jan 6, 2006, at 10:41 AM, Johannes Nel wrote: i have however thought of a sollution to this and am currently working on that :) I would love to see what you thought of! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] REPOST Bug in Macromedia's flash detectioncodewheninstalled player is either 6.0.22, 6.0.23 and 6.0.29 ?

2006-01-06 Thread Matt Muller
hmm, ive never experienced that martin, you have obviously tried it with different swfs and are sure VB is crashing your browser? It sounds to me like its the FP crashing ad ot the script, have you edited the standard output code at all? Have you tried it on different machines? What player are you

Re: [Flashcoders] XMLSocket + close()

2006-01-06 Thread Weyert de Boer
Hi Jobe, I think that you're supposed to assume it worked. The only time you get the closed event is when its not intiated by the client. Bummer, then we have to assume that indeed! BTW, if you use ElectroServer, there is a close event fired through the ElectroServer class no matter what,

Re: [Flashcoders] String object utf-8?

2006-01-06 Thread Michael Klishin
Alan Queen wrote: Does anyone know this? When creating a new String object is the encoding alwasy utf-8 by default? If System.useCodepage is set to false then, yes, Flash uses Unicode. -- Michael Antares Klishin, Email: [EMAIL PROTECTED] Web: www.novemberain.com Non progredi est regredi

Re: [Flashcoders] Print line numbers for AS file

2006-01-06 Thread JesterXL
Dreamweaver MX printed out line numbers for ActionScript for me in the past. Haven't tried MX 2004 or 8 for printing yet; might want to check that out too. - Original Message - From: tech [EMAIL PROTECTED] To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com Sent: Tuesday,

[Flashcoders] swf to windows screensaver tool

2006-01-06 Thread Yaniv De Ridder
Hello, My customer want a flash screensaver , the flash part is done , its a flash8 little project that load datas (text and images) from an xml file. with some new flash8 fx Now i need to find a tool that convert the swf to a windows screensaver , the requirement of this tool is Flash

Re: [Flashcoders] Print line numbers for AS file

2006-01-06 Thread Weyert de Boer
JesterXL wrote: Dreamweaver MX printed out line numbers for ActionScript for me in the past. Haven't tried MX 2004 or 8 for printing yet; might want to check that out too. Yep, otherwise my offer still stands... ;) ___ Flashcoders mailing list

SV: [Flashcoders] REPOST Bug in Macromedia's flashdetectioncodewheninstalled player is either 6.0.22, 6.0.23 and 6.0.29 ?

2006-01-06 Thread Martin Baltzer
I tried it on two different machines at work both pc's with windows XP and IE. No problems with the javascript detection in firefox only the vbscript one for the activeX one. I havent' change anything and the error occurs when I have installed on of the 3 player versions above (using Flash

Re: [Flashcoders] XMLSocket + close()

2006-01-06 Thread Chris Allen
Interesting observation Weyert. I always initiate the closing of my socket session through the protocol that I'm using and the server ends the connection. That obviously fires the onClose() event. I had assumed it did that too if the client does closes first, but I guess not. Anyway, thanks for

Re: [Flashcoders] XMLSocket + close()

2006-01-06 Thread Derek Vadneau
I think that you're supposed to assume it worked. The only time you get the closed event is when its not intiated by the client. Exactly. When you issue the close method YOU are disconnecting from the server. There is no reason for the onClose event to be fired because you are causing the

[Flashcoders] IE on mac documentation

2006-01-06 Thread Caleb E. Brown
Does anyone have any documentation for the flash plugin for IE on a mac or can they direct me to some? Thanks, Caleb -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.371 / Virus Database: 267.14.13/221 - Release Date: 1/4/2006

Re: [Flashcoders] XMLSocket + close()

2006-01-06 Thread Weyert de Boer
Chris Allen wrote: Interesting observation Weyert. I always initiate the closing of my socket session through the protocol that I'm using and the server ends the connection. That obviously fires the onClose() event. I had assumed it did that too if the client does closes first, but I guess

Re: [Flashcoders] input text scrolls when pressing right arrow key

2006-01-06 Thread Josh Gormley
Are you specifying a width for this text field? I can't duplicate this on my machine (Mac G5), but I'm guessing it's because you're not setting a width and you also have autosize set to left. Changing either of those parameters should do the trick. Josh On Jan 6, 2006, at 5:19 AM, fla

[Flashcoders] Directory for netdebug.as,recordset.as and related

2006-01-06 Thread blists
We're still using AS 1.0 version of the remoting components but after upgrading to Flash 8, it complains that netdebug.as and the related files are missing. The Remoting Components for AS 1.0 and MX 2004 will not install on Flash 8, so my question is where do I need to manually copy those

Re: [Flashcoders] swf to windows screensaver tool

2006-01-06 Thread Yaniv De Ridder
with loadMovie or Loader ... Thank you /Yaniv ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders __ NOD32 1.1355 (20060106) Information __ This message was checked

Re: [Flashcoders] input text scrolls when pressing right arrow key

2006-01-06 Thread fla coder
many thanks to everyone! josh, i need to have autosize set. but.. somehow i get the feeling mr chotin has the solution right there. will try it as soon as i get home. much obliged! On 06/01/06, Josh Gormley [EMAIL PROTECTED] wrote: Are you specifying a width for this text field? I can't

[Flashcoders] Windows media player embed in div over flash movie ?

2006-01-06 Thread grant
I am about to convert a tight comp to a flash movie, the comp is here : http://www.tribalchicken.com/clients/intentmedia/comps/set2/s2pay/2.html I'm trying to decide if I should break the thing into 3 swfs in 3 divs and then have the movie player embed in its own div, or if I can do 1 flash

Fwd: [Flashcoders] input text scrolls when pressing right arrow key

2006-01-06 Thread fla coder
oops, seems like i'm getting mixed up between lists. here is mike chotin's suggestion ala flexcoders: Matt Chotin[EMAIL PROTECTED] to flexcoders Hide options 17:38 (28 minutes ago) From: *Matt Chotin [EMAIL PROTECTED]* Mailed-By: *returns.groups.yahoo.com* Reply-To: * [EMAIL

[Flashcoders] PrintJob Class - nested MC's and some wierdo print skewing

2006-01-06 Thread Pete Hotchkiss
I have the following var pageCount:Number = 0; var my_pj:PrintJob = new PrintJob(); if (my_pj.start()) { my_pj.addPage(target_mc, xMin:0,xMax:700,yMin:0,yMax:500}, {printAsBitmap:true},

Re: [Flashcoders] input text scrolls when pressing right arrow key

2006-01-06 Thread fla coder
matt not mike. sorry! time to go home... ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Attaching the same Clip with differing widths along the X axis

2006-01-06 Thread Dennis Hart
I was wondering if anyone knew of a way or even the best way to go about attaching a single movieClip multiple times along the x axis when the actual width of the clip is determined my the content that it loads. In this case I am just trying to serve up a number of buttons that look like tabs.

[Flashcoders] Files in directory?

2006-01-06 Thread Mike Boutin
Is there anyway for flash to find out how many files exist within a specific directory? Thanks ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Files in directory?

2006-01-06 Thread Merrill, Jason
http://www.multidmedia.com/software/zinc/ Jason Merrill | E-Learning Solutions | icfconsulting.com -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Mike Boutin Sent: Friday, January 06, 2006 2:14 PM To: Flashcoders mailing

Re: [Flashcoders] Attaching the same Clip with differing widths along the X axis

2006-01-06 Thread Chris Hill
I use the ActionScript Cookbook containers for this. They're very good at automatically arranging things in rows/columns. http://www.person13.com/ascblibrary/ something like this: import ascb.containers.Box; box = new Box(); box.parent = _root.myClip; box.direction = horizontal; box.spacing =

RE: [Flashcoders] Attaching the same Clip with differing widths alongthe X axis

2006-01-06 Thread Merrill, Jason
You can also try NOT grabbing the XY values of the actual clips - you could create a function that calculates and pre-populates an array of widths, spacings, and XY values so you are independent on the loading. Then position the clips once they are loaded. Jason Merrill | E-Learning

Re: [Flashcoders] IE on mac documentation

2006-01-06 Thread John Dowdell
Caleb E. Brown wrote: Does anyone have any documentation for the flash plugin for IE on a mac or can they direct me to some? I'm not sure what you're seeking, but Microsoft Internet Explorer for Macintosh did use Netscape Plugins, so it seems like web searches on netscape plugins would talk

Re: [Flashcoders] Files in directory?

2006-01-06 Thread Ian Thomas
Alternatively, if you're looking in a directory on a server, code up something in a server-side language - PHP or whatever - to do the file count, and have flash request the result. HTH, Ian On 1/6/06, Merrill, Jason [EMAIL PROTECTED] wrote: http://www.multidmedia.com/software/zinc/

Re: [Flashcoders] Files in directory?

2006-01-06 Thread Mike Boutin
Ok thanks, I think ill give'er a try with php :) Ian Thomas wrote: Alternatively, if you're looking in a directory on a server, code up something in a server-side language - PHP or whatever - to do the file count, and have flash request the result. HTH, Ian On 1/6/06, Merrill, Jason [EMAIL

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread ryanm
Xpath looks pretty sweet, anyone used it for simillar data sizes? XPath won't help with the initial load and parse. What you're going to get is a long pause with your processor usage at 100% while the XML object parses the string. The more records/larger the file, the longer the pause.

RE: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Merrill, Jason
Besides, I'm not fooling with any 3rd party workarounds, not with E4X on the way. From the Adobemedia flex2 FAQ: Yeah, not to be a downer, but AS 3 is going to require the 8.5 or 9 player, so that's only good if your audience has it... I've been excited about Flex 2, but the excitement is

[Flashcoders] Any good 3rd party penetration numbers for v8 yet?

2006-01-06 Thread ryanm
Does anyone have any references to 3rd party Flash 8 player penetration numbers? I have some execs asking me if it's safe to use v8 yet, and they're looking for numbers in the 70%-80% range. Of course they'll doubt numbers from Adobemedia, so 3rd party numbers would be better. ryanm

Re: [Flashcoders] Files in directory?

2006-01-06 Thread Rich Rodecker
here's a sample from the php docs: ?php if ($handle = opendir('.')) { while (false !== ($file = readdir($handle))) { if ($file != . $file != ..) { echo $file\n; } } closedir($handle); } ? you could just modify that to return the number instead of echoing a

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Johannes Nel
Besides, I'm not fooling with any 3rd party workarounds, not with E4X on the way. this has been around for ages...add to this that e4x is currently in alpha and slow, and the fact that xpath is a w3c spec and even macromedia implement a much thinner version of this in F7 then this statement

RE: [Flashcoders] IE on mac documentation

2006-01-06 Thread Caleb E. Brown
Well, I know that there hasn't been support for IE on the mac for some time, and I'm trying to find out if there are any known differences between the video/audio quality in the plugin for IE and the safari/netscape plugin since IE's been out for such a long time without any kind of updates.

Re: [Flashcoders] Any good 3rd party penetration numbers for v8 yet?

2006-01-06 Thread Rich Rodecker
I dont have any numbers, but have you thought about using the express install feature? then maybe you wouldnt have to wait for the penetration numbers. On 1/6/06, ryanm [EMAIL PROTECTED] wrote: Does anyone have any references to 3rd party Flash 8 player penetration numbers? I have some

Re: [Flashcoders] Any good 3rd party penetration numbers for v8 yet?

2006-01-06 Thread ryanm
I dont have any numbers, but have you thought about using the express install feature? then maybe you wouldnt have to wait for the penetration numbers. Heh... did I mention that these are executives that are asking? They don't want to make anyone click yes, they just want it to work. Given

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread ryanm
Yeah, not to be a downer, but AS 3 is going to require the 8.5 or 9 player, so that's only good if your audience has it... I've been excited about Flex 2, but the excitement is tempered by the fact that even if it comes out this spring, I won't be using it for real projects at least another

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Johannes Nel
xpath has been around for a while On 1/6/06, ryanm [EMAIL PROTECTED] wrote: this has been around for ages...add to this that e4x is currently in alpha and slow, and the fact that xpath is a w3c spec and even macromedia implement a much thinner version of this in F7 then this statement

Re: [Flashcoders] IE on mac documentation

2006-01-06 Thread John Dowdell
Caleb E. Brown wrote: I'm trying to find out if there are any known differences between the video/audio quality in the plugin for IE and the safari/netscape plugin Hmm, for Will SWF a/v play comparably across browsers? then it usually will, but there can definitely be situations where

Re: [Flashcoders] Any good 3rd party penetration numbers for v8 yet?

2006-01-06 Thread John Dowdell
ryanm wrote: Does anyone have any references to 3rd party Flash 8 player penetration numbers? I have some execs asking me if it's safe to use v8 yet, and they're looking for numbers in the 70%-80% range. Of course they'll doubt numbers from Adobemedia, so 3rd party numbers would be better.

Re: [Flashcoders] Any good 3rd party penetration numbers for v8 yet?

2006-01-06 Thread ryanm
The most recent NPD audit was performed mid-December, and so I'd expect results up on the website pretty soon. Be sure to announce when you have solid numbers available, because I can use them not only for my day job, but also for lots of contracts. A lot of people are still nervous about v8

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread ryanm
xpath has been around for a while XPath != *native* E4X XPath only bears a passing resemblence to E4X, and is nothing like it in terms of performance. You should check out http://labs.macromedia.com and download the Flex2 alpha. ryanm

Re: [Flashcoders] recommended books on XML in Flash

2006-01-06 Thread Johan Lopes
Hi, Just a note that you can download the Learning ActionScript 2.0 for Macromedia Flash 8 as PDF from MM's site. Although, I myself prefer to buy a hard copy if it's good. Link is here: http://download.macromedia.com/pub/documentation/en/flash/fl8/fl8_learning_as2.zip /Johan On 1/5/06, Ben

[Flashcoders] Increasing DisplacementMapFilter Precision

2006-01-06 Thread Alan Shaw
It's a shame that the displacement map only allots one byte each for its x and y components when there are four bytes available. We can use images up to 2880 pixels high or wide, but applying displacement maps to big ones gives messy results. I'm wondering if there is some way to compose or

[Flashcoders] site carching when loading a particular xml file

2006-01-06 Thread Rich Rodecker
got a wierd problem. this site we built, www.catherineledner.com, is crashing when we load a particular xml file into it, but only in firefox, and only on mac. If you check out the site, go to the tears section, and you browser will probably crash. We are actually loading a different xml file for

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Claus Wahlers
RegEx + E4X means insanely fast custom parsing and conversion, plus insanely fast searches and filters for XML. The need for XPath is about to be a thing of the past (whenever they get around to releasing 8.5, that is). I did some benchmarks comparing fp8 XML vs fp8.5 flash.xml.XML vs

Re: [Flashcoders] site carching when loading a particular xml file

2006-01-06 Thread Weyert de Boer
Hi Rich, The text isn't really readable here, maybe it's because I am too tired but it's a bit bad quality imho. No big thing, maybe better anti aliasing or is it by design? Anyway I am experiencing the same issue in Firefox on MacOSX 10.4.3. Did you try it in Firefox 1.5? oh yeah the xml

Re: [Flashcoders] site carching when loading a particular xml file

2006-01-06 Thread Rich Rodecker
which text isnt readable..the xml? yeah its not formatted to well. i've been copying the source into dreamweaver and doing a command-apply source formatting to read it. anyway, yeah i did try it in firefox 1.5 and its the same issue. On 1/6/06, Weyert de Boer [EMAIL PROTECTED] wrote: Hi

Re: [Flashcoders] Windows media player embed in div over flash movie ?

2006-01-06 Thread grant
ended up testing it, seems to work (internet explorer only right now as I haven't done the embed tag): http://bluetubecom.web123.discountasp.net/clients/imw/mediatest/test.html Grant. - Original Message - From: [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: 1/6/06 1:06

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread slam dunk
Clarke, It will take you same amount of time to learn(database) and implement a server side solution to your problem then to go with handling all xml in Actionscript.x. If you go with the 100% ActionScript solution then you will get: 1. low Scalability 2. low Stability 3. high maintenance 4. bad

Re: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Derek Lords
Have you tried to work with your data across three xml files with xsl? Using xsl with a server side scripting language, you could get that data in the format you need before loading it with the AS XML() object. Then, thanks to Flash, you can use the native XPath() object to select elements

RE: [Flashcoders] Massive XML files and Flash

2006-01-06 Thread Derek Lords
Notice Flash 8 includes Xpath as a native, check livedocs or your help documentation for details. But the XPath tool from xfactorstudio is an old standby. Regards, Derek Lords From: Steve Lloyd [EMAIL PROTECTED] Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com To:

Re: [Flashcoders] recommended books on XML in Flash

2006-01-06 Thread Derek Lords
Thanks, that will surely come in handy at some point! Regards, DereK Lords From: Johan Lopes [EMAIL PROTECTED] Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] recommended books on

[Flashcoders] mCom RadioButton : Bug?

2006-01-06 Thread John Grden
the click event dispatches 2x's on a single release and they don't act like radio buttons - defining them to the same groupName does no good. You can tick em' all. has anyone run into this? am I doing something wrong? -- John Grden - Blitz ___

[Flashcoders] multilanguage xliff fformat

2006-01-06 Thread Brooks Andrus
Anyone out there done any multilanguage Flash applications (specifically closed captioning) and used the xliff format? I noticed that if you're using the Strings Panel in Flash that xliff is required. I don't intend to use the Strings Panel, but wondered if theres any consensus out there about