-- Space icons on a wide grid?

on mouseUp
  answer "The shows labels of Finder is" && getUsesWideGrid()
end mouseUp

function getUsesWideGrid
  put "tell application" && quote & "Finder" & quote & return after scriptVar
  put indent(2) & "set response to uses wide grid of Finder preferences" & return after scriptVar
  put indent(2) & "return (response as string)" & return after scriptVar
  put "end tell" after scriptVar
  do scriptVar as appleScript
  return the result
end getUsesWideGrid