[cfaussie] [Ann] World's Largest Flex Application

2006-06-21 Thread Chris Velevitch

Robin Hilliard of Rocketboots (www.rocketboots.com.au) will talk about
the lessons learnt from the world's largest Flex (1.5) application.

Mon 3rd July at the Sydney Flash Platform Developers Group
(www.flashdev.org.au) at 6:30 pm for 7pm start at the NSW Sports Club
(www.flashdev.org.au/venue).

Please RSVP (www/flashdev.org.au/rsvp) for catering purposes.


Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
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] Clearing Cookies

2006-06-21 Thread Dale Fraser








We have this code in application.cfc, I know what it
does but can anyone tell me if this would work in onSessionStart rather than
onRequestStart



 cffunction name=onRequestStart returntype=boolean output=false

 !--- Set Session Cookies To Expire When Browser
Is Closed ---

 cfif IsDefined(Cookie.CFID) AND IsDefined(Cookie.CFTOKEN)

 cfset cfId_local = Cookie.CFID

 cfset cftoken_local = Cookie.CFTOKEN

 cfcookie name=CFID value=#cfId_local#

 cfcookie name=CFTOKEN value=#cftoken_local#

 /cfif

 

 cfreturn true /

 /cffunction



Regards
Dale Fraser








--~--~-~--~~~---~--~~
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] Re: Enforcing Array Uniformity

2006-06-21 Thread Mark Mandel

If you want to do this, you should write a Collection.cfc for that
specific CFC type.

So if I wanted a collection of dogs, I would have a DogCollection.cfc,
that had methods like:

add(dog : DOG)
remove(dog : DOG)
has(dog : DOG)
getArray() : Array

etc

Mark

On 6/22/06, Scott Arbeitman [EMAIL PROTECTED] wrote:

 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.


 



-- 
E: [EMAIL PROTECTED]
W: www.compoundtheory.com
ICQ: 3094740

--~--~-~--~~~---~--~~
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: OT: what Eclipse DB plugin do you use (for SQLServer)?

2006-06-21 Thread Greg Stewart

Hi Chris,
I just downloaded rc7 and the latest stable build of CFeclipse and so
far it all seem to be running just fine. Are you aware of any issues?

On 6/20/06, Chris Velevitch [EMAIL PROTECTED] wrote:

 On 6/20/06, Greg Stewart [EMAIL PROTECTED] wrote:
  As far as I can tell cfeclipse (well at least the BER release) works
  really nicely with 3.2 RC4.

 Have you tried it with 3.2 RC7 (2 Jun)?


 Chris
 --
 Chris Velevitch
 Manager - Sydney Flash Platform Developers Group
 www.flashdev.org.au

 



-- 
e: greg.stewart(a)gmail.com
w: http://gregs.tcias.co.uk/

--~--~-~--~~~---~--~~
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] DHTML JS help

2006-06-21 Thread Andrew Scott


Has anyone got a bit of JS code that gets the size of a div element that has
had dynamic content added using HTTPRequest, and able to center another div
inside this one?

I am having a huge brain fart today, it seems easy but either I am doing
something wrong or IE doesn't like me today:-)


 
 
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273
 


--~--~-~--~~~---~--~~
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 JS help

2006-06-21 Thread Blair McKenzie
Element.offsetWidth should provide the adjusted width of an element. I think the standard way to center a div is to set the left and right margins to auto.BlairOn 6/22/06, 
Andrew Scott [EMAIL PROTECTED] wrote:
Has anyone got a bit of JS code that gets the size of a div element that hashad dynamic content added using HTTPRequest, and able to center another divinside this one?I am having a huge brain fart today, it seems easy but either I am doing
something wrong or IE doesn't like me today:-)Senior Coldfusion DeveloperAegeon Pty. Ltd.www.aegeon.com.auPhone: +6138676 4223Mobile: 0404 998 273

--~--~-~--~~~---~--~~
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: OT: Web Based DNS service

2006-06-21 Thread Darren Tracey

mydomains.com should do the trick for you.
You can manage domains there for free. More advanced options start to
cost you, but its pretty cheap.
The service is fantastic. I've been using them to manage a bunch of
domains and some quite complex mail forwarding (all for free) now for
many, many years and have loved the service the entire time.


--~--~-~--~~~---~--~~
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 JS help

2006-06-21 Thread Andrew Scott








Oh, and here I am trying to get the width
and height of the div to be centered dividing the width adding and subtracting
the normal wayL









Senior Coldfusion Developer

Aegeon Pty. Ltd.

www.aegeon.com.au

Phone:+613 8676 4223

Mobile: 0404 998 273













From:
cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Blair McKenzie
Sent: Thursday, 22 June 2006 11:11
AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: DHTML
 JS help





