Use the following methods to show and hide the busy cursor. Cheers, Adam
import mx.managers.CursorManager; CursorManager.setBusyCursor(); CursorManager.removeBusyCursor(); ----- Original Message ----- From: rumpleminzeflickr To: [email protected] Sent: Wednesday, February 28, 2007 3:01 PM Subject: [flexcoders] ui design question, ideas for showing the user to wait while a record loads Hi there, I've seen on the mxml remote object a tag that sats: showbusycursor="true" For the actionscript version, (RemoteObject) I can't see an equivelant? My code goes like this: // call controller to call as remote object pageController.getPage(selectedItem); // switch view from a list of records to a record detail viewstack1.selectedChild = detail; How can I using this kind of detail put a busycursor up during the wait period? Do I need to use events? any help would be appreciated. Many thanks,

