[cfaussie] Re: XHTML Regular Expression

2007-04-05 Thread Scott Arbeitman

have you tried using JTidy (or something like it) to convert your HTML
to XHTML? I find this solution is a big more elegant and general
purpose.

Steve Onnis wrote:
> Hey all
>
> Anyone help me out here?  I am trying to get a regular expression to work
> that will close any BR or IMG tags if they are not closed.
>
> This is what I have so far
>
> 
>src="http://www.inevative.com.au/storage/images/gold-coins2.jpg";>
>   
> 
> )", "<\L\1\2 /\3",
> "ALL")>
> #htmlEditFormat(result)#
>
> If the src attribute does not have any slashes in it, it works but they are
> interfering with the expression.  Anyone got any ideas?
>
>
> Steve Onnis


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: SQL Functions for QoQ

2006-12-04 Thread Scott Arbeitman

Complete for aggregate functions, but what about other ones. For  
example, UPPER is a valid SQL function but isn't aggregate.

-- Scott



On 04/12/2006, at 8:42 PM, Adam Cameron wrote:

>
>> Anyone know the list functions ColdFusion knows in Query of  
>> Queries? I
>> can't find a definitive list anywhere.
>
> Livedocs covers it:
> http://livedocs.macromedia.com/coldfusion/7/htmldocs/1266.htm
>
> The section on "Using aggregate functions" is complete.
>
> -- 
> Adam
>
>
> >


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] SQL Functions for QoQ

2006-12-03 Thread Scott Arbeitman

Anyone know the list functions ColdFusion knows in Query of Queries? I
can't find a definitive list anywhere.


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Eclipse CSS editior associtated with (expired) Flexbuilder - how to change?

2006-11-14 Thread Scott Arbeitman

What about disabling the Flex Builder plugin? You can go to Help >
Software Updates > Manage Configuration and disable it from there.


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: SQL Server vs MySQL

2006-11-12 Thread Scott Arbeitman

Have you experimented with different MySQL storage engines? The MyISAM
engine is generally faster than InnoDB.

SQL Server 2005 has a free version which may be all you need, depending
on your requirements.


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: super scope is java object

2006-11-12 Thread Scott Arbeitman

better still would just be super.doThis() which would work.

i just thought that was some interesting behaviour.


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] super scope is java object

2006-11-12 Thread Scott Arbeitman

Anyone know why the SUPER scope in a CFC is a Java object and not a
CFC?

This means I can't use CFINVOKE on its methods.


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Strange Web Service Behaviour

2006-11-09 Thread Scott Arbeitman

This seems lazy.

A ColdFusion developer should never have to worry about looking up
Javadocs unless he chooses to use Java objects. It would seem much more
sensible to return a struct with all the information you may need, like
every other ColdFusion function that returns complex data.

But good point about the time zone data. I was just converting them
into ColdFusion Date "objects" using the Locale-specific DateFormat
class (in Java) + LSParseDate, but I might have missed something...


Shane Farmer wrote:
> On 11/6/06, Scott Arbeitman <[EMAIL PROTECTED]> wrote:
> >
> >
> > When calling certain web services, ColdFusion is giving me back
> > java.util.GregorianCalendar instances. Why on Earth would they
> > implement it this way instead of wrapping them in Date/Time objects?
>
>
> Hi Scott,
>
> They would have done it like this to have time zone information included in
> the object. java.util.Date does not contain any details about the timezone
> for which it the date represents. The calendar on the other hand does. If
> you want a Date object, call getTime(). Just keep in mind that this will
> attempt to do timezone conversions for you. If you get some weirdness in the
> times, the conversions are most likely what is messing with them as they are
> a little flaky at times (seems to be a buggy class).
>
> It could be worse... I have been working with a web service where currency
> amounts are just wrapped in a float.
>
> HTH
> Shane
>
> --=_Part_45262_4513149.1162805354407
> Content-Type: text/html; charset=ISO-8859-1
> X-Google-AttachSize: 1312
>
> 
> On 11/6/06, Scott 
> Arbeitman <mailto:[EMAIL PROTECTED]">[EMAIL 
> PROTECTED]> wrote:
> When calling certain web services, 
> ColdFusion is giving me backjava.util.GregorianCalendar instances. Why on 
> Earth would they
> implement it this way instead of wrapping them in Date/Time 
> objects?
>  
> Hi Scott,
>  
> They would have done it like this to have time zone information 
> included in the object. java.util.Date does not contain any details about the 
> timezone for which it the date represents. The calendar on the other hand 
> does. If you want a Date object, call getTime(). Just keep in mind that this 
> will attempt to do timezone conversions for you. If you get some weirdness in 
> the times, the conversions are most likely what is messing with them as they 
> are a little flaky at times (seems to be a buggy class).
> 
>  
> It could be worse... I have been working with a web service where 
> currency amounts are just wrapped in a float.
>  
> HTH
> Shane 
> 
> --=_Part_45262_4513149.1162805354407--


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Strange Web Service Behaviour

2006-11-05 Thread Scott Arbeitman

When calling certain web services, ColdFusion is giving me back
java.util.GregorianCalendar instances. Why on Earth would they
implement it this way instead of wrapping them in Date/Time objects?


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CFeclipse and a very stupid question?

2006-11-05 Thread Scott Arbeitman

Ctrl+F6,  Shift+Ctrl+f6


--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Advice on whether to store a large(ish) recordset in memory or not

2006-10-25 Thread Scott Arbeitman

>From the CF7 livedocs:

A Query of Queries is ideal for tables of 5,000 to 50,000 rows, and is
limited only by the memory of the ColdFusion MX host computer.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Advice on whether to store a large(ish) recordset in memory or not

2006-10-25 Thread Scott Arbeitman

I remember reading somewhere that Adobe doesn't recommend using Query
of Queries with queries that have more than 50,000 rows, but damn if I
remember where.

I'm trying to find it on the livedocs, but they are so bloody slow.

I'll keep looking, butI'm thinking you might be better to do a
chachewithin than actually put it in your application scope.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Getting a NT user's name

2006-10-23 Thread Scott Arbeitman

Look at CGI.Remote_User and also try GetAuthUser()


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Changing Package Names for Axis-generated Classes

2006-10-17 Thread Scott Arbeitman

Anyone know if this is possible? The Axis-generated stuff clashes with
classes already in the classpath, causing some interesting behaviour
and making web services unusable.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Spamming

2006-09-18 Thread Scott Arbeitman

Hi All,

Apologies for spamming. I think that email address is registed with the
old CFAUSSIE mailing list.

Anyone know how I can remove it.

I've disabled that annoying message.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-18 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Mon, 18 Sep 2006 03:34:10 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> From: "Jamie Lawrence Jenner" <[EMAIL PROTECTED]>
> To: 
> Subject: [cfaussie] Re: [OT] Problems with XML/Flash
> Date: Mon, 18 Sep 2006 09:33:51 +0100
> Reply-To: cfaussie@googlegroups.com


> > if you suffix your text field with _txt you will get the code hints for your
> > box

> > then, you need to add .text to it. You should also add _root, or this,
> > depending where your tet box is

> > or

> > you can assign the value to a variable such as _root.testimonial

> > then on your text box, assign it to show the variable _root.testimonial

> > cheers

> > Jamie


> > -Original Message-
> > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]
> > Behalf Of Chris Velevitch
> > Sent: 18 September 2006 05:01
> > To: cfaussie@googlegroups.com
> > Subject: [cfaussie] Re: [OT] Problems with XML/Flash



> > http://groups.google.com/group/flashaussie

> > On 9/17/06, Taco Fleur <[EMAIL PROTECTED]> wrote:
> > >
> > > Can anyone tell me what has taken the place of the Deamon Flash list?
> > >
> > > I am having some issues with a Flash movie that is supposed to load an XML
> > > file and display a random testimonial, I know the file loads ok, because
> > > when I do a trace on this.firstChild.childNodes[ randomNumber
> > > ].firstChild.nodeValue it outputs the right value. But when I assign that
> > > value to the dynamic textfield testimonials_text it just goes blank. Any
> > > ideas anyone? Cheers
> > >
> > >
> > > function loadXML( success ) {
> > >  if ( success ) {
> > >   var max:Number =3D myXML.firstChild.childNodes.length;
> > >   var randomNumber:Number =3D Math.floor( Math.random() * max );
> > >
> > >   testimonials_text.text =3D this.firstChild.childNodes[ randomNumber
> > > ].firstChild.nodeValue;
> > >  }
> > >  else {
> > >   trace( "Bad XML!" );
> > >  }
> > > }
> > > myXML =3D new XML();
> > > myXML.ignoreWhite =3D true;
> > > myXML.onLoad =3D loadXML;
> > > myXML.load(
> > > "http://development.pacificfox.com.au/testimonials.xml"; );
> > >
> > > --
> > > Taco Fleur - http://www.pacificfox.com.au
> > > Web Design, Web development, Graphic Design and Complete Internet
> > Solutions
> > > an industry leader with commercial IT experience since 1994 =85
> > >  >
> > >


> > --
> > Chris Velevitch
> > Manager - Sydney Flash Platform Developers Group
> > m: 0415 469 095
> > www.flashdev.org.au



> > --
> > No virus found in this incoming message.
> > Checked by AVG Free Edition.
> > Version: 7.1.405 / Virus Database: 268.12.4/449 - Release Date: 15/09/2006

> > --
> > No virus found in this outgoing message.
> > Checked by AVG Free Edition.
> > Version: 7.1.405 / Virus Database: 268.12.4/449 - Release Date: 15/09/2006



> > 


> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-18 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Jamie Lawrence Jenner" <[EMAIL PROTECTED]>
To: 
Subject: [cfaussie] Re: [OT] Problems with XML/Flash
Date: Mon, 18 Sep 2006 09:33:51 +0100
Reply-To: cfaussie@googlegroups.com


> if you suffix your text field with _txt you will get the code hints for your
> box

> then, you need to add .text to it. You should also add _root, or this,
> depending where your tet box is

> or

> you can assign the value to a variable such as _root.testimonial

> then on your text box, assign it to show the variable _root.testimonial

> cheers

> Jamie


> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]
> Behalf Of Chris Velevitch
> Sent: 18 September 2006 05:01
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: [OT] Problems with XML/Flash



> http://groups.google.com/group/flashaussie

> On 9/17/06, Taco Fleur <[EMAIL PROTECTED]> wrote:
> >
> > Can anyone tell me what has taken the place of the Deamon Flash list?
> >
> > I am having some issues with a Flash movie that is supposed to load an XML
> > file and display a random testimonial, I know the file loads ok, because
> > when I do a trace on this.firstChild.childNodes[ randomNumber
> > ].firstChild.nodeValue it outputs the right value. But when I assign that
> > value to the dynamic textfield testimonials_text it just goes blank. Any
> > ideas anyone? Cheers
> >
> >
> > function loadXML( success ) {
> >  if ( success ) {
> >   var max:Number =3D myXML.firstChild.childNodes.length;
> >   var randomNumber:Number =3D Math.floor( Math.random() * max );
> >
> >   testimonials_text.text =3D this.firstChild.childNodes[ randomNumber
> > ].firstChild.nodeValue;
> >  }
> >  else {
> >   trace( "Bad XML!" );
> >  }
> > }
> > myXML =3D new XML();
> > myXML.ignoreWhite =3D true;
> > myXML.onLoad =3D loadXML;
> > myXML.load(
> > "http://development.pacificfox.com.au/testimonials.xml"; );
> >
> > --
> > Taco Fleur - http://www.pacificfox.com.au
> > Web Design, Web development, Graphic Design and Complete Internet
> Solutions
> > an industry leader with commercial IT experience since 1994 =85
> >  >
> >


> --
> Chris Velevitch
> Manager - Sydney Flash Platform Developers Group
> m: 0415 469 095
> www.flashdev.org.au



> --
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.1.405 / Virus Database: 268.12.4/449 - Release Date: 15/09/2006

> --
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.1.405 / Virus Database: 268.12.4/449 - Release Date: 15/09/2006



> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Mon, 18 Sep 2006 00:23:14 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 15:22:16 +1000
> From: "Chris Velevitch" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED], [EMAIL PROTECTED],  cfaussie@googlegroups.com,  
> "Flashcoders mailing list" ,  "Sydney 
> Flash Platform Developers Group Announcements" <[EMAIL PROTECTED]>
> Subject: [cfaussie] [Ann] Capivate 2.0 at Sydney Flash Platform Developers
> Reply-To: cfaussie@googlegroups.com


> > Monday, 25th September, 6:30 for 7pm start. NSW Sports Club
> > (www.flashdev.org.au/venue)

> > Adobe Captivate 2 has just been released. Come and see how this
> > favorite program has made creating engaging learning experience more
> > fun and easier than ever before. Brian Chau (live and in person) from
> > Adobe (Australia) will give us a demonstration on how simple it is to
> > create software demonstration, simulation and scenario-based training
> > all with simple point and click.

> > This meeting will be a joint meeting with the Sydney Flash Platform
> > Developers Group. Follow the Flash Developers signs.

