/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * We take one argument here, and that is the id of the snippet we are wanting to remove * * @param snippet_id the id to be removed * */ public function removeSnippet( snippet_id:uint ):void { _service.call( "snippr.SnipprService.removeSnippet", new Responder( snippetRemoveHandler, snipprFaultHandler ), snippet_id ); trace( "Removing Snippet" ); }