Is there a way to explicitly reference the THIS scope defined in Application.cfc?
Say I have an Application.cfc like this:
component {
this.name="MyApplication"
..
I know that from any page in the site, you can access this.name this way...
<cfoutput>#this.name#</cfoutput>
...but if you are in another component, how would you reach the Application.cfc's "this" scope? Is it possible without handing the var off?
Adobe documentation says that you can reference the "THIS" scope by using the instance or object name as a prefix. I tried Application.this.name but it didn't work.