> > There'll be an open bar, complements of Adobe.

> > Please rsvp on www.flashdev.org.au/rsvp.


> > Chris
> > -- 
> > Chris Velevitch
> > Manager - Sydney Flash Platform Developers Group
> > m: 0415 469 095
> > www.flashdev.org.au

> > 


> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 15:22:16 +1000
From: "Chris Velevitch" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],  cfaussie@googlegroups.com,  
"Flashcoders mailing list" ,  "Sydney Flash 
Platform Developers Group Announcements" <[EMAIL PROTECTED]>
Subject: [cfaussie] [Ann] Capivate 2.0 at Sydney Flash Platform Developers
Reply-To: cfaussie@googlegroups.com


> Monday, 25th September, 6:30 for 7pm start. NSW Sports Club
> (www.flashdev.org.au/venue)

> Adobe Captivate 2 has just been released. Come and see how this
> favorite program has made creating engaging learning experience more
> fun and easier than ever before. Brian Chau (live and in person) from
> Adobe (Australia) will give us a demonstration on how simple it is to
> create software demonstration, simulation and scenario-based training
> all with simple point and click.

> This meeting will be a joint meeting with the Sydney Flash Platform
> Developers Group. Follow the Flash Developers signs.

> There'll be an open bar, complements of Adobe.

> Please rsvp on www.flashdev.org.au/rsvp.


> Chris
> -- 
> Chris Velevitch
> Manager - Sydney Flash Platform Developers Group
> m: 0415 469 095
> www.flashdev.org.au

> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Mon, 18 Sep 2006 00:01:10 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 15:00:13 +1000
> From: "Chris Velevitch" <[EMAIL PROTECTED]>
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: [OT] Problems with XML/Flash
> Reply-To: cfaussie@googlegroups.com


> > On 9/18/06, Ryan Sabir <[EMAIL PROTECTED]> wrote:
> > > Is 'testimonials_text' the name of the text field? Or the name of the 
> > > variable bound to the text field? In which case you don't need the 
> > > '.text' in the assignment.

> > If you use _txt and the suffix of a name, Flash will code hint the
> > underlying object.


> > Chris
> > -- 
> > Chris Velevitch
> > Manager - Sydney Flash Platform Developers Group
> > m: 0415 469 095
> > www.flashdev.org.au

> > 


> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 15:00:13 +1000
From: "Chris Velevitch" <[EMAIL PROTECTED]>
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: [OT] Problems with XML/Flash
Reply-To: cfaussie@googlegroups.com


> On 9/18/06, Ryan Sabir <[EMAIL PROTECTED]> wrote:
> > Is 'testimonials_text' the name of the text field? Or the name of the 
> > variable bound to the text field? In which case you don't need the '.text' 
> > in the assignment.

> If you use _txt and the suffix of a name, Flash will code hint the
> underlying object.


> Chris
> -- 
> Chris Velevitch
> Manager - Sydney Flash Platform Developers Group
> m: 0415 469 095
> www.flashdev.org.au

> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 23:25:27 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 14:24:00 +1000
> From: Ryan Sabir <[EMAIL PROTECTED]>
> Subject: [cfaussie] Re: [OT] Problems with XML/Flash
> To: "'cfaussie@googlegroups.com'" 
> Reply-To: cfaussie@googlegroups.com



> > Is 'testimonials_text' the name of the text field? Or the name of the varia=
> > ble bound to the text field? In which case you don't need the '.text' in th=
> > e assignment.

> > Is the field definitely dynamic? Also not something silly like white text o=
> > n white bg?

> > Do you need to embed characters into the field maybe? Try embedding all upp=
> > er and lower case letters and numbers to see if it fixes the problem.


> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED] On Behalf Of Chris Velevitch
> > > Sent: Monday, 18 September 2006 2:14 PM
> > > To: cfaussie@googlegroups.com
> > > Subject: [cfaussie] Re: [OT] Problems with XML/Flash
> > >=20
> > >=20
> > > Try:-
> > >=20
> > > testimonials_text.text =3D this.firstChild.childNodes[=20
> > > randomNumber ].nodeValue;
> > >=20
> > > On 9/17/06, Taco Fleur <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Can anyone tell me what has taken the place of the Deamon=20
> > > Flash list?
> > > >
> > > > I am having some issues with a Flash movie that is supposed=20
> > > to load an=20
> > > > XML file and display a random testimonial, I know the file=20
> > > loads ok,=20
> > > > because when I do a trace on this.firstChild.childNodes[=20
> > > randomNumber=20
> > > > ].firstChild.nodeValue it outputs the right value. But when=20
> > > I assign=20
> > > > that value to the dynamic textfield testimonials_text it just goes=20
> > > > blank. Any ideas anyone? Cheers
> > > >
> > > >
> > > > function loadXML( success ) {
> > > >  if ( success ) {
> > > >   var max:Number =3D myXML.firstChild.childNodes.length;
> > > >   var randomNumber:Number =3D Math.floor( Math.random() * max );
> > > >
> > > >   testimonials_text.text =3D this.firstChild.childNodes[ randomNumber=
> > =20
> > > > ].firstChild.nodeValue;  }  else {
> > > >   trace( "Bad XML!" );
> > > >  }
> > > > }
> > > > myXML =3D new XML();
> > > > myXML.ignoreWhite =3D true;
> > > > myXML.onLoad =3D loadXML;
> > > > myXML.load(
> > > > "http://development.pacificfox.com.au/testimonials.xml"; );
> > > >
> > > > --
> > > > Taco Fleur - http://www.pacificfox.com.au Web Design, Web=20
> > > development,=20
> > > > Graphic Design and Complete Internet Solutions an industry=20
> > > leader with=20
> > > > commercial IT experience since 1994 =85  >
> > > >
> > >=20
> > >=20
> > > --
> > > Chris Velevitch
> > > Manager - Sydney Flash Platform Developers Group
> > > m: 0415 469 095
> > > www.flashdev.org.au
> > >=20
> > > >=20


> > 


> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 23:24:36 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 14:23:28 +1000
> From: Haikal Saadh <[EMAIL PROTECTED]>
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Change Of Email
> Reply-To: cfaussie@googlegroups.com


> > /kick?

> > Mods please help

> > Scott Arbeitman wrote:
> > > Hi,
> > >
> > > Thanks for sending me an email, but unfortunately, you'll have to send it 
> > > again.
> > >
> > > Please send emails to [EMAIL PROTECTED] from now on.
> > >
> > > Thanks,
> > > Scott Arbeitman
> > >
> > > -Original Message-
> > > Date: Mon, 18 Sep 2006 14:20:18 +1000
> > > From: "Tom MacKean" <[EMAIL PROTECTED]>
> > > To: cfaussie@googlegroups.com
> > > Subject: [cfaussie] Re: decimal places
> > > Reply-To: cfaussie@googlegroups.com
> > >
> > >
> > >   
> > >> --=_Part_9707_6258726.1158553218687
> > >> Content-Type: text/plain; charset=ISO-8859-1
> > >> 
> > >
> > >   
> > >> Even better Rod. That's exactly what I was after. I knew there must be a 
> > >> way
> > >> to do it.
> > >> 
> > >
> > >   
> > >> T
> > >> 
> > >
> > >
> > >   
> > >> On 9/18/06, Tom MacKean <[EMAIL PROTECTED]> wrote:
> > >> 
> > >>>  Thanks. That's perfect. I thought there might be a built-in function 
> > >>> that
> > >>> I hadn't found, but if not...
> > >>>
> > >>> Tom
> > >>>
> > >>>
> > >>>  On 9/18/06, Blair McKenzie <[EMAIL PROTECTED]> wrote:
> > >>>   
> > >>>>  <http://www.cflib.org/udf.cfm?ID=1387>CFLib is 
> > >>>> awesome<http://www.cflib.org/udf.cfm?ID=1387>
> > >>>>
> > >>>> Blair
> > >>>>
> > >>>>
> > >>>> On 9/18/06, Tom MacKean <[EMAIL PROTECTED] > wrote:
> > >>>> 
> > >>>>>  Hi List,
> > >>>>>
> > >>>>> How do I round a number to a certain number of decimal places (in this
> > >>>>> case three).
> > >>>>>
> > >>>>> e.g. . should become .667 and .1 should become .100
> > >>>>>
> > >>>>> I can't seem to find a function that does it.
> > >>>>>
> > >>>>> Thanks,
> > >>>>>
> > >>>>> Tom
> > >>>>>
> > >>>>> --
> > >>>>> IMPORTANT: This email is intended for the use of the individual
> > >>>>> addressee(s) named above and may contain information that is 
> > >>>>> confidential
> > >>>>> privileged or unsuitable for overly sensitive persons with low 
> > >>>>> self-esteem,
> > >>>>> no sense of humor or irrational religious beliefs. If you are not the
> > >>>>> intended recipient, any dissemination, distribution or copying of 
> > >>>>> this email
> > >>>>> is not authorized (either explicitly or implicitly) and constitutes an
> > >>>>> irritating social fauxpas. No animals were harmed in the transmission 
> > >>>>> of
> > >>>>> this email, although the mutt next door is living on borrowed time, 
> > >>>>> let me
> > >>>>> tell you.
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>
> > >>>>>   
> > >>>> 
> > >>>> 
> > >>>
&

