RE: [Flashcoders] Q:remove returns in text string or in text strings in XML

2007-03-16 Thread Derek Lords
 
If you would prefer not to strip them then you could replace with the HTML 
entity.  I can never remember exactly what they are so here's a cheatsheet.  
 
http://theorem.ca/~mvcorks/cgi-bin/unicode.pl.cgi?start=2400end=243F
 



Sincerely,

Derek Lords 
 


www.itsimmediate.com phone: 917-579-2367cell: 501-631-3817 [EMAIL PROTECTED] 

It was a sometime paradox, but now time has given it proof. —Shakespeare
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


 Date: Thu, 15 Mar 2007 18:30:57 -0700 From: [EMAIL PROTECTED] To: 
 flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Q:remove returns in 
 text string or in text strings in XML  Hi I'vm using a utility to convert 
 my flash objects to xml. It works great except if one of my objects happens 
 to be text content with returns the returns are save as part of the xml.  
 Can anyone offer me an easy solution?  Would it make more sense to remove 
 the returns in the strings first before the xml is created?  Thanks! [e] 
 jbach at bitstream.ca [c] 416.668.0034 [w] www.bitstream.ca 
  ...all improvisation is life 
 in search of a style. - Bruce Mau,'LifeStyle' 
 ___ 
 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://www.figleaf.com 
 http://training.figleaf.com___
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://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] xml parse question

2007-03-15 Thread Derek Lords
Carl,
 
That is how you do it.  Here's another way.
 
The following will copy the attributes of one node to another, provided they 
both have exactly the same attributes in the same order, regardless of what the 
attributes names are.
 
function replaceNode(theNode, withNode):Boolean { for(attr in 
theNode.attributes) {  if (typeof withNode.attributes[attr] != 'undefined')   
theNode.attributes[attr] = withNode.attributes[attr];  else  {   
proxy.call(alertWin, withNode.attributes[attr] +  was undefined );   return 
false;  } } return true;}//end replaceNode



 Date: Wed, 14 Mar 2007 21:19:23 -0700 From: [EMAIL PROTECTED] To: 
 flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] xml parse 
 question  What if I don't know what the names are going to be? How can I 
 check how many attributes are in a node? is there anything like 
 XMLNode.attributes.length (I know that's wrong...) so I can loop through 
 and find out their names?  --  Carl Welch http://www.carlwelch.com 
 [EMAIL PROTECTED]  On 3/14/07, Andrew Wright [EMAIL PROTECTED] wrote:  
 XMLNode.attributes.imageID  XMLNode.attributes.img  
 XMLNode.attributes.text   etc   Hi coders, I just started 
 working on a new project that is requiring me to handle   an xml format 
 that I haven't had to deal with yet. Here is an example of what it 
 looks like: image imageID=halLogin img=hal.png text=   
 Font=Black,8,Regular,AlignLeft onPanel=true xPos=0.25   yPos=0.112 
 / I'm used to parsing xml that looks like this: 
 something   blahfoo/blah   /something How do I 
 parse xml that looks like the first example with multiple   values inside 
 of a single node? Thanks.   
 ___  
 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://www.figleaf.com  http://training.figleaf.com  
 ___ 
 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://www.figleaf.com 
 http://training.figleaf.com___
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://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Datagrid sorting

2007-03-15 Thread Derek Lords
Can your DataProvider be xml?
I'm not sure the Array sort methods do what you want, they might,  but they're 
probably less efficient than an xml transformation anyway.
 
then you might try sorting the dataSource itself beforehand using xsl:sort in 
an xsl template?  When you want to reverse the sort, just transform again.
 



Sincerely,

Derek Lords 
 


www.itsimmediate.com phone: 917-579-2367cell: 501-631-3817 [EMAIL PROTECTED] 

It was a sometime paradox, but now time has given it proof. —Shakespeare

 Date: Thu, 15 Mar 2007 13:16:14 -0400 From: [EMAIL PROTECTED] To: 
 flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Datagrid sorting  
 Need some help on sorting a datagrid by a particular collumn. Right now, 
 it's sorting alphabetically by data in the second collumn instead of the 
 first. I tried sorting the dataprovider first with the array sort methods, 
 but they didn't work and the help docs indicate those array sorting methods 
 don't work on associative arrays.   I have tried:  
 lobAdmins_dg.dataProvider.sortOn(lob, Array.DESCENDING);  and also with 
 the DataSetIterator:  lobAdmins_dg.dataProvider.addSort(lobSort, lob, 
 DataSetIterator.Descending);   and:  
 lobAdmins_dg.dataProvider.addSort(lobSort, [lob], 
 DataSetIterator.Descending);   and then setting the dataprovider to the 
 datagrid. (lob is the name of the datagrid collumn and also the 
 property/field in the dataprovider I want to sort on alphabetically.   
 Also searched help docs, Adobe and Google but no luck. Any ideas?  Jason 
 Merrill Bank of America  Global Technology  Operations Learning  
 Leadership Development  eTools  Multimedia Team   
 ___ 
 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://www.figleaf.com 
 http://training.figleaf.com___
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://www.figleaf.com
http://training.figleaf.com


[Flashcoders] online export paths to illustrator or eps

2006-02-03 Thread Derek Lords

Hello,

Is there any library tools, compiled clips or SWC files currently in use 
that enable a live swf to export vector paths to adobe illustrator, 
encapsulated postscript, etc.?


The user would like to be able to drag vector objects around on the screen, 
press export or save and be able to take vector art to the printer for 
production.


Thank you,

--
Derek Lords
http://www.itsnyc.net/


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] online export paths to illustrator or eps

2006-02-03 Thread Derek Lords

Hello,

Is there any library tools, compiled clips or SWC files currently in use 
that enable a live swf to export vector paths to adobe illustrator, 
encapsulated postscript, etc.?


The user would like to be able to drag vector objects around on the screen, 
press export or save and be able to take vector art to the printer for 
production.


Thank you,

--
Derek Lords
http://www.itsnyc.net/


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] TreeDataProvider - There is no method with the name'addTreeNode'