Element.offsetWidth
should provide the adjusted width of an element. I think the standard way to
center a div is to set the left and right margins to auto.

Blair



On 6/22/06, Andrew
Scott [EMAIL PROTECTED]
wrote:



Has anyone got a bit of JS code that gets the size of a div element that has
had dynamic content added using HTTPRequest, and able to center another div
inside this one?

I am having a huge brain fart today, it seems easy but either I am doing 
something wrong or IE doesn't like me today:-)




Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +6138676 4223
Mobile: 0404
998 273 










--~--~-~--~~~---~--~~
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 JS help

2006-06-21 Thread Tom Kerr

That's what the standard says.  Everybody but Microsoft agree. ;)
Luckily MS broke something else that lets you achieve what you want.

Quick summary:

The standards -
left and right margins auto, on a block element:
centered within parent block

parent block has text-align center:
text-align should only affect inline elements, no effect

IE -
left and right margins auto, on a block element:
Margin?  What's a margin?

parent block has text-align center:
the child block will be centre aligned

Quick example:

style:
div {
border: 1px solid blue; /* so we can see what's going on */
}

#outer {
padding: 20px;
text-align: center; /* accomodate IE randomness */
}

#inner {
width: 80px;
height: 80px;
margin: 0 auto; /* bring #inner to the centre */
text-align: left; /* bring everything inside back to normal */
}


markup:
div id=outer
div id=innerThis text should be properly left aligned./div
/div


On Thu, Jun 22, 2006 at 11:10:41AM +1000, Blair McKenzie wrote:
 Element.offsetWidth should provide the adjusted width of an element. I think
 the standard way to center a div is to set the left and right margins to
 auto.
 
 Blair
 
 On 6/22/06, Andrew Scott [EMAIL PROTECTED] wrote:
 
 
 
  Has anyone got a bit of JS code that gets the size of a div element that
  has
  had dynamic content added using HTTPRequest, and able to center another
  div
  inside this one?
 
  I am having a huge brain fart today, it seems easy but either I am doing
  something wrong or IE doesn't like me today:-)
 
 
 
 
  Senior Coldfusion Developer
  Aegeon Pty. Ltd.
  www.aegeon.com.au
  Phone: +613  8676 4223
  Mobile: 0404 998 273
 
 
 
  
 
 
 
 

--~--~-~--~~~---~--~~
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: OT :PayPal

2006-06-21 Thread cfgroupie

Hi Steve,

I concur eith Lucas. I to have setup paypal. Rather funny I bought a
premade CFC which does it and in the end I ended up righting one from
scratch. hehehe. 

Jeremy


--~--~-~--~~~---~--~~
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: OT: Web Based DNS service

2006-06-21 Thread Dale Fraser

Does this require you delegate the domains to them.

I really only want someone who can do DNS management without being my
registrar since I'm happy with my current registrar.

Couldn't see anything on their site that allowed that. And I don't think
they handle .au domains.

Regards
Dale Fraser



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Darren Tracey
Sent: Thursday, 22 June 2006 11:12 AM
To: cfaussie
Subject: [cfaussie] Re: OT: Web Based DNS service


mydomains.com should do the trick for you.
You can manage domains there for free. More advanced options start to
cost you, but its pretty cheap.
The service is fantastic. I've been using them to manage a bunch of
domains and some quite complex mail forwarding (all for free) now for
many, many years and have loved the service the entire time.




--~--~-~--~~~---~--~~
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: OT: Web Based DNS service

2006-06-21 Thread Andrew Mercer
I use http://www.zoneedit.com/ for my home network.On 6/22/06, Dale Fraser 
[EMAIL PROTECTED] wrote:












Hi,



Anyone use a web based DNS service to manage domain
names. I need to manage about 10-20 domains, so something that supports
multiple domains rather than pay per domain would be good.



Regards
Dale Fraser
















--~--~-~--~~~---~--~~
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: OT: Web Based DNS service

2006-06-21 Thread Dale Fraser








Yeah,



I saw them, the website looks so unprofessional I
discounted them, Ill have another look.



Regards
Dale Fraser











From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Mercer
Sent: Thursday, 22 June 2006 12:39
PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Web
Based DNS service





I use http://www.zoneedit.com/ for my home
network.





On 6/22/06, Dale
Fraser  [EMAIL PROTECTED]
wrote:







Hi,



Anyone use a web based DNS service to manage domain names. I
need to manage about 10-20 domains, so something that supports multiple domains
rather than pay per domain would be good.



Regards
Dale Fraser























--~--~-~--~~~---~--~~
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: OT: Web Based DNS service

2006-06-21 Thread Guennadi Moukine