[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 14:24:00 +1000
From: Ryan Sabir <[EMAIL PROTECTED]>
Subject: [cfaussie] Re: [OT] Problems with XML/Flash
To: "'cfaussie@googlegroups.com'" 
Reply-To: cfaussie@googlegroups.com



> Is 'testimonials_text' the name of the text field? Or the name of the varia=
> ble bound to the text field? In which case you don't need the '.text' in th=
> e assignment.

> Is the field definitely dynamic? Also not something silly like white text o=
> n white bg?

> Do you need to embed characters into the field maybe? Try embedding all upp=
> er and lower case letters and numbers to see if it fixes the problem.


> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of Chris Velevitch
> > Sent: Monday, 18 September 2006 2:14 PM
> > To: cfaussie@googlegroups.com
> > Subject: [cfaussie] Re: [OT] Problems with XML/Flash
> >=20
> >=20
> > Try:-
> >=20
> > testimonials_text.text =3D this.firstChild.childNodes[=20
> > randomNumber ].nodeValue;
> >=20
> > On 9/17/06, Taco Fleur <[EMAIL PROTECTED]> wrote:
> > >
> > > Can anyone tell me what has taken the place of the Deamon=20
> > Flash list?
> > >
> > > I am having some issues with a Flash movie that is supposed=20
> > to load an=20
> > > XML file and display a random testimonial, I know the file=20
> > loads ok,=20
> > > because when I do a trace on this.firstChild.childNodes[=20
> > randomNumber=20
> > > ].firstChild.nodeValue it outputs the right value. But when=20
> > I assign=20
> > > that value to the dynamic textfield testimonials_text it just goes=20
> > > blank. Any ideas anyone? Cheers
> > >
> > >
> > > function loadXML( success ) {
> > >  if ( success ) {
> > >   var max:Number =3D myXML.firstChild.childNodes.length;
> > >   var randomNumber:Number =3D Math.floor( Math.random() * max );
> > >
> > >   testimonials_text.text =3D this.firstChild.childNodes[ randomNumber=
> =20
> > > ].firstChild.nodeValue;  }  else {
> > >   trace( "Bad XML!" );
> > >  }
> > > }
> > > myXML =3D new XML();
> > > myXML.ignoreWhite =3D true;
> > > myXML.onLoad =3D loadXML;
> > > myXML.load(
> > > "http://development.pacificfox.com.au/testimonials.xml"; );
> > >
> > > --
> > > Taco Fleur - http://www.pacificfox.com.au Web Design, Web=20
> > development,=20
> > > Graphic Design and Complete Internet Solutions an industry=20
> > leader with=20
> > > commercial IT experience since 1994 =85  >
> > >
> >=20
> >=20
> > --
> > Chris Velevitch
> > Manager - Sydney Flash Platform Developers Group
> > m: 0415 469 095
> > www.flashdev.org.au
> >=20
> > >=20


> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 14:23:28 +1000
From: Haikal Saadh <[EMAIL PROTECTED]>
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Change Of Email
Reply-To: cfaussie@googlegroups.com


> /kick?

> Mods please help

> Scott Arbeitman wrote:
> > Hi,
> >
> > Thanks for sending me an email, but unfortunately, you'll have to send it 
> > again.
> >
> > Please send emails to [EMAIL PROTECTED] from now on.
> >
> > Thanks,
> > Scott Arbeitman
> >
> > -Original Message-
> > Date: Mon, 18 Sep 2006 14:20:18 +1000
> > From: "Tom MacKean" <[EMAIL PROTECTED]>
> > To: cfaussie@googlegroups.com
> > Subject: [cfaussie] Re: decimal places
> > Reply-To: cfaussie@googlegroups.com
> >
> >
> >   
> >> --=_Part_9707_6258726.1158553218687
> >> Content-Type: text/plain; charset=ISO-8859-1
> >> 
> >
> >   
> >> Even better Rod. That's exactly what I was after. I knew there must be a 
> >> way
> >> to do it.
> >> 
> >
> >   
> >> T
> >> 
> >
> >
> >   
> >> On 9/18/06, Tom MacKean <[EMAIL PROTECTED]> wrote:
> >> 
> >>>  Thanks. That's perfect. I thought there might be a built-in function that
> >>> I hadn't found, but if not...
> >>>
> >>> Tom
> >>>
> >>>
> >>>  On 9/18/06, Blair McKenzie <[EMAIL PROTECTED]> wrote:
> >>>   
> >>>>  <http://www.cflib.org/udf.cfm?ID=1387>CFLib is 
> >>>> awesome<http://www.cflib.org/udf.cfm?ID=1387>
> >>>>
> >>>> Blair
> >>>>
> >>>>
> >>>> On 9/18/06, Tom MacKean <[EMAIL PROTECTED] > wrote:
> >>>> 
> >>>>>  Hi List,
> >>>>>
> >>>>> How do I round a number to a certain number of decimal places (in this
> >>>>> case three).
> >>>>>
> >>>>> e.g. . should become .667 and .1 should become .100
> >>>>>
> >>>>> I can't seem to find a function that does it.
> >>>>>
> >>>>> Thanks,
> >>>>>
> >>>>> Tom
> >>>>>
> >>>>> --
> >>>>> IMPORTANT: This email is intended for the use of the individual
> >>>>> addressee(s) named above and may contain information that is 
> >>>>> confidential
> >>>>> privileged or unsuitable for overly sensitive persons with low 
> >>>>> self-esteem,
> >>>>> no sense of humor or irrational religious beliefs. If you are not the
> >>>>> intended recipient, any dissemination, distribution or copying of this 
> >>>>> email
> >>>>> is not authorized (either explicitly or implicitly) and constitutes an
> >>>>> irritating social fauxpas. No animals were harmed in the transmission of
> >>>>> this email, although the mutt next door is living on borrowed time, let 
> >>>>> me
> >>>>> tell you.
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>   
> >>>> 
> >>>> 
> >>>
> >>> --
> >>> IMPORTANT: This email is intended for the use of the individual
> >>> addressee(s) named above and may contain information that is confidential
> >>> privileged or unsuitable for overly sensitive persons with low 
> >>> self-esteem,
> >>> no sense of humor or irrational religious beliefs. If you are not the
> >>> intended recipient, any dissemination, distribution or copying of this 
> >>> email
> >>> is not authorized (either explicitly or implicitly) and constitutes an
> >>> irritating social fauxpas. No animals were harmed in the transmission of
> >>> this email, although the mutt next door is living on borrowed time, let me
> >>> tell you.
> >>>
> >>>   
> >
> >
> >
> >   
> >> -- 
> >> IMPORTANT: This email is intended for the use of the individual 
>

[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 23:21:18 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 14:20:18 +1000
> From: "Tom MacKean" <[EMAIL PROTECTED]>
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: decimal places
> Reply-To: cfaussie@googlegroups.com


> > --=_Part_9707_6258726.1158553218687
> > Content-Type: text/plain; charset=ISO-8859-1

> > Even better Rod. That's exactly what I was after. I knew there must be a way
> > to do it.

> > T


> > On 9/18/06, Tom MacKean <[EMAIL PROTECTED]> wrote:
> > >
> > >  Thanks. That's perfect. I thought there might be a built-in function that
> > > I hadn't found, but if not...
> > >
> > > Tom
> > >
> > >
> > >  On 9/18/06, Blair McKenzie <[EMAIL PROTECTED]> wrote:
> > > >
> > > >  <http://www.cflib.org/udf.cfm?ID=1387>CFLib is 
> > > > awesome<http://www.cflib.org/udf.cfm?ID=1387>
> > > >
> > > > Blair
> > > >
> > > >
> > > > On 9/18/06, Tom MacKean <[EMAIL PROTECTED] > wrote:
> > > > >
> > > > >  Hi List,
> > > > >
> > > > > How do I round a number to a certain number of decimal places (in this
> > > > > case three).
> > > > >
> > > > > e.g. . should become .667 and .1 should become .100
> > > > >
> > > > > I can't seem to find a function that does it.
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Tom
> > > > >
> > > > > --
> > > > > IMPORTANT: This email is intended for the use of the individual
> > > > > addressee(s) named above and may contain information that is 
> > > > > confidential
> > > > > privileged or unsuitable for overly sensitive persons with low 
> > > > > self-esteem,
> > > > > no sense of humor or irrational religious beliefs. If you are not the
> > > > > intended recipient, any dissemination, distribution or copying of 
> > > > > this email
> > > > > is not authorized (either explicitly or implicitly) and constitutes an
> > > > > irritating social fauxpas. No animals were harmed in the transmission 
> > > > > of
> > > > > this email, although the mutt next door is living on borrowed time, 
> > > > > let me
> > > > > tell you.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > > > >
> > > >
> > > >
> > >
> > >
> > >
> > > --
> > > IMPORTANT: This email is intended for the use of the individual
> > > addressee(s) named above and may contain information that is confidential
> > > privileged or unsuitable for overly sensitive persons with low 
> > > self-esteem,
> > > no sense of humor or irrational religious beliefs. If you are not the
> > > intended recipient, any dissemination, distribution or copying of this 
> > > email
> > > is not authorized (either explicitly or implicitly) and constitutes an
> > > irritating social fauxpas. No animals were harmed in the transmission of
> > > this email, although the mutt next door is living on borrowed time, let me
> > > tell you.
> > >



> > -- 
> > IMPORTANT: This email is intended for the use of the individual addressee(s)
> > named above and may contain information that is confidential privileged or
> > unsuitable for overly sensitive persons with low self-esteem, no sense of
> > humor or irrational religious beliefs. If you are not the intended
> > recipient, any dissemination, distribution or copying of this email is not
> > authorized (either explicitly or implicitly) and constitutes an irritating
> > social fauxpas. No animals were harmed in th

[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 14:20:18 +1000
From: "Tom MacKean" <[EMAIL PROTECTED]>
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: decimal places
Reply-To: cfaussie@googlegroups.com


> --=_Part_9707_6258726.1158553218687
> Content-Type: text/plain; charset=ISO-8859-1

> Even better Rod. That's exactly what I was after. I knew there must be a way
> to do it.

> T


> On 9/18/06, Tom MacKean <[EMAIL PROTECTED]> wrote:
> >
> >  Thanks. That's perfect. I thought there might be a built-in function that
> > I hadn't found, but if not...
> >
> > Tom
> >
> >
> >  On 9/18/06, Blair McKenzie <[EMAIL PROTECTED]> wrote:
> > >
> > >  <http://www.cflib.org/udf.cfm?ID=1387>CFLib is 
> > > awesome<http://www.cflib.org/udf.cfm?ID=1387>
> > >
> > > Blair
> > >
> > >
> > > On 9/18/06, Tom MacKean <[EMAIL PROTECTED] > wrote:
> > > >
> > > >  Hi List,
> > > >
> > > > How do I round a number to a certain number of decimal places (in this
> > > > case three).
> > > >
> > > > e.g. . should become .667 and .1 should become .100
> > > >
> > > > I can't seem to find a function that does it.
> > > >
> > > > Thanks,
> > > >
> > > > Tom
> > > >
> > > > --
> > > > IMPORTANT: This email is intended for the use of the individual
> > > > addressee(s) named above and may contain information that is 
> > > > confidential
> > > > privileged or unsuitable for overly sensitive persons with low 
> > > > self-esteem,
> > > > no sense of humor or irrational religious beliefs. If you are not the
> > > > intended recipient, any dissemination, distribution or copying of this 
> > > > email
> > > > is not authorized (either explicitly or implicitly) and constitutes an
> > > > irritating social fauxpas. No animals were harmed in the transmission of
> > > > this email, although the mutt next door is living on borrowed time, let 
> > > > me
> > > > tell you.
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> > > > >
> > >
> > >
> >
> >
> >
> > --
> > IMPORTANT: This email is intended for the use of the individual
> > addressee(s) named above and may contain information that is confidential
> > privileged or unsuitable for overly sensitive persons with low self-esteem,
> > no sense of humor or irrational religious beliefs. If you are not the
> > intended recipient, any dissemination, distribution or copying of this email
> > is not authorized (either explicitly or implicitly) and constitutes an
> > irritating social fauxpas. No animals were harmed in the transmission of
> > this email, although the mutt next door is living on borrowed time, let me
> > tell you.
> >



> -- 
> IMPORTANT: This email is intended for the use of the individual addressee(s)
> named above and may contain information that is confidential privileged or
> unsuitable for overly sensitive persons with low self-esteem, no sense of
> humor or irrational religious beliefs. If you are not the intended
> recipient, any dissemination, distribution or copying of this email is not
> authorized (either explicitly or implicitly) and constitutes an irritating
> social fauxpas. No animals were harmed in the transmission of this email,
> although the mutt next door is living on borrowed time, let me tell you.


> 
> --=_Part_9707_6258726.1158553218687
> Content-Type: text/html; charset=ISO-8859-1

> Even better Rod. That's exactly what I was after. I knew there must be a 
> way to do it.
>  
> T 
> On 9/18/06, Tom 
> MacKean <mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]> 
> wrote:
> 
> 
> Thanks. That's perfect. I thought there might be a built-in function 
> that I hadn't found, but if not...
> 
>  
> Tom 
> 
> On 9/18/06, Blair 
> McKenzie < href="mailto:[EMAIL PROTECTED]" target="_blank">[EMAIL PROTECTED]> 
> wrote:
>  
> 
>  href="http://www.cflib.org/udf.cfm?ID=1387"; target="_blank"> onclick="return top.js.OpenExtLink(window,event,this)" 
> href="http:

[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 23:15:22 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 14:14:22 +1000
> From: "Chris Velevitch" <[EMAIL PROTECTED]>
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: [OT] Problems with XML/Flash
> Reply-To: cfaussie@googlegroups.com


> > Try:-

> > testimonials_text.text =3D this.firstChild.childNodes[ randomNumber ].nodeV=
> > alue;

> > On 9/17/06, Taco Fleur <[EMAIL PROTECTED]> wrote:
> > >
> > > Can anyone tell me what has taken the place of the Deamon Flash list?
> > >
> > > I am having some issues with a Flash movie that is supposed to load an XML
> > > file and display a random testimonial, I know the file loads ok, because
> > > when I do a trace on this.firstChild.childNodes[ randomNumber
> > > ].firstChild.nodeValue it outputs the right value. But when I assign that
> > > value to the dynamic textfield testimonials_text it just goes blank. Any
> > > ideas anyone? Cheers
> > >
> > >
> > > function loadXML( success ) {
> > >  if ( success ) {
> > >   var max:Number =3D myXML.firstChild.childNodes.length;
> > >   var randomNumber:Number =3D Math.floor( Math.random() * max );
> > >
> > >   testimonials_text.text =3D this.firstChild.childNodes[ randomNumber
> > > ].firstChild.nodeValue;
> > >  }
> > >  else {
> > >   trace( "Bad XML!" );
> > >  }
> > > }
> > > myXML =3D new XML();
> > > myXML.ignoreWhite =3D true;
> > > myXML.onLoad =3D loadXML;
> > > myXML.load(
> > > "http://development.pacificfox.com.au/testimonials.xml"; );
> > >
> > > --
> > > Taco Fleur - http://www.pacificfox.com.au
> > > Web Design, Web development, Graphic Design and Complete Internet Solutio=
> > ns
> > > an industry leader with commercial IT experience since 1994 =85
> > >  >
> > >


> > --=20
> > Chris Velevitch
> > Manager - Sydney Flash Platform Developers Group
> > m: 0415 469 095
> > www.flashdev.org.au

> > 


> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 14:14:22 +1000
From: "Chris Velevitch" <[EMAIL PROTECTED]>
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: [OT] Problems with XML/Flash
Reply-To: cfaussie@googlegroups.com


> Try:-

> testimonials_text.text =3D this.firstChild.childNodes[ randomNumber ].nodeV=
> alue;

> On 9/17/06, Taco Fleur <[EMAIL PROTECTED]> wrote:
> >
> > Can anyone tell me what has taken the place of the Deamon Flash list?
> >
> > I am having some issues with a Flash movie that is supposed to load an XML
> > file and display a random testimonial, I know the file loads ok, because
> > when I do a trace on this.firstChild.childNodes[ randomNumber
> > ].firstChild.nodeValue it outputs the right value. But when I assign that
> > value to the dynamic textfield testimonials_text it just goes blank. Any
> > ideas anyone? Cheers
> >
> >
> > function loadXML( success ) {
> >  if ( success ) {
> >   var max:Number =3D myXML.firstChild.childNodes.length;
> >   var randomNumber:Number =3D Math.floor( Math.random() * max );
> >
> >   testimonials_text.text =3D this.firstChild.childNodes[ randomNumber
> > ].firstChild.nodeValue;
> >  }
> >  else {
> >   trace( "Bad XML!" );
> >  }
> > }
> > myXML =3D new XML();
> > myXML.ignoreWhite =3D true;
> > myXML.onLoad =3D loadXML;
> > myXML.load(
> > "http://development.pacificfox.com.au/testimonials.xml"; );
> >
> > --
> > Taco Fleur - http://www.pacificfox.com.au
> > Web Design, Web development, Graphic Design and Complete Internet Solutio=
> ns
> > an industry leader with commercial IT experience since 1994 =85
> >  >
> >


> --=20
> Chris Velevitch
> Manager - Sydney Flash Platform Developers Group
> m: 0415 469 095
> www.flashdev.org.au

> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 23:02:31 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 14:01:27 +1000
> From: "Chris Velevitch" <[EMAIL PROTECTED]>
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: [OT] Problems with XML/Flash
> Reply-To: cfaussie@googlegroups.com


> > http://groups.google.com/group/flashaussie

> > On 9/17/06, Taco Fleur <[EMAIL PROTECTED]> wrote:
> > >
> > > Can anyone tell me what has taken the place of the Deamon Flash list?
> > >
> > > I am having some issues with a Flash movie that is supposed to load an XML
> > > file and display a random testimonial, I know the file loads ok, because
> > > when I do a trace on this.firstChild.childNodes[ randomNumber
> > > ].firstChild.nodeValue it outputs the right value. But when I assign that
> > > value to the dynamic textfield testimonials_text it just goes blank. Any
> > > ideas anyone? Cheers
> > >
> > >
> > > function loadXML( success ) {
> > >  if ( success ) {
> > >   var max:Number =3D myXML.firstChild.childNodes.length;
> > >   var randomNumber:Number =3D Math.floor( Math.random() * max );
> > >
> > >   testimonials_text.text =3D this.firstChild.childNodes[ randomNumber
> > > ].firstChild.nodeValue;
> > >  }
> > >  else {
> > >   trace( "Bad XML!" );
> > >  }
> > > }
> > > myXML =3D new XML();
> > > myXML.ignoreWhite =3D true;
> > > myXML.onLoad =3D loadXML;
> > > myXML.load(
> > > "http://development.pacificfox.com.au/testimonials.xml"; );
> > >
> > > --
> > > Taco Fleur - http://www.pacificfox.com.au
> > > Web Design, Web development, Graphic Design and Complete Internet Solutio=
> > ns
> > > an industry leader with commercial IT experience since 1994 =85
> > >  >
> > >


> > --=20
> > Chris Velevitch
> > Manager - Sydney Flash Platform Developers Group
> > m: 0415 469 095
> > www.flashdev.org.au

> > 


> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 14:01:27 +1000
From: "Chris Velevitch" <[EMAIL PROTECTED]>
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: [OT] Problems with XML/Flash
Reply-To: cfaussie@googlegroups.com


> http://groups.google.com/group/flashaussie

> On 9/17/06, Taco Fleur <[EMAIL PROTECTED]> wrote:
> >
> > Can anyone tell me what has taken the place of the Deamon Flash list?
> >
> > I am having some issues with a Flash movie that is supposed to load an XML
> > file and display a random testimonial, I know the file loads ok, because
> > when I do a trace on this.firstChild.childNodes[ randomNumber
> > ].firstChild.nodeValue it outputs the right value. But when I assign that
> > value to the dynamic textfield testimonials_text it just goes blank. Any
> > ideas anyone? Cheers
> >
> >
> > function loadXML( success ) {
> >  if ( success ) {
> >   var max:Number =3D myXML.firstChild.childNodes.length;
> >   var randomNumber:Number =3D Math.floor( Math.random() * max );
> >
> >   testimonials_text.text =3D this.firstChild.childNodes[ randomNumber
> > ].firstChild.nodeValue;
> >  }
> >  else {
> >   trace( "Bad XML!" );
> >  }
> > }
> > myXML =3D new XML();
> > myXML.ignoreWhite =3D true;
> > myXML.onLoad =3D loadXML;
> > myXML.load(
> > "http://development.pacificfox.com.au/testimonials.xml"; );
> >
> > --
> > Taco Fleur - http://www.pacificfox.com.au
> > Web Design, Web development, Graphic Design and Complete Internet Solutio=
> ns
> > an industry leader with commercial IT experience since 1994 =85
> >  >
> >


> --=20
> Chris Velevitch
> Manager - Sydney Flash Platform Developers Group
> m: 0415 469 095
> www.flashdev.org.au

> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 21:48:45 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 12:48:00 +1000
> From: Ryan Sabir <[EMAIL PROTECTED]>
> Subject: [cfaussie] CF freelancers?
> To: "'cfaussie@googlegroups.com'" 
> Reply-To: cfaussie@googlegroups.com


> > --274503735-41-1158547686-3812
> > Content-Type: text/plain
> > Content-Transfer-Encoding: quoted-printable

> > Hi all,
> > =20
> > Just a general call out to any Cold Fusion / Flash freelancers out there.. =
> > we're building up our contact database and would love to have you on board.=
> >  Plenty of coding work coming up in the near to mid future.
> > =20
> > Send any CV's through to [EMAIL PROTECTED]
> > =20
> > thanks!
> > =20
> > =20
> > Ryan Sabir
> > Technical Director

> > p: (02) 9274 8030
> > f: (02) 9274 8099
> > m: 0411 512 454
> > w: www.newgency.comNewgency Pty Ltd
> > Web | Multimedia | eMarketing

> > 224 Riley St
> > Surry Hills NSW 2010
> > Sydney, Australia

> > =20

> > 
> > --274503735-41-1158547686-3812
> > Content-Type: text/html
> > Content-Transfer-Encoding: quoted-printable

> > 
> > 
> > 
> > 
> > 
> > Hi all,<=
> > /DIV>
> >   > DIV>
> > Just a general call ou=
> > t to any=20
> > Cold Fusion / Flash freelancers out there.. we're building up our cont=
> > act=20
> > database and would love to have you on board. Plenty of coding work coming =
> > up in=20
> > the near to mid future.
> >   > DIV>
> > Send any CV's through =
> > to  > href=3D"mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]
> >   > DIV>
> > thanks!<=
> > /DIV>
> >   > DIV>
> >  
> >  > style=3D"PADDING-RIGHT: 0px; BORDER-TOP: #cc 1px solid; PADDING-LEFT: 0=
> > px; PADDING-BOTTOM: 15px; WIDTH: 100%; PADDING-TOP: 15px; BORDER-BOTTOM: #c=
> > c 1px solid; BACKGROUND-COLOR: #e6e6e6"=20
> > cellSpacing=3D0 cellPadding=3D0>
> >   
> >   
> > =
> >  >   height=3D60 src=3D"http://www.newgency.com/footerImages/logo.gif"; wid=
> > th=3D46=20
> >   NOSEND=3D"1">
> >  > style=3D"FONT-SIZE: 10px; VERTICAL-ALIGN: top; WIDTH: 175px; COLOR: #66=
> > ; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif"> >   style=3D"FONT-WEIGHT: bold; FONT-SIZE: 12px; COLOR: #00">Ryan=20
> >   SabirTechnical Directorp: (02) 92=
> > 74=20
> >   8030f: (02) 9274 8099m: 041=
> > 1 512=20
> >   454w:  >   style=3D"FONT-SIZE: 10px; COLOR: #66; FONT-FAMILY: Verdana, Arial=
> > , Helvetica, sans-serif"=20
> >   href=3D"http://www.newgency.com/"; target=3D_blank>www.newgency.com > >
> >  >   src=3D"http://www.newgency.com/footerImages/divider.gif"; width=3D1=20
> > NOSEND=3D"1">
> >  > style=3D"FONT-SIZE: 10px; VERTICAL-ALIGN: top; COLOR: #66; FONT-FAM=
> > ILY: Verdana,
> >  Arial, Helvetica, sans-serif; TEXT-ALIGN: left">Newgency P=
> > ty=20
> >   LtdWeb | Multimedia | eMarketing224 Riley St=
> > Surry=20
> >   Hills NSW 2010Sydney, Australia
> >  
> > 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 12:48:00 +1000
From: Ryan Sabir <[EMAIL PROTECTED]>
Subject: [cfaussie] CF freelancers?
To: "'cfaussie@googlegroups.com'" 
Reply-To: cfaussie@googlegroups.com


> --274503735-41-1158547686-3812
> Content-Type: text/plain
> Content-Transfer-Encoding: quoted-printable

> Hi all,
> =20
> Just a general call out to any Cold Fusion / Flash freelancers out there.. =
> we're building up our contact database and would love to have you on board.=
>  Plenty of coding work coming up in the near to mid future.
> =20
> Send any CV's through to [EMAIL PROTECTED]
> =20
> thanks!
> =20
> =20
> Ryan Sabir
> Technical Director

> p: (02) 9274 8030
> f: (02) 9274 8099
> m: 0411 512 454
> w: www.newgency.comNewgency Pty Ltd
> Web | Multimedia | eMarketing

> 224 Riley St
> Surry Hills NSW 2010
> Sydney, Australia

> =20

> 
> --274503735-41-1158547686-3812
> Content-Type: text/html
> Content-Transfer-Encoding: quoted-printable

> 
> 
> 
> 
> 
> Hi all,<=
> /DIV>
>   DIV>
> Just a general call ou=
> t to any=20
> Cold Fusion / Flash freelancers out there.. we're building up our cont=
> act=20
> database and would love to have you on board. Plenty of coding work coming =
> up in=20
> the near to mid future.
>   DIV>
> Send any CV's through =
> to  href=3D"mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]
>   DIV>
> thanks!<=
> /DIV>
>   DIV>
>  
>  style=3D"PADDING-RIGHT: 0px; BORDER-TOP: #cc 1px solid; PADDING-LEFT: 0=
> px; PADDING-BOTTOM: 15px; WIDTH: 100%; PADDING-TOP: 15px; BORDER-BOTTOM: #c=
> c 1px solid; BACKGROUND-COLOR: #e6e6e6"=20
> cellSpacing=3D0 cellPadding=3D0>
>   
>   
> =
>height=3D60 src=3D"http://www.newgency.com/footerImages/logo.gif"; wid=
> th=3D46=20
>   NOSEND=3D"1">
>  style=3D"FONT-SIZE: 10px; VERTICAL-ALIGN: top; WIDTH: 175px; COLOR: #66=
> ; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif">   style=3D"FONT-WEIGHT: bold; FONT-SIZE: 12px; COLOR: #00">Ryan=20
>   SabirTechnical Directorp: (02) 92=
> 74=20
>   8030f: (02) 9274 8099m: 041=
> 1 512=20
>   454w:style=3D"FONT-SIZE: 10px; COLOR: #66; FONT-FAMILY: Verdana, Arial=
> , Helvetica, sans-serif"=20
>   href=3D"http://www.newgency.com/"; target=3D_blank>www.newgency.com >
>src=3D"http://www.newgency.com/footerImages/divider.gif"; width=3D1=20
> NOSEND=3D"1">
>  style=3D"FONT-SIZE: 10px; VERTICAL-ALIGN: top; COLOR: #66; FONT-FAM=
> ILY: Verdana,
>  Arial, Helvetica, sans-serif; TEXT-ALIGN: left">Newgency P=
> ty=20
>   LtdWeb | Multimedia | eMarketing224 Riley St=
> Surry=20
>   Hills NSW 2010Sydney, Australia
>  
> --~--~-~--~~~---~--~~
> You received this message because you are subscribed to the Google Groups &=
> quot;cfaussie" group.  To post to this group, send email to cfauss=
> [EMAIL PROTECTED]  To unsubscribe from this group, send email to cfau=
> [EMAIL PROTECTED]  For more options, visit this group a=
> t http://groups.google.com/group/cfaussie  -~--~~~~=
> --~~--~--~---
> 

> 
> --274503735-41-1158547686-3812--



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 20:51:25 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 11:50:27 +1000
> From: "Tom MacKean" <[EMAIL PROTECTED]>
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: decimal places
> Reply-To: cfaussie@googlegroups.com


> > --=_Part_7461_21427010.1158544227077
> > Content-Type: text/plain; charset=ISO-8859-1

> > Thanks. That's perfect. I thought there might be a built-in function that I
> > hadn't found, but if not...

> > Tom


> > On 9/18/06, Blair McKenzie <[EMAIL PROTECTED]> wrote:
> > >
> > >  <http://www.cflib.org/udf.cfm?ID=1387>CFLib is 
> > > awesome<http://www.cflib.org/udf.cfm?ID=1387>
> > >
> > > Blair
> > >
> > >
> > > On 9/18/06, Tom MacKean <[EMAIL PROTECTED]> wrote:
> > > >
> > > >  Hi List,
> > > >
> > > > How do I round a number to a certain number of decimal places (in this
> > > > case three).
> > > >
> > > > e.g. . should become .667 and .1 should become .100
> > > >
> > > > I can't seem to find a function that does it.
> > > >
> > > > Thanks,
> > > >
> > > > Tom
> > > >
> > > > --
> > > > IMPORTANT: This email is intended for the use of the individual
> > > > addressee(s) named above and may contain information that is 
> > > > confidential
> > > > privileged or unsuitable for overly sensitive persons with low 
> > > > self-esteem,
> > > > no sense of humor or irrational religious beliefs. If you are not the
> > > > intended recipient, any dissemination, distribution or copying of this 
> > > > email
> > > > is not authorized (either explicitly or implicitly) and constitutes an
> > > > irritating social fauxpas. No animals were harmed in the transmission of
> > > > this email, although the mutt next door is living on borrowed time, let 
> > > > me
> > > > tell you.
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> > > >
> > >
> > >



> > -- 
> > IMPORTANT: This email is intended for the use of the individual addressee(s)
> > named above and may contain information that is confidential privileged or
> > unsuitable for overly sensitive persons with low self-esteem, no sense of
> > humor or irrational religious beliefs. If you are not the intended
> > recipient, any dissemination, distribution or copying of this email is not
> > authorized (either explicitly or implicitly) and constitutes an irritating
> > social fauxpas. No animals were harmed in the transmission of this email,
> > although the mutt next door is living on borrowed time, let me tell you.


> > 
> > --=_Part_7461_21427010.1158544227077
> > Content-Type: text/html; charset=ISO-8859-1

> > Thanks. That's perfect. I thought there might be a built-in function 
> > that I hadn't found, but if not...
> >  
> > Tom 
> > On 9/18/06,  > class="gmail_sendername">Blair McKenzie <mailto:[EMAIL 
> > PROTECTED]">[EMAIL PROTECTED]> wrote:
> > 
> >  > href="http://www.cflib.org/udf.cfm?ID=1387"; target="_blank"> > onclick="return top.js.OpenExtLink(window,event,this)" 
> > href="http://www.cflib.org/udf.cfm?ID=1387"; target="_blank">
> > CFLib is awesomeBlair
> > 
> > On 9/18/06, Tom 
> > MacKean < > href="mailto:[EMAIL PROTECTED]" target="_blank">[EMAIL PROTECTED]
> > > wrote: 
> > 
> > 
> > Hi List,
> >  
> > How do I round a number to a certain number of decimal places (in this 
> > case three).
> >  
> > e.g. . should become .667 and .1 should become .100
> >  
> > I can't seem to find a function that does it.
> >  
>

[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 11:50:27 +1000
From: "Tom MacKean" <[EMAIL PROTECTED]>
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: decimal places
Reply-To: cfaussie@googlegroups.com


> --=_Part_7461_21427010.1158544227077
> Content-Type: text/plain; charset=ISO-8859-1

> Thanks. That's perfect. I thought there might be a built-in function that I
> hadn't found, but if not...

> Tom


> On 9/18/06, Blair McKenzie <[EMAIL PROTECTED]> wrote:
> >
> >  <http://www.cflib.org/udf.cfm?ID=1387>CFLib is 
> > awesome<http://www.cflib.org/udf.cfm?ID=1387>
> >
> > Blair
> >
> >
> > On 9/18/06, Tom MacKean <[EMAIL PROTECTED]> wrote:
> > >
> > >  Hi List,
> > >
> > > How do I round a number to a certain number of decimal places (in this
> > > case three).
> > >
> > > e.g. . should become .667 and .1 should become .100
> > >
> > > I can't seem to find a function that does it.
> > >
> > > Thanks,
> > >
> > > Tom
> > >
> > > --
> > > IMPORTANT: This email is intended for the use of the individual
> > > addressee(s) named above and may contain information that is confidential
> > > privileged or unsuitable for overly sensitive persons with low 
> > > self-esteem,
> > > no sense of humor or irrational religious beliefs. If you are not the
> > > intended recipient, any dissemination, distribution or copying of this 
> > > email
> > > is not authorized (either explicitly or implicitly) and constitutes an
> > > irritating social fauxpas. No animals were harmed in the transmission of
> > > this email, although the mutt next door is living on borrowed time, let me
> > > tell you.
> > >
> > >
> > >
> > >
> > >
> >
> >
> > >
> >
> >



> -- 
> IMPORTANT: This email is intended for the use of the individual addressee(s)
> named above and may contain information that is confidential privileged or
> unsuitable for overly sensitive persons with low self-esteem, no sense of
> humor or irrational religious beliefs. If you are not the intended
> recipient, any dissemination, distribution or copying of this email is not
> authorized (either explicitly or implicitly) and constitutes an irritating
> social fauxpas. No animals were harmed in the transmission of this email,
> although the mutt next door is living on borrowed time, let me tell you.


> 
> --=_Part_7461_21427010.1158544227077
> Content-Type: text/html; charset=ISO-8859-1

> Thanks. That's perfect. I thought there might be a built-in function 
> that I hadn't found, but if not...
>  
> Tom 
> On 9/18/06, Blair 
> McKenzie <mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]> 
> wrote:
> 
>  href="http://www.cflib.org/udf.cfm?ID=1387"; target="_blank"> onclick="return top.js.OpenExtLink(window,event,this)" 
> href="http://www.cflib.org/udf.cfm?ID=1387"; target="_blank">
> CFLib is awesomeBlair
> 
> On 9/18/06, Tom 
> MacKean < href="mailto:[EMAIL PROTECTED]" target="_blank">[EMAIL PROTECTED]
> > wrote: 
> 
> 
> Hi List,
>  
> How do I round a number to a certain number of decimal places (in this 
> case three).
>  
> e.g. . should become .667 and .1 should become .100
>  
> I can't seem to find a function that does it.
>  
> Thanks,
>  
> Tom-- IMPORTANT: This email is intended for the 
> use of the individual addressee(s) named above and may contain information 
> that is confidential privileged or unsuitable for overly sensitive persons 
> with low self-esteem, no sense of humor or irrational religious beliefs. If 
> you are not the intended recipient, any dissemination, distribution or 
> copying of this email is not authorized (either explicitly or implicitly) and 
> constitutes an irritating social fauxpas. No animals were harmed in the 
> transmission of this email, although the mutt next door is living on borrowed 
> time, let me tell you. 
>  
>  -- 
> IMPORTANT: This email is intended for the use of the individual 
> addressee(s) named above and may contain information that is confidential 
> privileged or unsuitable for overly sensitive persons with low self-esteem, 
> no sense of humor or irrational religious beliefs. If you are not the 
> intended recipient, any dissemination, distribution or copying of this email 
> is not authorized (either explicitly or implicitly) and constitutes an 
> irritating social fauxpas. No animals were harmed in the transmission of this 
> email, although the mutt next door is living on borrowed time, let me tell 
> you. 
> 
> > 
> --=_Part_7461_21427010.1158544227077--



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 20:48:17 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Reply-To: cfaussie@googlegroups.com
> From: "Rod Higgins" <[EMAIL PROTECTED]>
> To: 
> Subject: [cfaussie] Re: decimal places
> Date: Mon, 18 Sep 2006 11:47:24 +1000


> > --=_NextPart_000_0009_01C6DB18.389D78A0
> > Content-Type: text/plain
> > Content-Transfer-Encoding: quoted-printable

> > numberformat(mynumber, '9.999')
> > =20
> > hth
> > Rod

> > -Original Message-
> > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> > Of Tom MacKean
> > Sent: Monday, 18 September 2006 11:43 AM
> > To: cfaussie@googlegroups.com
> > Subject: [cfaussie] decimal places


> > Hi List,
> > =20
> > How do I round a number to a certain number of decimal places (in this case
> > three).
> > =20
> > e.g. . should become .667 and .1 should become .100
> > =20
> > I can't seem to find a function that does it.
> > =20
> > Thanks,
> > =20
> > Tom

> > --=20
> > IMPORTANT: This email is intended for the use of the individual addressee(s)
> > named above and may contain information that is confidential privileged or
> > unsuitable for overly sensitive persons with low self-esteem, no sense of
> > humor or irrational religious beliefs. If you are not the intended
> > recipient, any dissemination, distribution or copying of this email is not
> > authorized (either explicitly or implicitly) and constitutes an irritating
> > social fauxpas. No animals were harmed in the transmission of this email,
> > although the mutt next door is living on borrowed time, let me tell you.=20






> > 
> > --=_NextPart_000_0009_01C6DB18.389D78A0
> > Content-Type: text/html
> > Content-Transfer-Encoding: quoted-printable

> > 
> > 
> > 
> > Message

> > 
> > 
> >  > size=3D2>numberformat(mynumber, '9.999')
> >  > size=3D2> 
> >  > size=3D2>hth
> >  > size=3D2>Rod
> > 
> >   
> >> NT=20
> >   face=3DTahoma size=3D2>-Original Message-From:=20
> >   cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf=
> >  Of=20
> >   Tom MacKeanSent: Monday, 18 September 2006 11:43=20
> >   AMTo: cfaussie@googlegroups.comSubject: [cfaussie]=
> > =20
> >   decimal places
> >   Hi List,
> >    
> >   How do I round a number to a certain number of decimal places (in th=
> > is=20
> >   case three).
> >    
> >   e.g. . should become .667 and .1 should become .100
> >    
> >   I can't seem to find a function that does it.
> >    
> >   Thanks,
> >    
> >   Tom-- IMPORTANT: This email is intended for =
> > the use=20
> >   of the individual addressee(s) named above and may contain information th=
> > at is=20
> >   confidential privileged or unsuitable for overly sensitive persons with l=
> > ow=20
> >   self-esteem, no sense of humor or irrational religious beliefs. If you ar=
> > e not=20
> >   the intended recipient, any dissemination, distribution or copying of thi=
> > s=20
> >   email is not authorized (either explicitly or implicitly) and constitutes=
> >  an=20
> >   irritating social fauxpas. No animals were harmed in the transmission of =
> > this=20
> >   email, although the mutt next door is living on borrowed time, let me tel=
> > l=20
> >   you. 
> > 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Reply-To: cfaussie@googlegroups.com
From: "Rod Higgins" <[EMAIL PROTECTED]>
To: 
Subject: [cfaussie] Re: decimal places
Date: Mon, 18 Sep 2006 11:47:24 +1000


> --=_NextPart_000_0009_01C6DB18.389D78A0
> Content-Type: text/plain
> Content-Transfer-Encoding: quoted-printable

> numberformat(mynumber, '9.999')
> =20
> hth
> Rod

> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> Of Tom MacKean
> Sent: Monday, 18 September 2006 11:43 AM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] decimal places


> Hi List,
> =20
> How do I round a number to a certain number of decimal places (in this case
> three).
> =20
> e.g. . should become .667 and .1 should become .100
> =20
> I can't seem to find a function that does it.
> =20
> Thanks,
> =20
> Tom

> --=20
> IMPORTANT: This email is intended for the use of the individual addressee(s)
> named above and may contain information that is confidential privileged or
> unsuitable for overly sensitive persons with low self-esteem, no sense of
> humor or irrational religious beliefs. If you are not the intended
> recipient, any dissemination, distribution or copying of this email is not
> authorized (either explicitly or implicitly) and constitutes an irritating
> social fauxpas. No animals were harmed in the transmission of this email,
> although the mutt next door is living on borrowed time, let me tell you.=20






> 
> --=_NextPart_000_0009_01C6DB18.389D78A0
> Content-Type: text/html
> Content-Transfer-Encoding: quoted-printable

> 
> 
> 
> Message

> 
> 
>  size=3D2>numberformat(mynumber, '9.999')
>  size=3D2> 
>  size=3D2>hth
>  size=3D2>Rod
> 
>   
>NT=20
>   face=3DTahoma size=3D2>-Original Message-From:=20
>   cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf=
>  Of=20
>   Tom MacKeanSent: Monday, 18 September 2006 11:43=20
>   AMTo: cfaussie@googlegroups.comSubject: [cfaussie]=
> =20
>   decimal places
>   Hi List,
>    
>   How do I round a number to a certain number of decimal places (in th=
> is=20
>   case three).
>    
>   e.g. . should become .667 and .1 should become .100
>    
>   I can't seem to find a function that does it.
>    
>   Thanks,
>    
>   Tom-- IMPORTANT: This email is intended for =
> the use=20
>   of the individual addressee(s) named above and may contain information th=
> at is=20
>   confidential privileged or unsuitable for overly sensitive persons with l=
> ow=20
>   self-esteem, no sense of humor or irrational religious beliefs. If you ar=
> e not=20
>   the intended recipient, any dissemination, distribution or copying of thi=
> s=20
>   email is not authorized (either explicitly or implicitly) and constitutes=
>  an=20
>   irritating social fauxpas. No animals were harmed in the transmission of =
> this=20
>   email, although the mutt next door is living on borrowed time, let me tel=
> l=20
>   you. 
> --~--~-~--~~~---~--~~
> You received this message because you are subscribed to the Google Groups &=
> quot;cfaussie" group.  To post to this group, send email to cfauss=
> [EMAIL PROTECTED]  To unsubscribe from this group, send email to cfau=
> [EMAIL PROTECTED]  For more options, visit this group a=
> t http://groups.google.com/group/cfaussie  -~--~~~~=
> --~~--~--~---
> 
> --=_NextPart_000_0009_01C6DB18.389D78A0--



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 20:46:32 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 11:45:36 +1000
> From: "Blair McKenzie" <[EMAIL PROTECTED]>
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: decimal places
> Reply-To: cfaussie@googlegroups.com


> > --=_Part_120278_1454.1158543936081
> > Content-Type: text/plain; charset=ISO-8859-1

> >  <http://www.cflib.org/udf.cfm?ID=1387>CFLib is
> > awesome<http://www.cflib.org/udf.cfm?ID=1387>

> > Blair

> > On 9/18/06, Tom MacKean <[EMAIL PROTECTED]> wrote:
> > >
> > > Hi List,
> > >
> > > How do I round a number to a certain number of decimal places (in this
> > > case three).
> > >
> > > e.g. . should become .667 and .1 should become .100
> > >
> > > I can't seem to find a function that does it.
> > >
> > > Thanks,
> > >
> > > Tom
> > >
> > > --
> > > IMPORTANT: This email is intended for the use of the individual
> > > addressee(s) named above and may contain information that is confidential
> > > privileged or unsuitable for overly sensitive persons with low 
> > > self-esteem,
> > > no sense of humor or irrational religious beliefs. If you are not the
> > > intended recipient, any dissemination, distribution or copying of this 
> > > email
> > > is not authorized (either explicitly or implicitly) and constitutes an
> > > irritating social fauxpas. No animals were harmed in the transmission of
> > > this email, although the mutt next door is living on borrowed time, let me
> > > tell you.
> > >
> > > >
> > >


> > 
> > --=_Part_120278_1454.1158543936081
> > Content-Type: text/html; charset=ISO-8859-1

> > http://www.cflib.org/udf.cfm?ID=1387";> > href="http://www.cflib.org/udf.cfm?ID=1387";>CFLib is 
> > awesomeBlairOn 9/18/06, 
> > Tom MacKean
> >  <mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]> 
> > wrote:
> > Hi List,
> >  
> > How do I round a number to a certain number of decimal places (in this 
> > case three).
> >  
> > e.g. . should become .667 and .1 should become .100
> >  
> > I can't seem to find a function that does it.
> >  
> > Thanks,
> >  
> > Tom-- IMPORTANT: This email is intended for 
> > the use of the individual addressee(s) named above and may contain 
> > information that is confidential privileged or unsuitable for overly 
> > sensitive persons with low self-esteem, no sense of humor or irrational 
> > religious beliefs. If you are not the intended recipient, any 
> > dissemination, distribution or copying of this email is not authorized 
> > (either explicitly or implicitly) and constitutes an irritating social 
> > fauxpas. No animals were harmed in the transmission of this email, although 
> > the mutt next door is living on borrowed time, let me tell you. 
> > 
> > 
> > 
> > 
> > 
> > 
> > > 
> > --=_Part_120278_1454.1158543936081--



> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 11:45:36 +1000
From: "Blair McKenzie" <[EMAIL PROTECTED]>
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: decimal places
Reply-To: cfaussie@googlegroups.com


> --=_Part_120278_1454.1158543936081
> Content-Type: text/plain; charset=ISO-8859-1

>  <http://www.cflib.org/udf.cfm?ID=1387>CFLib is
> awesome<http://www.cflib.org/udf.cfm?ID=1387>

> Blair

> On 9/18/06, Tom MacKean <[EMAIL PROTECTED]> wrote:
> >
> > Hi List,
> >
> > How do I round a number to a certain number of decimal places (in this
> > case three).
> >
> > e.g. . should become .667 and .1 should become .100
> >
> > I can't seem to find a function that does it.
> >
> > Thanks,
> >
> > Tom
> >
> > --
> > IMPORTANT: This email is intended for the use of the individual
> > addressee(s) named above and may contain information that is confidential
> > privileged or unsuitable for overly sensitive persons with low self-esteem,
> > no sense of humor or irrational religious beliefs. If you are not the
> > intended recipient, any dissemination, distribution or copying of this email
> > is not authorized (either explicitly or implicitly) and constitutes an
> > irritating social fauxpas. No animals were harmed in the transmission of
> > this email, although the mutt next door is living on borrowed time, let me
> > tell you.
> >
> > >
> >


> 
> --=_Part_120278_1454.1158543936081
> Content-Type: text/html; charset=ISO-8859-1

> http://www.cflib.org/udf.cfm?ID=1387";> href="http://www.cflib.org/udf.cfm?ID=1387";>CFLib is 
> awesomeBlairOn 9/18/06,  class="gmail_sendername">Tom MacKean
>  <mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]> 
> wrote:
> Hi List,
>  
> How do I round a number to a certain number of decimal places (in this 
> case three).
>  
> e.g. . should become .667 and .1 should become .100
>  
> I can't seem to find a function that does it.
>  
> Thanks,
>  
> Tom-- IMPORTANT: This email is intended for the 
> use of the individual addressee(s) named above and may contain information 
> that is confidential privileged or unsuitable for overly sensitive persons 
> with low self-esteem, no sense of humor or irrational religious beliefs. If 
> you are not the intended recipient, any dissemination, distribution or 
> copying of this email is not authorized (either explicitly or implicitly) and 
> constitutes an irritating social fauxpas. No animals were harmed in the 
> transmission of this email, although the mutt next door is living on borrowed 
> time, let me tell you. 
> 
> 
> 
> 
> 
> 
> > 
> --=_Part_120278_1454.1158543936081--



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 20:43:27 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 11:42:31 +1000
> From: "Tom MacKean" <[EMAIL PROTECTED]>
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] decimal places
> Reply-To: cfaussie@googlegroups.com


> > --=_Part_7333_32165981.1158543751444
> > Content-Type: text/plain; charset=ISO-8859-1

> > Hi List,

> > How do I round a number to a certain number of decimal places (in this case
> > three).

> > e.g. . should become .667 and .1 should become .100

> > I can't seem to find a function that does it.

> > Thanks,

> > Tom

> > -- 
> > IMPORTANT: This email is intended for the use of the individual addressee(s)
> > named above and may contain information that is confidential privileged or
> > unsuitable for overly sensitive persons with low self-esteem, no sense of
> > humor or irrational religious beliefs. If you are not the intended
> > recipient, any dissemination, distribution or copying of this email is not
> > authorized (either explicitly or implicitly) and constitutes an irritating
> > social fauxpas. No animals were harmed in the transmission of this email,
> > although the mutt next door is living on borrowed time, let me tell you.


> > 
> > --=_Part_7333_32165981.1158543751444
> > Content-Type: text/html; charset=ISO-8859-1

> > Hi List,
> >  
> > How do I round a number to a certain number of decimal places (in this 
> > case three).
> >  
> > e.g. . should become .667 and .1 should become .100
> >  
> > I can't seem to find a function that does it.
> >  
> > Thanks,
> >  
> > Tom-- IMPORTANT: This email is intended for 
> > the use of the individual addressee(s) named above and may contain 
> > information that is confidential privileged or unsuitable for overly 
> > sensitive persons with low self-esteem, no sense of humor or irrational 
> > religious beliefs. If you are not the intended recipient, any 
> > dissemination, distribution or copying of this email is not authorized 
> > (either explicitly or implicitly) and constitutes an irritating social 
> > fauxpas. No animals were harmed in the transmission of this email, although 
> > the mutt next door is living on borrowed time, let me tell you. 
> > 
> > 
> > > 
> > --=_Part_7333_32165981.1158543751444--



> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 11:42:31 +1000
From: "Tom MacKean" <[EMAIL PROTECTED]>
To: cfaussie@googlegroups.com
Subject: [cfaussie] decimal places
Reply-To: cfaussie@googlegroups.com


> --=_Part_7333_32165981.1158543751444
> Content-Type: text/plain; charset=ISO-8859-1

> Hi List,

> How do I round a number to a certain number of decimal places (in this case
> three).

> e.g. . should become .667 and .1 should become .100

> I can't seem to find a function that does it.

> Thanks,

> Tom

> -- 
> IMPORTANT: This email is intended for the use of the individual addressee(s)
> named above and may contain information that is confidential privileged or
> unsuitable for overly sensitive persons with low self-esteem, no sense of
> humor or irrational religious beliefs. If you are not the intended
> recipient, any dissemination, distribution or copying of this email is not
> authorized (either explicitly or implicitly) and constitutes an irritating
> social fauxpas. No animals were harmed in the transmission of this email,
> although the mutt next door is living on borrowed time, let me tell you.


> 
> --=_Part_7333_32165981.1158543751444
> Content-Type: text/html; charset=ISO-8859-1

> Hi List,
>  
> How do I round a number to a certain number of decimal places (in this 
> case three).
>  
> e.g. . should become .667 and .1 should become .100
>  
> I can't seem to find a function that does it.
>  
> Thanks,
>  
> Tom-- IMPORTANT: This email is intended for the 
> use of the individual addressee(s) named above and may contain information 
> that is confidential privileged or unsuitable for overly sensitive persons 
> with low self-esteem, no sense of humor or irrational religious beliefs. If 
> you are not the intended recipient, any dissemination, distribution or 
> copying of this email is not authorized (either explicitly or implicitly) and 
> constitutes an irritating social fauxpas. No animals were harmed in the 
> transmission of this email, although the mutt next door is living on borrowed 
> time, let me tell you. 
> 
> 
> > 
> --=_Part_7333_32165981.1158543751444--



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie@googlegroups.com" 
Subject: [cfaussie] Change Of Email
Date: Sun, 17 Sep 2006 18:31:01 -0500
Reply-To: cfaussie@googlegroups.com


