Return to Snippet

Revision: 9241
at October 27, 2008 01:01 by jonniespratley


Initial Code
/**
		 * 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" );
		}

Initial URL


Initial Description


Initial Title
Removing data from amfphp

Initial Tags
textmate

Initial Language
Other