Script help with ToolTip
I'm having a problem making my photoshop script button show a Tool Tip.
Heres an example of what i have so far
Anyhelp greatly appreciated.
Thanks
// Create the button
var script3Btn = win.add("button", undefined, "🎦");
script3Btn.size = [40, 40];
// Adjust dimensions as needed to make it square
// Increase font size script3Btn.graphics.font = ScriptUI.newFont("Arial", "Bold", 22);
script3Btn.helpTip = 'Hello'; // Set tooltip
script3Btn.onClick = function() {
// Show the window
win.show();
