set _new_item to (make new bookmark item ¬
with properties {name:"test"})
add tags {"T1", "T2"} to _new_item
While this code (note) does not
set _new_item to {make new note item with properties ¬
{name:"test", content:"this is text"}}
# Line below generates an exception [1]
add tags {"1", "2"} to _new_item
set _new_item to make new note item with properties ¬
{name:"test", content:"this is text"}
add tags {"1", "2"} to _new_item