2006-01-11 Thread Derek Lords
missing intrinsic class issue good guess.This happened to me upon 
upgrading to Flash 8.  I had to downgrade each instance to an Object and the 
problem went away.








From: Andreas Weber [EMAIL PROTECTED]
Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
To: Flashcoders flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] TreeDataProvider - There is no method with the 
name'addTreeNode'

Date: Wed, 11 Jan 2006 16:13:26 +0100

With a Tree component on stage and this framecode

var myTreeDP:XML = new XML();
myTreeDP.addTreeNode(node, 0);

the TreeDataProvider API works fine.

However, the same code in a class

class Test{
function Test(){
var myTreeDP:XML = new XML();
myTreeDP.addTreeNode(node, 0);
}
}

instantiated from a .fla that has a Tree component on stage, throws a
compiler error:

There is no method with the name 'addTreeNode'

Is this a missing intrinsic class issue? Workarounds? (don't have any luck
with avoiding the compiler error through Array access syntax: no error, but
no node is added).

Cheers!

--
Andreas Weber
motiondraw.com



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] TreeDataProvider - There is no method withthename'addTreeNode

2006-01-11 Thread Derek Lords

sweet!  Glad it worked for you!

Derek Lords



From: Andreas Weber [EMAIL PROTECTED]
Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] TreeDataProvider - There is no method 
withthename'addTreeNode' - SOLVED

Date: Thu, 12 Jan 2006 05:32:07 +0100

Thanks Derek - that's it!

Not typing the dataprovider as XML allows to publish for Player 7:

import mx.controls.Tree;

class Test{
function Test(){
// Published for Player 7. Error: There is no method
with the name 'addTreeNode'.
//var myTreeDP:XML = new XML();

// Compiles fine when not typed as XML
var myTreeDP = new XML();
myTreeDP.addTreeNode(node, 0);
}
}

Cheers!

--
Andreas Weber
motiondraw.com


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Derek
Lords
Sent: Donnerstag, 12. Januar 2006 05:11
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] TreeDataProvider - There is no method with
thename'addTreeNode'


missing intrinsic class issue good guess.This happened to me upon
upgrading to Flash 8.  I had to downgrade each instance to an Object and
the
problem went away.






From: Andreas Weber [EMAIL PROTECTED]
Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
To: Flashcoders flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] TreeDataProvider - There is no method with the
name'addTreeNode'
Date: Wed, 11 Jan 2006 16:13:26 +0100

With a Tree component on stage and this framecode

var myTreeDP:XML = new XML();
myTreeDP.addTreeNode(node, 0);

the TreeDataProvider API works fine.

However, the same code in a class

class Test{
function Test(){
var myTreeDP:XML = new XML();
myTreeDP.addTreeNode(node, 0);
}
}

instantiated from a .fla that has a Tree component on stage, throws a
compiler error:

There is no method with the name 'addTreeNode'

Is this a missing intrinsic class issue? Workarounds? (don't have any
luck with avoiding the compiler error through Array access syntax: no
error, but no node is added).

Cheers!

--
Andreas Weber
motiondraw.com


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] htmlText property doesnt work...

2006-01-09 Thread Derek Lords
show the initialization of tituloEmenta because the problem must be in 
there.  Better yet, do a trace (tituloEmenta) yourself, you might be 
surprised.


