Show Running Apps In Table

How would I possibly get all of the currently running apps show up inside a table. Just the names of the apps and no file path or anything, only names.

Thank you for your help.

Hi HarryCaray

this will return a list of applications

do shell script "ls /Applications"
get paragraphs of result
choose from list (result)

hope this helps
Budgie

This will populate a table in the window entitled “main” with every process that is currently running:

set content of table view 1 of scroll view 1 of window "main" to GetEveryProcess()
to GetEveryProcess()
	tell application "System Events"
		get name of every process
	end tell
end GetEveryProcess

Good Luck,