> Hi,

> Thanks for sending me an email, but unfortunately, you'll have to send it 
> again.

> Please send emails to [EMAIL PROTECTED] from now on.

> Thanks,
> Scott Arbeitman

> -Original Message-
> Date: Mon, 18 Sep 2006 09:30:00 +1000
> From: Ryan Sabir <[EMAIL PROTECTED]>
> Subject: [cfaussie] Re: Simplified Chinese encoding [FIXED!]
> To: "'cfaussie@googlegroups.com'" 
> Reply-To: cfaussie@googlegroups.com


> > --262639760-41-1158535822-3812
> > Content-Type: text/plain
> > Content-Transfer-Encoding: quoted-printable

> > Hi all,
> > =20
> > Thanks for your help with this.
> > =20
> > Because this is a legacy site I was unable to change the character encoding=
> >  from gb2312 to UTF-8. Also it was an Access database so my dsn options wer=
> > e limited.
> > =20
> > What I did instead was basically strip the content-type information from th=
> > e http header, and let the browser decide what encoding to use. I did this =
> > by simply adding the line '' to the top of th=
> > e cfm page.
> > =20
> > In the future I'll be using UTF-8 to avoid such issues.
> > =20
> > bye!
> > =20




> > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behal=
> > f Of darryl lyons
> > Sent: Saturday, 16 September 2006 10:27 PM
> > To: cfaussie@googlegroups.com
> > Subject: [cfaussie] Re: Simplified Chinese encoding


> > Ryan,

> > I've only ever used UTF-8 in the past, as I found working with any other en=
> > coding (either getting data into or out of the database) to be pretty unrel=
> > iable. SQL Server for instance isn't too good at storing double-byte charac=
> > ters, but works with Unicode fine.=20