Regards,

Derek Lords



From: Jose Maria Barros [EMAIL PROTECTED]
Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
To: Flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] htmlText property doesnt work...
Date: Mon, 9 Jan 2006 16:08:47 +

Can anyone tell me what wrong with this line?Sorry for my ignorance...

tituloEmenta is a variable that holds an XML attribute(in this case the
title of a recipe)

The problem is that the text is not formatted..he doesnt give the brake
and the font

_root.main.ementa_txt.htmlText = _root.main.ementa_txt.htmlText+font
color='#328828' size='10'b+tituloEmenta+/b/fontbr;


Thanks in advance
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Bonafide AS2.0 class template ...

2006-01-09 Thread Derek Lords

Colin Moock's book.  Essential Actionscript 2.0 is a must have.



From: Stephen Ford [EMAIL PROTECTED]
Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Bonafide AS2.0 class template ...
Date: Tue, 10 Jan 2006 03:12:36 +

I am fairly new to AS2.0 and OOP in general and I was wondering if anyone 
has a template file for AS2.0 classes that they wouldn't mind sharing.


I am looking for a blank AS2.0 template that contains dummy content and 
layout that can be used (and should be used) every time I want to start 
creating a new AS2.0 class.


I have seen something like this somewhere but can't see to locate it.

It had everthing in place and even indicated what goes where, when creating 
a new class.


Anyone have something like this that could be used as a template for ANY 
possibility that might come up when creating an AS2.0 class file ?


Thanks for reading,
Stephen.


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 
and their attributes for use in your production.


Regards,

Derek Lords



From: Jonathan Clarke [EMAIL PROTECTED]
Reply-To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Massive XML files and Flash
Date: Thu, 5 Jan 2006 23:17:42 -0400

Thanks Jester, but databases are not my forte, to do it quickly I'd
like to just use ActionScript only. Is there anyway I can just load
specific sections of the XML or do I have to load the whole file into
memory?

On 05/01/06, JesterXL [EMAIL PROTECTED] wrote:
 Does it have to stay in that format?  Meaning, can you convert it and 
throw
 it into a database?  Paging is still an effective methodology, and if 
you
 can throw it in a database, you can then do what Flash does best and 
load

 what you need on the fly.

 - Original Message -
 From: Jonathan Clarke [EMAIL PROTECTED]
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Sent: Thursday, January 05, 2006 7:21 PM
 Subject: [Flashcoders] Massive XML files and Flash


 Hi,

 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. I'm sure there are lots of more suitable
 applications and languages, but I the only one I know is Actionscript.
 Luckily, I know it very well and am more than confident at parsing
 XML; however, I've never delt with data on this scale before. So, I'm
 interested to know if anyone has any experience of dealing with this
 sort of build, and whether it is feasible to expect Flash to handle
 it.

 More on the data: I need to cross-reference and check data accross 3
 xml files. They are all big, but the biggest, by way of an example in
 Excel form, has 25,000 records each with around 30 fields, often very
 string heavy.

 Any tips would be greatly appreciated?

 --
 Jonathan Clarke
 1976 Ltd
 http://19seventysix.co.uk
 e: [EMAIL PROTECTED]
 m (UK): +44 773 646 1954
 m (Barbados): +1246 259 9475
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



--
Jonathan Clarke
1976 Ltd
http://19seventysix.co.uk
e: [EMAIL PROTECTED]
m (UK): +44 773 646 1954
m (Barbados): +1246 259 9475
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] Massive XML files and Flash
Date: Fri, 6 Jan 2006 11:37:52 +0800

XPath.  Beautiful!  I've been looking for something like that!  Thanks, 
will

give it a shot!  -Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andy
Johnston
Sent: Friday, 6 January 2006 11:23 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Massive XML files and Flash

I've found this as version of xpath very very handy..

easy to implement and use also..

http://www.xfactorstudio.com/ActionScript/AS2/XPath/


Thanks Jester, but databases are not my forte, to do it quickly I'd
like to just use ActionScript only. Is there anyway I can just load
specific sections of the XML or do I have to load the whole file into
memory?

On 05/01/06, JesterXL [EMAIL PROTECTED] wrote:


Does it have to stay in that format?  Meaning, can you convert it and
throw
it into a database?  Paging is still an effective methodology, and if 
you
can throw it in a database, you can then do what Flash does best and 
load

what you need on the fly.