Definitely zoneedit.
They've been around for years and years. We've been using 
them for some of the domains since 2000. they are very reliable and you can have 
5 domain zones with them for free.

Guennadi M
www.fasthit.ent


  
  
  From: cfaussie@googlegroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Dale 
  FraserSent: Thursday, June 22, 2006 10:44 AMTo: 
  cfaussie@googlegroups.comSubject: [cfaussie] Re: OT: Web Based DNS 
  service
  
  
  Yeah,
  
  I saw them, the website 
  looks so unprofessional I discounted them, Ill have another 
  look.
  
  RegardsDale 
  Fraser
  
  
  
  
  From: cfaussie@googlegroups.com 
  [mailto:[EMAIL PROTECTED] On 
  Behalf Of Andrew MercerSent: Thursday, 22 June 2006 12:39 
  PMTo: 
  cfaussie@googlegroups.comSubject: [cfaussie] Re: OT: Web Based DNS 
  service
  
  I use http://www.zoneedit.com/ for my home 
  network.
  
  On 6/22/06, Dale Fraser  [EMAIL PROTECTED] 
  wrote:
  
  
  
  Hi,
  
  Anyone use a web based DNS 
  service to manage domain names. I need to manage about 10-20 domains, so 
  something that supports multiple domains rather than pay per domain would be 
  good.
  
  RegardsDale 
  Fraser
  
  
  
  
--~--~-~--~~~---~--~~
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] TONIGHT : Melbourne Coldfusion Design and Development User Group Meeting (Was CFUG)

2006-06-21 Thread Steve Onnis




With the merger complete between Macromedia into 
Adobe, a new User Group has been formed to roll the ColdFusion User Group and 
Macromedia User Group in a super group called the ColdFusion Design and 
Development User Group. This new group will not only cover the 
"classic" ColdFusion development topics, but will also begin to cover other 
developer and design products such as FLASH, Photoshop, PDF development and 
other Adobe products. Moving away from our past core audience of developers, we 
will be looking at expanding into the design audience introducing them to 
website development techniques and introducing developers to the design product 
set, giving everyone something to look forward to.
Our next 
scheduled meeting for the Victorian ColdFusion Design and Development User Group 
will be Thursday, the 22nd of June, at VTR Consulting starting at 7:00pm. 
VTR 
Consulting has moved and is now 
located at Level 2, 212 Barkly Street, St Kilda.
Special guest presenter Mark Mandel, 
will be giving us all a run down on his open source project "Transfer Object 
Relational Mapping" library for ColdFusion.
Transfer automates the process of writing a Data 
Access Object and Business Object code by generating Business Objects on the fly 
and automating the SQL for creating, reading, updating and deleting these 
objects.
The presentation will look at what an Object 
Relational Mapping tool does, the capabilities of Transfer, how to use it, and a 
small example application. Visit http://www.compoundtheory.com/transfer/ to check out what itÂ’s all about.
We will also be taking a look at using Video in FLASH 
and a short FLASH Remoting primer for those people who are looking at embarking 
on using FLASH and ColdFusion together.
The introduction of a short but sweet Tips and Tricks 
segment will be our closing. This segment is designed to shed some light on some 
cool program shortcuts and tricks to make developing and designing that much 
faster. This meeting we will be looking at some nifty Adobe Photoshop shortcuts 
to make your life easier.
As always there will be giveaways, giveaways and more 
giveaways including books, t-shirts and webDU merchandise from the last webDU 
Conference in Sydney.After the meeting we can go to one of the many 
pubs/cafes nearby for a drink or a feed. 
Just a reminder about the CFAUSSIE lists, anyone who 
isn't registered should be. It's the best place to get help or even just have a 
rant:PGo to the cfaussie 
google group to 
register.
To subscribe to the , 
send an email to [EMAIL PROTECTED]with 
SUBSCRIBE in the subject line.
Hope to see you there.
NOTE : If you are 
seeing this message in plain text format, visthttp://www.cfcentral.com.au/index.cfm?section=7Category=22EventID=5viewmode=eventDetailsfor 
full details including map of meeting location.

Regards
Steve Onnis
Victorian CFUG 
Manager
--~--~-~--~~~---~--~~
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] Path to the site root directory

2006-06-21 Thread Scott Thornton

Hello,

Is there a programmatical way of returning the root directory of the website, 
regardless of the current page's location within the site?

eg

The site http://mysite/somepage.cfm = c:\mysites\application\
the site http://mysite/admin/somepage.cfm = c:\mysites\application\

Currently this location is stored in the database... but I don't think this is 
the best method







Scott Thornton, Programmer
Application Development
Information Services and Telecommunications
Hunter-New England Area Health Service
p: +61 02 49213589
m: 0413800242



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---