I'm wanting to change an icon image from "Edit" to "Save", I'm using a variable to store value and assigning the variable to the icon property.
Changeicon.Onselect = Set(varChangeIcon, "Save");Set(varChangeTooltip, "Save")
Reseticon.Onselect = Set(varChangeIcon, "Edit");Set(varChangeTooltip, "Edit")
Icon.icon = varChangeIcon
Icon.Tooltip = varChangeTooltip

When I run this, only the Text to display while hoovering is working, the image is blank but the function within the icon.OnSelect works. Can this be done? changing the image?