How do I call my handler from within a Tell Block?

So I have this script here in which I am trying to call a custom handler called “addReminder”


	tell application "Safari"
		set tabname to get name of current tab of window 1
		set taburl to get URL of current tab of window 1
		addReminder(tabname, taburl )		
	end tell

However I get this error “error “Safari got an error: Can’t continue addReminder.” number -1708”

So my question is how can I call one of my custom handlers while with an Tell block?

A reference to me is enough:

addReminder(tabname, taburl )	 of me
my addReminder(tabname, taburl )	
me's addReminder(tabname, taburl )	

so your code would look like:

	tell application "Safari"
		set tabname to get name of current tab of window 1
		set taburl to get URL of current tab of window 1
		my addReminder(tabname, taburl )		
	end tell

Awesome! Thanks for the fast response!