> > The other issue is forcing ColdFusion not to encode everything as Unicode b=
> > y default. You need to do this BEFORE the browser sees it (so in this case,=
> >  the META tag won't help you). Haikal's suggestion will probably do the tri=
> > ck (not that I have tried it before).=20

> > Darryl


> > On 14/09/06, Ryan Sabir <[EMAIL PROTECTED]> wrote:=20
> > Hey all,
> > =20
> > I'm trying to get some web pages to show in Simplfied Chinese encoding, but=
> >  the standard META tag doesn't seem to be working.
> > =20
> > When I look at this page:
> > http://www.miller.com.au/index.cfm?&setlanguage=3D2=20
> > =20
> > All the chinese characters are coming up wrong, however, when I go to the V=
> > iew->Encoding menu and manually set the encoding to gb2312, it looks fine.
> > =20
> > I have the=20
> > =
> > =20
> > =20
> > line in there which is supposed to set the character encoding, but my brows=
> > er is defaulting to Unicode.
> > =20
> > This only started happenning when it moved from III5 on Win 2000 Server to =
> > IIS6 on Win 2003 Server. Is there a server setting I need to tweak to enabl=
> > e this?
> > =20
> > thanks.
> > =20
> > =20
> > =20
> > =20
> > Ryan Sabir
> > Technical Director

> > p: (02) 9274 8030
> > f: (02) 9274 8099
> > m: 0411 512 454
> > w: www.newgency.comNewgency Pty Ltd
> > Web | Multimedia | eMarketing

> > 224 Riley St
> > Surry Hills NSW 2010
> > Sydney, Australia

> > =20








> > --=20

> > Darryl
> > http://www.acheron.org/darryl/=20

> > 
> > --262639760-41-1158535822-3812
> > Content-Type: text/html
> > Content-Transfer-Encoding: quoted-printable

> > 
> > 
> > 
> > 
> > 
> >  > #ff=20
> > size=3D2>Hi all,
> >  > #ff=20
> > size=3D2> 
> >  > #ff=20
> > size=3D2>Thanks for your help with this.
> >  
> > Becaus=
> > e this is a=20
> > legacy site I was unable to change the character encoding from gb2312 to UT=
> > F-8.=20
> > Also it was an Access database so my dsn options were=20
> > limited.
> >  > size=3D2> 
> > What&n=
> > bsp;I did=20
> > instead was basically strip the content-type information from the http head=
> > er,=20
> > and let the browser decide 

[cfaussie] Change Of Email

2006-09-17 Thread Scott Arbeitman

Hi,

Thanks for sending me an email, but unfortunately, you'll have to send it again.

Please send emails to [EMAIL PROTECTED] from now on.

Thanks,
Scott Arbeitman

-Original Message-
Date: Mon, 18 Sep 2006 09:30:00 +1000
From: Ryan Sabir <[EMAIL PROTECTED]>
Subject: [cfaussie] Re: Simplified Chinese encoding [FIXED!]
To: "'cfaussie@googlegroups.com'" 
Reply-To: cfaussie@googlegroups.com


> --262639760-41-1158535822-3812
> Content-Type: text/plain
> Content-Transfer-Encoding: quoted-printable

> Hi all,
> =20
> Thanks for your help with this.
> =20
> Because this is a legacy site I was unable to change the character encoding=
>  from gb2312 to UTF-8. Also it was an Access database so my dsn options wer=
> e limited.
> =20
> What I did instead was basically strip the content-type information from th=
> e http header, and let the browser decide what encoding to use. I did this =
> by simply adding the line '' to the top of th=
> e cfm page.
> =20
> In the future I'll be using UTF-8 to avoid such issues.
> =20
> bye!
> =20




> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behal=
> f Of darryl lyons
> Sent: Saturday, 16 September 2006 10:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Simplified Chinese encoding


> Ryan,

> I've only ever used UTF-8 in the past, as I found working with any other en=
> coding (either getting data into or out of the database) to be pretty unrel=
> iable. SQL Server for instance isn't too good at storing double-byte charac=
> ters, but works with Unicode fine.=20

> The other issue is forcing ColdFusion not to encode everything as Unicode b=
> y default. You need to do this BEFORE the browser sees it (so in this case,=
>  the META tag won't help you). Haikal's suggestion will probably do the tri=
> ck (not that I have tried it before).=20

> Darryl


> On 14/09/06, Ryan Sabir <[EMAIL PROTECTED]> wrote:=20
> Hey all,
> =20
> I'm trying to get some web pages to show in Simplfied Chinese encoding, but=
>  the standard META tag doesn't seem to be working.
> =20
> When I look at this page:
> http://www.miller.com.au/index.cfm?&setlanguage=3D2=20
> =20
> All the chinese characters are coming up wrong, however, when I go to the V=
> iew->Encoding menu and manually set the encoding to gb2312, it looks fine.
> =20
> I have the=20
> =
> =20
> =20
> line in there which is supposed to set the character encoding, but my brows=
> er is defaulting to Unicode.
> =20
> This only started happenning when it moved from III5 on Win 2000 Server to =
> IIS6 on Win 2003 Server. Is there a server setting I need to tweak to enabl=
> e this?
> =20
> thanks.
> =20
> =20
> =20
> =20
> Ryan Sabir
> Technical Director

> p: (02) 9274 8030
> f: (02) 9274 8099
> m: 0411 512 454
> w: www.newgency.comNewgency Pty Ltd
> Web | Multimedia | eMarketing

> 224 Riley St
> Surry Hills NSW 2010
> Sydney, Australia

> =20








> --=20

> Darryl
> http://www.acheron.org/darryl/=20

> 
> --262639760-41-1158535822-3812
> Content-Type: text/html
> Content-Transfer-Encoding: quoted-printable

> 
> 
> 
> 
> 
>  #ff=20
> size=3D2>Hi all,
>  #ff=20
> size=3D2> 
>  #ff=20
> size=3D2>Thanks for your help with this.
>  
> Becaus=
> e this is a=20
> legacy site I was unable to change the character encoding from gb2312 to UT=
> F-8.=20
> Also it was an Access database so my dsn options were=20
> limited.
>  size=3D2> 
> What&n=
> bsp;I did=20
> instead was basically strip the content-type information from the http head=
> er,=20
> and let the browser decide what encoding to use. I did this by simply addin=
> g the=20
> line '<cfcontent type=3D"text/html">' to the top of the cfm=20
> page.
>  size=3D2> 
> In the=
>  future=20
> I'll be using UTF-8 to avoid such issues.
>  size=3D2> 
>  size=3D2>bye!
>  size=3D2> 
> 
>  style=3D"PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #ff 2px soli=
> d; MARGIN-RIGHT: 0px">
>   
>   
>   From: [EMAIL PROTECTED]
>   [mailto:[EMAIL PROTECTED] On Behalf Of darryl=20
>   lyonsSent: Saturday, 16 September 2006 10:27 PMTo:=
> =20
>   cfaussie@googlegroups.comSubject: [cfaussie] Re: Simplified Ch=
> inese=20
>   encoding
>   Ryan,I've only ever used UTF-8 in the past, as I found=
> =20
>   working with any other encoding (either getting data into or out of the=
> =20
>   database) to be pretty unreliable. SQL Server for instance isn't too good=
>  at=20
>   storing doubl

[cfaussie] Re: Using CFCProxy

2006-09-06 Thread Scott Arbeitman

Yes. That file exists in the classpath. And the ColdFusion server gets
restarted.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Using CFCProxy

2006-09-06 Thread Scott Arbeitman

The code that I use is all there. I can even do this with no error:
CreateObject("java", "coldfusion.cfc.TemplateProxy").init("..") on the
line just before I call the Java class the uses CFCProxy. To me, that
says it's in the class path, but I could be missing the point.

Forta says "ColdFusion's classloader must be the current classloader".
Is that true in this example?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Using CFCProxy

2006-09-05 Thread Scott Arbeitman

I never thought I would need to do this, but I need to invoke
ColdFusion components from inside Java (and I will invoke the Java code
in ColdFusion).

I've written a simple test:

import coldfusion.cfc.CFCProxy;

public class UseCFCProxy {

public String doSomething() throws Throwable {
CFCProxy aCFC = new CFCProxy("path\\to\\Test.cfc");
Object result = aCFC.invoke("aMethod", new Object[] { });
return (String)result;
}

}

and Test.cfc looks like this:






I try to use the Class like this:









and I always get a JRun Servlet Error. Checking the log files, I see a
rather long stack trace:
06/09 16:22:08 error coldfusion/cfc/CFCProxy
java.lang.NoClassDefFoundError: coldfusion/cfc/CFCProxy
at com.renewtek.framework.UseCFCProxy.doSomething(UseCFCProxy.java:8)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at coldfusion.runtime.StructBean.invoke(StructBean.java:391)
at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:1662)
at
cftest2ecfm386618807.runPage(\\medvwfs02\dev\Develop\sdajb001\scrap\test.cfm:3)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
at
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)


Any ideas? Has anyone had success with this?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Web Service Stub Wierdness

2006-08-23 Thread Scott Arbeitman

That's exactly what I've done, but this takes a REALLY long time to run
(minutes). I'd rather ColdFusion didn't have to do this in the first
place...


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Bluedragon woes

2006-08-22 Thread Scott Arbeitman

Is this queryposition attribute new to CF7? BlueDragon is roughly CF6.1
compatible.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Web Service Stub Wierdness

2006-08-22 Thread Scott Arbeitman

I have some named web services in my ColdFusion administrator (CF 6.1).


I have templates which invoke the web services. These invocations have
a low timeout.

If I load a template which calls a web service after adding or
refreshing a web service in the administrator, it runs without
problems.

When I restart ColdFusion, however, I can no longer invoke these web
services because of socket timeout errors. These are resolved after
refreshing the web services in the administrator.

Now I know ColdFusion is going to use Axis to generate stubs when
adding/refreshing web services. Therefore, these stubs must be deleted
by CF when restarting ColdFusion even though "Save Class Files" setting
is enabled (I'm assuming, then, that this setting only applies to
compiled ColdFusion pages, not Axis stubs).

Needless to say, the generate of stubs and their invocation exceeds 5
the timeout threshhold.

Anyone know I can tell CF not to delete these stubs?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: DHTML Data Grid

2006-08-21 Thread Scott Arbeitman

Dojo stuff is pretty good.

http://archive.dojotoolkit.org/nightly/tests/widget/test_FilteringTable.html

Is there one that comes with Spry?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Configuring Cold Fusion for Flex 2.0

2006-08-09 Thread Scott Arbeitman

I believe it's the 7.0.2 update, but that you are correct.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: CFC init() return null?

2006-08-09 Thread Scott Arbeitman

Why can't your CFC just throw an exception? This is the Java way to do
things, are contructors always return the type of the object you are
constructing. Factory methods, of course, are a bit different, and init
is really just a factory method. But I would strongly suggest throwing
exceptions for failed initialization.

I've been working on a job where services always have a certain reply
struture which always has a flag to indicate whether the call was
successful. At first I thought this was a bit ridiculous, but it's
growing on me...


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Duplicating CFC instances (very interesting behaviour)

2006-07-22 Thread Scott Arbeitman

It's a good option.

I guess my goal was to limit strange behaviour deep within the
framework code using cloning. But since it seems like that's not
possible, I will probably go for the approach you are suggesting, if I
do anything at all.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Duplicating CFC instances (very interesting behaviour)

2006-07-21 Thread Scott Arbeitman

The cf_trustedcache tag does turns off the trusted cache via the
ServiceFactory. If we were using CF7, we might do something like using
a Directory Watcher gateway to check for changes, then do what you are
suggesting. 

However, we don't want to change the business process by having the
contenet publishers tinker with CF settings, or write any CF code. The
code is edited directly on the file system, not uploaded via a form.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Duplicating CFC instances (very interesting behaviour)

2006-07-21 Thread Scott Arbeitman

We have "content" people who are always editing pages which are
included via CFINCLUDE. We don't want to require them to know anything
about trusted cache, i.e. "when you change content, turn off trusted
cache, go to the url of that content, and then turn trusted cache back
on".

I've explored other options, such as using JSP includes for this kind
of content, because that bypassed the trusted cache. But this is an old
system, and there are hundreds of such cfincludes.

I've also written a trustedcache tag, where the trusted cache is
enabled in between the start and end tags, e.g.

... lots of CFCs are created here...


The problem here is that trusted cache is always set per server, and if
code in between tags is executed often, the cache may never really be
turned off, cause all sorts of problems.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Duplicating CFC instances (very interesting behaviour)

2006-07-20 Thread Scott Arbeitman

I've considered it. It's certainly not ideal, but it could work. It
also introduces some complexity: manage pool size, memory issues, etc.

That's why cloning would be best.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Duplicating CFC instances (very interesting behaviour)

2006-07-20 Thread Scott Arbeitman

In your example, I'm reusing the same CFC multiple times.

This won't work as I require different CFC instances which hold
different values.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Duplicating CFC instances (very interesting behaviour)

2006-07-20 Thread Scott Arbeitman

We have a production enviornment where trusted cache simply cannot be
enabled. This is causing performance issues because some requests are
creating many components, and each creation takes some time as
ColdFusion will do some disk I/O. Overhead is about 30 ms per instance
creation, which adds up.

I reckon I can get this number below 5 ms but cloning a CFC in memory
which means NOT using CreateObject.

Now, I know that Duplicate makes deep copies of structs. When applied
to a CFC instance, it seems to create a struct, where the keys are the
method names and the values are the methods. I can still call these
methods just like a CFC which is nice. However, I have some logic which
is performed when IsObject is true, which is not for these CFCs.

I'm fishing for ideas here on the best way to duplicate a CFC without
touching the file systems, while preserving that IsObject will be true
for the new object.

I'm open to Java ideas as well. I've tried things like
cfc.getClass().newInstance(), but this doesn't get me anywhere.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] how to do BinaryDecode in CF6

2006-07-12 Thread Scott Arbeitman

I have a PDF I need to decode. Using BinaryDecode in CF7 works fine,
but I'm stuck with CF6. Any ideas? A CF/Java solution is fine,
preferably if it doesn't require external jars.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Anyone Melbournians good with AJAX?

2006-07-12 Thread Scott Arbeitman

What sort of presentation? How long? I've never been to one of these
groups.

I might be able to do something regarding ColdFusion and using an Ajax
toolkit (Dojo)?

Steve Onnis wrote:
> Just wondering if anyone here from Melbourne is prepared to do a
> presentation at CFUG on AJAX.
>
> Steve
>
> --=_NextPart_000_00F8_01C6A5BF.369E2BF0
> Content-Type: text/html; charset=iso-8859-1
> Content-Transfer-Encoding: quoted-printable
> X-Google-AttachSize: 622
>
> 
> 
>  charset=3Diso-8859-1">
> 
> 
> Just =
> wondering if=20
> anyone here from Melbourne is prepared to do a presentation at CFUG on=20
> AJAX.
>  size=3D2> 
>  size=3D2>Steve
> 
> --=_NextPart_000_00F8_01C6A5BF.369E2BF0--


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] consuming a document-literal service

