How to create show request?

This is the code - but it doesn`t work, what should to be corrected?

export function button_dblClick(event) {
//Add your code for this event here:
if ( $w(“#uploadButton1”).hidden ) {
$w(“#uploadButton1”).show();
}
else {
$w(“#uploadButton1”).hide();
}
}