You have it a little flip-flopped.
To make variables available to the custom tag, pass them as attributes of
the custom tag. The caller scope is used inside of the custom tag to pass
any values back to the calling page. Then those variables are available as
local (Variables) scope variables.
For example, the below example would output "value2"
<!---your calling page--->
<cf_yourcustomtag variable1="somevalue">
<cfoutput>
#testvar#
</cfoutput>
<!---your custom tag --->
<cfset caller.testvar = "value2">
<cfset testvar = "value1">
----- Original Message -----
From: "Russel Madere" <[EMAIL PROTECTED]>
To: "CF Talk Mailing List" <[EMAIL PROTECTED]>
Sent: Tuesday, May 09, 2000 9:48 AM
Subject: CF Guru help needed - Caller Scope questions
> What are the ramifiactions of using the Caller Scope in a Custom tag? Are
> all of the calling template's variables passed to the custom tag? Also,
are
> the actual variables passed or is just pointers to the variables?
>
> Russel Madere, Jr.
> Web Developer
>
> "Be good and you will be lonesome.
> Be lonesome and you will be free.
> Live a lie and you will live to regret it."
> Jimmy Buffett
> That's What Living Is To Me
>
> --------------------------------------------------------------------------
----
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.