2006-07-02 Thread Scott Arbeitman

I'm having trouble getting CF to call a document-literal operation of a
web service. The WSDL snippet looks like this:




  


  



If I do a ws=CreateObject("webservice", "#WsdlUrl#") and dump "ws"
there are no method signatures corresponding to
JB_SLCI_RefreshStockBook and if I could call it, what sort of parameter
would I pass to it?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-21 Thread Scott Arbeitman

a very good idea. I saw coldspring do this, but it never struck me to
do it in this situation.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Enforcing Array Uniformity

2006-06-21 Thread Scott Arbeitman

I came across this post today:
http://tjordahl.blogspot.com/2006/06/better-way-to-make-string-array.html
which brought to the surface an issue that was bugging me.

This method seems to work fine for Arrays of Java types, where we have
access to getClass() method. But what if we want to enforce an array of
specific CFC objects.

Any way to do this?

Background: I want to turn an array of CFCs into a query, where the
columns are the properties of that CFC (via introspection). I want to
assume that the element as position 1 has the same properties at
position n. Otherwise, I obviously can't proceed.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-20 Thread Scott Arbeitman

Can't really use CreateObject/cfobject without modifying Java code, I
will need the functions to return proper values, not set ColdFusion
variables. But we're talking hundreds of methods; that's not feasible.
I thought this would be a quick hack, but it's more like a dead-end.

Thanks anyways.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Scott Arbeitman

argcollection does not work. It expects the attributes to be hard-coded.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Scott Arbeitman

















" />











Also, I don't think the argcollection thing will work, but I'll give it
a shot. Seems too easy...


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Scott Arbeitman

No, because the cfx_j tag uses the CALLER scope to set local variables.
So it kinda returns multiple variables.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] invoking cfx tag using Evaluate

2006-06-19 Thread Scott Arbeitman

I'm migrating a CF4 application which makes frequent use of cfx tags
(cfx_j tag, specifically, which calls Java classes). The syntax of a
cfx_j tag looks like this:



I'm trying to "wrap" cfx_j calls in a CFC method which takes as
arguments the class, method, and structure of arguments (like
argcollection for cfinvoke). I then hope to construct a string which is
a valid cfx_j call, and execute it using Evaluate. This should cause
some local variables to be set.

The problem is that you can't seem to put tag-like call into an
Evaluate function. I get this error:

ColdFusion was looking at the following text:

[cfaussie] Re: adobe RDS plugin generated cfcs

2006-05-25 Thread Scott Arbeitman

what about using an ORM framework like Reactor or ObjectBreeze?

I've heard of some good results doing things this way.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Any using Tartan Framework?

2006-05-22 Thread Scott Arbeitman

Any using Tartan? And why?

Can anyone explain what it does and where I can find a tutorial on it?

X-Google-Language: ENGLISH,ASCII-7-bit
Received: by 10.11.88.14 with SMTP id l14mr38116cwb;
Mon, 22 May 2006 00:04:47 -0700 (PDT)
X-Google-Token: cMEbiQwAAAB9_wFNWLKNQxvEQXPgH1g4
Received: from 203.20.153.128 by y43g2000cwc.googlegroups.com with HTTP;
Mon, 22 May 2006 07:04:47 + (UTC)
From: "Scott Arbeitman" <[EMAIL PROTECTED]>
To: "cfaussie" 
Subject: Any using Tartan Framework?
Date: Mon, 22 May 2006 00:04:47 -0700
Message-ID: <[EMAIL PROTECTED]>
User-Agent: G2/0.2
X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.3) 
Gecko/20060426 Firefox/1.5.0.3,gzip(gfe),gzip(gfe)
Mime-Version: 1.0
Content-Type: text/plain

Any using Tartan? And why?

Can anyone explain what it does and where I can find a tutorial on it?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: consuming web services with complex input types

2006-05-08 Thread Scott Arbeitman

doesn't really help. i could examine the wsdl and parse it, etc but
seems like a lot work. i need some like wsdl2java, but for cf. i know i
can use wsdl2java with cf, but am trying to avoid classpath dependacies.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] consuming web services with complex input types

2006-05-07 Thread Scott Arbeitman

Hi All,

Can anyone tell me a simple way to get a Struct "stub" that I can
examine and populate before sending it as an input to a web service.
Basically, I don't want to examine a WSDL file in order to know the
structure of my ColdFusion ... err ... structure. I would like do
something like this:
myStruct = createInputStruct("wsdl", "operation");


Then I can fill the struct, and call the webservice:



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Safari for Windows

2006-04-18 Thread Scott Arbeitman

try this: http://www.danvine.com/icapture/

this guy has a mac running and will screen capture on safari for you
site.

but very slow.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: regex resources (RE: [cfaussie] Re: RegEx brain fart)

2006-04-14 Thread Scott Arbeitman

my  preference for a task like this is to use xpath and treat html as
xml. if it's not xhtml then i would use jtidy to clean it up so it is.

then it's trivial to select all text nodes that are children of html,
your code is more self-documenting and easier to mantain.

i've written a super simple tag:






Charlie Arehart wrote:
> In the spirit of "teaching a man to fish", should anyone trip over RegEx
> problems in the future, here are a few resources to help with regular
> expressions.
>
>
>
> First, good ol' Ben Forta came out with a slim little book to help teach
> RegEx's, in "Teach Yourself Regular Expressions in 10 Minutes". It's
> available at Amazon at http://www.amazon.com/gp/product/0672325667/.
>
>
>
> Second, there are various tools to help you build RegEx's interactively,
> including
>
>
>
> http://weitz.de/regex-coach/
>
> http://www.regular-expressions.info/regexbuddy.html
>
>
>
> and still more listed at places like:
>
>
>
> http://www.larkware.com/RegexTools.html
>
> http://www.regular-expressions.info/
>
>
>
> Still another useful tool, which is helpful when one is searching for files
> having content (or names) matching a given regex, is a free (Windows) tool
> called Agent Ransack (http://www.agentransack.com
>  ). It's a freeware version of a commercial
> tool called File Locator Pro. I've blogged more details about it before:
>
>
>
> http://www.tipicalcharlie.com/a_better_file_findsearch_tool_on_windows.htm
>
>
>
> But even beyond using it for finding files, I sometimes call it up even when
> I'm not interested in building the RegEx for use in that tool just because I
> like its regular expression builder.
>
>
>
> Finally, for those who may wonder why one would care to learn about them,
> regular expressions can be used in many places, including such file finding
> tools, and in editors-including Dreamweaver MX, CF Studio, HomeSite+, and
> CFEclipse), and in CFML itself, in functions like REFind() and REReplace().
>
>
>
> /Charlie
>
>
>
>   _
>
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> Of Taco Fleur
> Sent: Thursday, April 13, 2006 5:44 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: RegEx brain fart
>
>
>
> thanks for the help guys, it works pretty smooth now.
>
> On 4/13/06, Tom Kerr <[EMAIL PROTECTED]> wrote:
>
>
> Hrm, don't have a current CF installation to test this against, but
> converting it to sed syntax worked.  It should not perform replacements
> on partial tag matches (as per your sometag example below).  I believe
> in CF you'd want:
>
> reReplaceNoCase( variables.htmlHighlightedContent,
>"(>[^<]*)(#variables.item#)([^<]*<)",
>"\1\2\3", "all" )
>
> I believe that the example that you said was ok, the one you were
> complaining was too slow in a seperate response, will only perform the
> replacement on the last matching case of the keyword in the string,
> rather than all of them as you seem to require.  This is (as Blair
> mentioned in his reply) because of the greedy matching nature of the .*
> construct.  Anybody able to confirm these two points?
>
> Most regex implementations have modifiers to produce a lazy .* match,
> and I assume CF has the same but no idea what the syntax is.  In general
> I find that they complicate your expression more often than they
> simplify it anyway.
>
> cheers,
>
> -T
>
> On Thu, Apr 13, 2006 at 04:09:59PM +1000, Taco Fleur wrote:
> > this one produces output like
> >
> > Visual Basic/span>
> >
> > lets not forget that the word could also be part of a tag, i.e.
> >
> >  and the word searched for is "tag"
> >
> >
> > On 4/13/06, Tom Kerr <[EMAIL PROTECTED]> wrote:
> > >
> > >
> > > I believe that should have been ">[^<]*(#variables.item#)[^<]*<".  It
> > > might also break if it's possible for variables.item to contain the '<'
> > > character.
> > >
> > > HTH.
> > >
> > > -T
> > >
> > > On Thu, Apr 13, 2006 at 02:16:16PM +1000, Taco Fleur wrote:
> > > > Almost,
> > > > it created the following output, which is a bit of a mess:
> > > >
> > > > PHP>
> > > >
> > > >
> > > > On 4/13/06, Blair McKenzie <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > > If you left the body tags around the content (or div or something)
> > > this
> > > > > regex should only select keywords that are outside of a tag's <>.
> > > > > ">[^<]*(#variables.item#)[^>]*<"
> > > > >
> > > > > So: Select the keyword if there is no tag opening char between it
> and
> > > the
> > > > > last tag close, and there is no tag closing char between it and the
> > > next tag
> > > > > open.
> > > > >
> > > > >
> > > > >
> > > > > On 4/13/06, Taco Fleur <[EMAIL PROTECTED]> wrote:
> > > > > >
> > > > > >  To split up the html
> > > > > >
> > > > > > variables.result = reFindNoCase( "]+>(.+)",
> > > > > > variables.htmlContent, 1, true );
> > > > > > variables.htmlContentHeader = left( variables.htmlContent,
> > > result.pos[ 2
> > > > > > ] );
> > > > > > variables.htmlContentBody = mid( vari

[cfaussie] Re: Verity operators are great - but what are they in Arabic/french/german/chinese???

2006-04-13 Thread Scott Arbeitman

you could use a translation web service. here's one google found:

http://www.restlessdelusions.com/projects/services/translate/translate.asmx

I would cache the results somewhere.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Count keywords found

2006-04-12 Thread Scott Arbeitman

I know Verity supports it's own query language (VQL, I believe) which
is made for doing these kinds of things. Not sure if you can
specifically do this thing.

Don't if the version of Verity that comes with CF allows you to hook
into it's VQL ability, but my guess would be it does.

Also coming to mind would be doing queries in memory from a master
query. You could do this in a loop. I think Macromedia suggests 50,000
is a good max for a query in memory.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Converting HTML to PDF an retaining anchors

2006-04-04 Thread Scott Arbeitman

doesn't cfdocument do this?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: License Keys

2006-04-04 Thread Scott Arbeitman

hey dale,

i rememer using a tag in the jakarta jsp taglibs  that will generate
random strings. this hooks into coldfusion nicely.

having said that, you might be better off hasing something related to
the encoded data and pulling the first n digits.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Checking existence of cookies

2006-03-29 Thread Scott Arbeitman

i'd do it javascripty, myself. he's a func from apple's site:

function testCookies() {
 var exp = new Date();
 exp.setTime(exp.getTime() + 180);
 // first write a test cookie
 setCookie("cookies", "cookies", exp, false, false, false);
 if (document.cookie.indexOf('cookies') != -1) {
   alert("Got Cookies!");
 }
 else {
alert("No Cookies!");
 }
 // now delete the test cookie
  exp = new Date();
  exp.setTime(exp.getTime() - 180);
  setCookie("cookies", "cookies", exp, false, false, false); 
 }


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Problem creating PDF from CFMX7 output

2006-03-13 Thread Scott Arbeitman

Where are you saving the file? Can you try creating it in the temp
directory? That's what I usually do.

You save it by putting a filename attribute in the cfdocument tag,
right?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: VIC User Group

2006-03-07 Thread Scott Arbeitman

can i be on the new list too?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] invoking CFCs via GET

2006-02-09 Thread Scott Arbeitman

for an ajax app, i was using CFC methods to return some xml. these are
invoked by accessing them as urls. problem is, coldfusion always sets
the content-type of the response as html, even if you specify the
return type as xml. ie doesn't like this.

if i use cfheader to set the type (should i be using cfcontent?), it
works fine. but if one day i decide to invoke these methods in another
way, i can't.

what can i do to make the solution more general?



[cfaussie] Re: File Properties

2006-02-06 Thread Scott Arbeitman

found this a while back. in german, but documentation is in english.
plus relies on COM. don't know if that's a problem.

http://www.cfug-nord.de/2005/11/21/filesystemobject-cfc-v10-veroffentlicht/