Re: [cfaussie] Re: MAD! Melbourne Adobe Developers Meeting Feb 16 2012 StageWebView (AIR), Backbone (JS)

2012-02-15 Thread Mark Mandel
Amost there Sent from my mobile doohickey. On Feb 16, 2012 6:13 PM, "Rawdyn" wrote: > Very disappointed I won't be able to make it tonight. I really wanted > to see these presentations. > > Has anyone looked at the possibility of remote access to these > meetings? > Even something as basic as st

[cfaussie] Re: MAD! Melbourne Adobe Developers Meeting Feb 16 2012 StageWebView (AIR), Backbone (JS)

2012-02-15 Thread Rawdyn
Very disappointed I won't be able to make it tonight. I really wanted to see these presentations. Has anyone looked at the possibility of remote access to these meetings? Even something as basic as sticking a phone on the desk and connecting through Google Hangouts would be enough. Just a thought

Re: [cfaussie] Re: cfchart

2012-02-15 Thread Simon Haddon
The best thing to do is don't use the cfchart tag and integrate directly with the java api. So much more you can do. All you need to do is learn how to build the style sheets using the cfchart tool. On 14 February 2012 20:36, ColdGen Internet Solutions < coldgen.internet.soluti...@gmail.com> wrot

[cfaussie] Re: MAD! Melbourne Adobe Developers Meeting Feb 16 2012 StageWebView (AIR), Backbone (JS)

2012-02-15 Thread Gavin Baumanis
I'll be here! -- You received this message because you are subscribed to the Google Groups "cfaussie" group. To view this discussion on the web visit https://groups.google.com/d/msg/cfaussie/-/BA5NLMPAH5YJ. To post to this group, send email to cfaussie@googlegroups.com. To unsubscribe from this

Re: [cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Andrew Myers
I use them interchangeably Charlie. It even together. My kids are so good at it they 'whinge and whine' all day! Sent from my mobile On 16/02/2012, at 2:21 PM, "charlie arehart" wrote: > Yeah, leave such whining to me. :-) Thinking of my note earlier today. > Groan. Sorry 'bout that, folks.

[cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Andrew
Nice - that looks like a better solution because I don't have to create a *&^%ing custom function and then include it everywhere I want it. Thanks! On Feb 16, 2:13 pm, MrBuzzy wrote: > I think you were on the right track with .getTime() > > I tried your SYSDATE example and was able to get the de

RE: [cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread charlie arehart
Yeah, leave such whining to me. :-) Thinking of my note earlier today. Groan. Sorry 'bout that, folks. Actually, don't you guys say "whinging" anyway? :-) /charlie > -Original Message- > From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On > Behalf Of Andrew Myers > Sen

Re: [cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread MrBuzzy
I think you were on the right track with .getTime() I tried your SYSDATE example and was able to get the desired result with; lsparsedatetime(qry.sysdate).getTime() I also tried casting the date in the SQL, but the above works (for SYSDATE at least) On 16/02/2012, at 13:02, Andrew Myers wrote

[cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Andrew
Solved: select sysdate from dual #getTimeInMillis(q.sysdate)# Passing it to that function seems to "cast" it to a date type (even though IsDate(q.sysdate) returns YES...) *grumble grumble* -- You received this message because you are subscribed to the Google Gro

[cfaussie] REMINDER: TONIGHT - MAD! Melbourne Adobe Developers Meeting Feb 16 2012 StageWebView (AIR), Backbone (JS)

2012-02-15 Thread Peter Robertson
For details please see: http://tinyurl.com/6m9rn32 If you haven't RSVPed, please reply to this (or the original) post. See you there! Peter Robertson Co-Manager Melbourne Adobe Developers Steve Onnis Manager Melbourne Adobe Developers -- You received this message because you are subscribe

[cfaussie] Re: MAD! Melbourne Adobe Developers Meeting Feb 16 2012 StageWebView (AIR), Backbone (JS)

2012-02-15 Thread Devon Borysiewicz
I'm coming. On Feb 13, 11:00 am, Peter Robertson wrote: > StageWebView  by Brendan Owen > > Using StageWebView integrated into an AIR application and compiled as > a native App.  StageWebView is the name of a class that displays the > native browser of the mobile device without leaving your nativ

Re: [cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Andrew Myers
I think I'll just do what i was initially trying to do and write a function that creates a Java date and be done with it. In fact if I'd have stopped whining and just written the damn thing id be on to the next problem by now :) On 16/02/2012, at 12:43 PM, "Steve Onnis" wrote: > CreateDate()

RE: [cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Steve Onnis
CreateDate() ? -Original Message- From: Andrew [mailto:am2...@gmail.com] Sent: Thursday, 16 February 2012 12:40 PM To: cfaussie Subject: [cfaussie] Re: Convert cf date to milliseconds since the epoch? Hmm not that simple. The dates are coming from a query, and .getTime() appears not to

RE: [cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Steve Onnis
I wasn’t born until 1975. Maybe they should change it to start from then :) -Original Message- From: Andrew [mailto:am2...@gmail.com] Sent: Thursday, 16 February 2012 12:33 PM To: cfaussie Subject: [cfaussie] Re: Convert cf date to milliseconds since the epoch? 1/1/1970 is the Unix "epo

[cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Andrew
Hmm not that simple. The dates are coming from a query, and .getTime() appears not to be valid, for example: select sysdate from dual #q.sysdate.getTime()# Error: The getTime method was not found. Either there are no methods with the specified method name and argument types or the

[cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Andrew
1/1/1970 is the Unix "epoch" date - it's pretty widely used. Obviously nothing interesting ever happened before then...? ;-) But seriously - I've always wondered how dates prior to that represented? As negative numbers? On Feb 16, 12:27 pm, "Steve Onnis" wrote: > Why 1970? That seems a littl

[cfaussie] Re: Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Andrew
Umm, okay this works: #now.getTime()# Always missing the obvious! On Feb 16, 12:24 pm, Andrew wrote: > This is sort of related to my graphing question from the other day. > > I'm using Flot and the times need to be expressed as milliseconds > since January 1, > 1970 00:00:00. > > In Java you

RE: [cfaussie] Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Steve Onnis
Why 1970? That seems a little odd. You could do DateAdd("y", 1970, yourdate) ? -Original Message- From: Andrew [mailto:am2...@gmail.com] Sent: Thursday, 16 February 2012 12:25 PM To: cfaussie Subject: [cfaussie] Convert cf date to milliseconds since the epoch? This is sort of related to

[cfaussie] Convert cf date to milliseconds since the epoch?

2012-02-15 Thread Andrew
This is sort of related to my graphing question from the other day. I'm using Flot and the times need to be expressed as milliseconds since January 1, 1970 00:00:00. In Java you can call .getTime() on a function to do this. Does CF provide a simple way to either: * Convert a cf date to time in

Re: [cfaussie] Re: cfchart

2012-02-15 Thread ColdGen Internet Solutions
See a comparison here: https://www.facebook.com/peter.tilbrook Have been in the building since June last year so just how out of date Google Maps is for Canberra (Australia's national capital) is a worry... Peter Tilbrook Web Administrator, The Club Group Pty. Ltd. Managing Director, ColdGen Int

Re: [cfaussie] Re: cfchart

2012-02-15 Thread ColdGen Internet Solutions
Am looking into using NearMap (www.nearmap.com) as opposed to the seriously out of date GoogleMaps. Sure the CFMAP tag is handy but when the building I've been working in for the last 8 months still shows up as a construction site something is seriously wrong. NearMap has an API that should be eas

RE: [cfaussie] Re: cfchart

2012-02-15 Thread charlie arehart
Thanks, Brett. That's an.interesting.way to look at it. :-) I suppose I see that benefit. And if at least others did mention it when such questions came up, I'd be happy to see that. Otherwise it seems I'm usually the only one (on this and other lists), even when I wait a couple of days to see if

Re: [cfaussie] Re: cfchart

2012-02-15 Thread ColdGen Internet Solutions
It's a great resource Charlie - a "hidden GEM"! Cheers! Peter Tilbrook Web Administrator, The Club Group Pty. Ltd. Managing Director, ColdGen Internet Solutions Professional Adobe ColdFusion 9 Application Development President, ACT and Region ColdFusion Users Group PO Box 2247 Queanbeyan, NSW, 26