removeHTTPParameter

scrapeableFile.removeHTTPParameter( int sequence )
Description
Dynamically removes an HTTPParameter indicated by the parameter's sequence from the current scrapeable file. The order of the remaining parameters are automatically adjusted immediately upon calling the method. (NOTE: If calling this method more than once in the same script, and when used in conjunction with the addHTTPParameter method, it is important to keep track of how the list is reorderd before calling either method again.) This method can be used for both GET and POST parameters. Calling this method will have no effect unless it's invoked before the file is scraped.
Example
// Removes the eighth HTTP parameter from the current file. scrapeableFile.removeHTTPParameter( 8 );