Hi All,
I have my tableView set up with magic bindings. It works great but how do I access values in the table?
I set up an array controller “Backupset” and made the script the outlet .
Should I be asking the table or the array controller?
script backupAppDelegate
	property parent : class "NSObject"
	property Backupset : missing value
	property Sourcefile : missing value
	
	-- IBActions ( button clicks ) 
   
	on testclick_(sender)
		set mySelectedObjects to Backupset's selectedObjects_()
		set objCount to count of mySelectedObjects
		display dialog "" & objCount & ""
	end testclick_
Rob

 robdut:
 robdut: