Agreed, I love Fusebox too






Neil Clark
Team Macromedia
http://www.macromedia.com/go/team

Announcing Macromedia MX!! 
http://www.macromedia.com/software/trial/




-----Original Message-----
From: Peter Tilbrook [mailto:[EMAIL PROTECTED]] 
Sent: 05 June 2002 09:58
To: CF-Talk
Subject: RE: unscoped variables

Yeah. I just found that NOT using an "application.cfm" file on a
multi-site
server was problematic. Fusebox is still a great dev standard though,

==
Peter Tilbrook
Macromedia ColdFusion Applications Developer
4/73 Tharwa Road
Queanbeyan, NSW, 2620
AUSTRALIA

Phone: (02) 6284 2727
Mobile: 0401 973 415
Email: [EMAIL PROTECTED]

-----Original Message-----
From: Neil Clark - =TMM= [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 5 June 2002 6:23 PM
To: CF-Talk
Subject: RE: unscoped variables


Silly question :-)

Yes it does.   The Fusebox method doesn’t really adopt anything per say
its just an include AFAIK.















Neil Clark
Team Macromedia
http://www.macromedia.com/go/team

Announcing Macromedia MX!!
http://www.macromedia.com/software/trial/




-----Original Message-----
From: Peter Tilbrook [mailto:[EMAIL PROTECTED]]
Sent: 05 June 2002 09:20
To: CF-Talk
Subject: RE: unscoped variables

Does CFMX still use the application.cfm file? Or can you adopt an
alternative like Fusebox instead?

Silly question?

==
Peter Tilbrook
Macromedia ColdFusion Applications Developer
4/73 Tharwa Road
Queanbeyan, NSW, 2620
AUSTRALIA

Phone: (02) 6284 2727
Mobile: 0401 973 415
Email: [EMAIL PROTECTED]

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 5 June 2002 1:24 AM
To: CF-Talk
Subject: RE: unscoped variables


all unscoped variables are part of the variables scoped.

<cfset temp = "testing">
<cfoutput>#temp#</cfoutput>

is also

<cfoutput>#variables.temp#</cfoutput>

this happens no matter what page it is set on, includeing the
application.cfm. if you want a variables to be in the appliction scope,
you
have to deliberatly set it there:

<cfset application.temp = "testing">
<cfoutput>#application.temp#</cfoutput>

Anthony Petruzzi
Webmaster
954-321-4703
[EMAIL PROTECTED]
http://www.sheriff.org


-----Original Message-----
From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 11:12 AM
To: CF-Talk
Subject: Re: unscoped variables


If they are created in the Application.cfm page, they are application
variables (application.whatever)

Paul Giesenhagen
QuillDesign

----- Original Message -----
From: <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, June 04, 2002 10:04 AM
Subject: unscoped variables


> I'm trying to clean up some code on an old application.  If there are
> currently unscoped variables defined using cfset on an application.cfm
page,
> what scope are these created in?
>
> Thanks!
>
>
>





______________________________________________________________________
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to