[cfaussie] Flash Charts

2007-04-10 Thread KNOTT, Brian
I'm creating flash charts and they have that nice function where the bar graphs grow. Is there any way to turn this off as its now becoming anoying. Brian --- This e-mail is sent by Suncorp-Metway Limited ABN 66 010

[cfaussie] Re: CF8 :: Australian Tour?

2007-04-10 Thread Mike Kear
I wouldnt brag too much Scott. I'm a Microsoft Partner and i'm still waiting to see an invitation to preview and prepare for the sale of Vista. 5 phone calls to the partner unit has come to nothing. But you're right - if they want us to sell up CF8, they'd better be organising some launch

[cfaussie] Re: Flash Charts

2007-04-10 Thread Dale Fraser
Format = png Regards Dale Fraser http://dale.fraser.id.au/blog _ From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian Sent: Tuesday, 10 April 2007 4:09 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Flash Charts I'm creating flash

[cfaussie] Re: Flash Charts

2007-04-10 Thread Steve Onnis
Why don't you just make them PNG format? Otherwise there is a config process where you can turn them off. You need to use the [cfinstall]\charting\webcharts.bat tool to creates an XML file and add a style attribute to your chart and load the xml into it. _ From:

[cfaussie] Re: CF8 :: Australian Tour?

2007-04-10 Thread Scott Barnes
Oh? We've done the national roadshow tour of LOVE (Launch Office Vista Exchange). I'm concerned that a partner didn't get the invite as that's usually the easiest part for us, getting you to the actual venue - well that's anothe story. hell, chuck (co-worker) is even in Hobart doing the launch

[cfaussie] Re: Heaps of CF work in the ACT?

2007-04-10 Thread Shane Farmer
On 4/10/07, Dale Fraser [EMAIL PROTECTED] wrote: You are implying that you know what's in the NDA thus disclosing you have read it and thus informing us that you too are on the beta. I knew about the strictness of the NDA during the CF 7 beta days without being a part of the beta program :-)

[cfaussie] Re: Heaps of CF work in the ACT?

2007-04-10 Thread Peter Tilbrook
CF7 is so Feb 2005. The public beta for CF8 should open within the next 12 hours starting with Beta 2. Visit https://prerelease.adobe.com/callout/apply.html?callid=%7BE9F64ADB-DADA-485E-BFFE-60E0D783EBEF%7D to sign up if you haven't done so already.

[cfaussie] Re: CF8 :: Australian Tour?

2007-04-10 Thread M@ Bourke
I wonder what spin they'll put on it this time. the most significant release of ColdFusion yet has been what they have used for the last 4 versions lol. Or maybe they'll do a microsoft sell and say the whole code base has been rewritten from scratch I remember when microsoft said that about one

[cfaussie] Re: CF8 :: Australian Tour?

2007-04-10 Thread Peter Tilbrook
Darren Tracey and co had a great launch (with Tim Buntel also). I would have done the same for ACT but was up there at the time. It was good. Very good. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie

[cfaussie] CF reports different length than JS

2007-04-10 Thread Taco Fleur
Hi all, I'm doing some server-side checking as well as client-side, and am finding that CF7 reports a different length of characters than JavaScript does. Not sure about the internals of both functions, but am hoping I can sort of get the two in sync. Anyone any ideas? len() VS obj.value.length

[cfaussie] Re: Flash Charts

2007-04-10 Thread Pat
thats funny you want them turned off that was a selling point for us to move some of our customers on to cf7. They all went 'oh' when they saw the bars animate :) On Apr 10, 4:13 pm, Steve Onnis [EMAIL PROTECTED] wrote: Why don't you just make them PNG format? Otherwise there is a config

[cfaussie] Re: CF reports different length than JS

2007-04-10 Thread Andrew Scott
Steve, I thought that IE was the same and that a return was \n, I know I use that in JS all the time and it never complains, and works as expected. But Taco, yeah an example string would be good. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613

[cfaussie] Re: CF reports different length than JS

2007-04-10 Thread Taco Fleur
It is actually Firefox that creates the problem. I just tested it and IE is OK with the following random string. IE reports 400 chars and Firefox reports more, so it must be what Steve says and it uses \n\n for new lines. I guess we'll have to do some regex replacing, hmm wonder how this is going

[cfaussie] Re: CF reports different length than JS

2007-04-10 Thread Steve Onnis
textarea id=str /textarea br / script document.write(Length : + document.getElementById(str).value.length + br /); for (i=0; i document.getElementById(str).value.length; ++i) { document.write(Char Code at position + i + : + document.getElementById(str).value.charCodeAt(i) + br /); }

[cfaussie] Re: CF reports different length than JS

2007-04-10 Thread Taco Fleur
Hi, No I don't have it installed, but will give it a go... On 4/11/07, Andrew Scott [EMAIL PROTECTED] wrote: Taco, Do you have firebug installed in FF? Might pay to use that to check the string out. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au

[cfaussie] Re: CF reports different length than JS

2007-04-10 Thread Taco Fleur
Andrew, installed firebug, not sure how to check the string out, any tips? On 4/11/07, Andrew Scott [EMAIL PROTECTED] wrote: Taco, Do you have firebug installed in FF? Might pay to use that to check the string out. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd.

[cfaussie] Re: CF reports different length than JS

2007-04-10 Thread Andrew Scott
Ok you have a number of options, in this case you could create a dive and use DHMTL to place the string into the div then use the inspect to view the data inside the div. I use dojo and it has a brilliant debug option which not only shows the string but it as an object, which shows \n\n\n String