moveTool options
The code snippet was obtained with the Script Listener in Photoshop CC 2015.1.2. The snippet selects the move tool.
Is it possible to modify the snippet to include the Auto-Select move tool option? I am unable to record the Auto-Select tool option.

setToolMoveAutoSelect();
function setToolMoveAutoSelect() {
// =======================================================
var idslct = charIDToTypeID( "slct" );
var desc5 = new ActionDescriptor();
var idnull = charIDToTypeID( "null" );
var ref4 = new ActionReference();
var idmoveTool = stringIDToTypeID( "moveTool" );
ref4.putClass( idmoveTool );
desc5.putReference( idnull, ref4 );
var iddontRecord = stringIDToTypeID( "dontRecord" );
desc5.putBoolean( iddontRecord, true );
var idforceNotify = stringIDToTypeID( "forceNotify" );
desc5.putBoolean( idforceNotify, true );
executeAction( idslct, desc5, DialogModes.NO );
}