- Original Message -
From: Jonathan Clarke [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, January 05, 2006 7:21 PM
Subject: [Flashcoders] Massive XML files and Flash


Hi,

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. I'm sure there are lots of more suitable
applications and languages, but I the only one I know is Actionscript.
Luckily, I know it very well and am more than confident at parsing
XML; however, I've never delt with data on this scale before. So, I'm
interested to know if anyone has any experience of dealing with this
sort of build, and whether it is feasible to expect Flash to handle
it.

More on the data: I need to cross-reference and check data accross 3
xml files. They are all big, but the biggest, by way of an example in
Excel form, has 25,000 records each with around 30 fields, often very
string heavy.

Any tips would be greatly appreciated?

--
Jonathan Clarke
1976 Ltd
http://19seventysix.co.uk
e: [EMAIL PROTECTED]
m (UK): +44 773 646 1954
m (Barbados): +1246 259 9475
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders





--
Jonathan Clarke
1976 Ltd
http://19seventysix.co.uk
e: [EMAIL PROTECTED]
m (UK): +44 773 646 1954
m (Barbados): +1246 259 9475
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders





___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 XML in Flash
Date: Fri, 6 Jan 2006 22:32:46 +

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 Deroo [EMAIL PROTECTED] wrote:
 thanks for the book suggestions,
 I ended up ordering a couple of books:

 Foundation PHP 5 for Flash
 Foundation ASP.NET for Flash
 Foundation XML for Flash
 Learning ActionScript 2.0 for Macromedia Flash 8
 Using ActionScript 2.0 Components with Macromedia Flash 8

 should keep me busy for a while :-)

 Ben



 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Ryan 
Potter

 Sent: dinsdag 3 januari 2006 21:49
 To: Flashcoders mailing list
 Subject: RE: [Flashcoders] recommended books on XML in Flash

 Can I third that?  Not to be mean, but I saw them speak at flash forward
 and Joey Lott had to keep answering questions they didn't know.  He
 (Joey) was really nice about it, but it was ugly.

 I would start in the docs and here:
 http://www.actionscript.org/tutorials.shtml
 http://www.oreilly.com/catalog/actscptckbk/index.html?CMP=IL7015
 http://www.oreilly.com/catalog/actscript2/





 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Mark
 Lapasa
 Sent: Tuesday, January 03, 2006 1:14 PM
 To: Flashcoders mailing list
 Subject: RE: [Flashcoders] recommended books on XML in Flash

 I heartily second this notion. Don't the get Jacobsen and Jacobsen book
 for
 all the same reasons. I just happened to gain a better insight from
 Flash's
 docs than the book.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Merrill,
 Jason
 Sent: Tuesday, January 03, 2006 11:14 AM
 To: Flashcoders mailing list
 Subject: RE: [Flashcoders] recommended books on XML in Flash


 Whatever you do, don't buy Flash and XML: A Developers Guide by Dov
 Jacobsen and Jesse Jacobsen - Addison-Wesley Press - besides being Flash
 5, the book sucks.  You get the impression these guys are much more into
 XML than Flash.  If they even use Flash at all in their professional
 lives.  Apologies in advance if you're on thist list and one of the
 authors. There's some good stuff in it, but for someone new to Flash or
 doing basic stuff, it's not the book for you.  But even the advanced
 stuff lacks depth though.

 Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com










 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of Ben Deroo
 Sent: Saturday, December 31, 2005 4:29 PM
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] recommended books on XML in Flash
 
 Hi,
 The title says it all I guess.
 Are there any good books out there on the subject of Flash 8 and XML?
 I found one called XML in Flash from Que publications, but as far as
 I can
 tell it is for Flash 5 and was written in 2001.
 
 Is that still current? I am assuming not.
 
 What books should I read when just getting into this subject, again,
 using
 Flash 8 or Flash MX2004?
 
 
 Thanks for your help,
 Ben
 
 
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 NOTICE:
 This message is for the designated recipient only and may contain
 privileged
 or confidential information. If you have received it in error, please
 notify
 the sender immediately and delete the original. Any other use of this
 e-mail
 by you is prohibited.
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman

[Flashcoders] HELP

2005-11-06 Thread Derek Lords
HELP 

~-Original Message-
~From: [EMAIL PROTECTED] 
~[mailto:[EMAIL PROTECTED] On Behalf 
~Of Jens Löffler
~Sent: Sunday, November 06, 2005 8:27 PM
~To: flashcoders@chattyfig.figleaf.com
~Subject: [Flashcoders] Need to click on all buttons twice
~
~Hi,
~
~I have a strange bug in a Flash RIA application (lot of 
~buttons, eventlisteners and UI elements). At some point, I 
~need to click an all buttons (UI components + regular buttons) 
~twice to trigger a click/release event. A datagrid component 
~lets me select a row and shows the click action, but it's not 
~selected afterwards. Anyone had this before?
~
~Jens
~
~
~___
~Flashcoders mailing list
[EMAIL PROTECTED]
~http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
~


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders