Guest User

Untitled

a guest
Jan 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. protected function citylist_itemClickHandler(event:ListEvent):void
  2. {
  3. var data:City = citylist.selectedItem as City;
  4. navigateToURL(new URLRequest(data.url));
  5.  
  6. }
  7.  
  8. <mx:List includeIn="data" x="28" y="10" width="312" height="255" id="citylist" dataProvider="{getCitysResult.lastResult}" labelField="city" itemClick="citylist_itemClickHandler(event)">
  9. </mx:List>
Add Comment
Please, Sign In to add comment