/* ChangeFontSizeCommand.as */ package gov.va.med.edp.command { import com.adobe.cairngorm.commands.ICommand; import com.adobe.cairngorm.control.CairngormEvent; import gov.va.med.edp.control.NumberEvent; import gov.va.med.edp.model.TrackingModelLocator; public class ChangeFontSizeCommand implements ICommand { private var model:TrackingModelLocator = TrackingModelLocator.getInstance(); public function execute(event:CairngormEvent):void { var e: NumberEvent = NumberEvent(event); model.boardSpec.displayBoardProperties.squishFontSize = e.value; } // execute } // class } // package