set_item_text(item_id, text)


Description

this function will replace the item text with "text"
if you test this function using the evaluator do take care as you can not undo the replacement once it has been done.

Example

++:L:
A=get_item_text(item_id)
B=get_folder_value("Release",item_id)
text=A .. " "..B
set_item_text(item_id,text)

this rule will take the current item (item_id) text, store it in A then get the Release folder value and store it in B, then concatenate the values into text and finally change the item text with the new string consisting of the item text plus the value of the release folder.

Related Rules

Rules