Sheri,

Is the following correct?


 
1. Function FindMovie(movie)

This allows PowerPro to call the Function FindMovie as defined by your script 
name.

2. local name=replacechars(movie, "\x20", "+")

This assigns "moviename" or "movie name" to local var "name"

3. local cmd="http://www.classiccinemazone.com/index.php?";

This assigns site url to local var "cmd"

4. cmd++="page=torrents&search="

This assigns "page=torrents&search=" to "cmd" var which results in 
"http://www.classiccinemazone.com/index.php?page=torrents&search=";

5. cmd++=name++"&category=0&active=0"

This assigns the result of var "name" and joins to 4 result,
"http://www.classiccinemazone.com/index.php?page=torrents&search=<searchmoviename>&category=0&active=0"
 
6. do(cmd)
quit

This executes the search of the resulting process above and quits the script.

7. .moviescri...@findmovie(clip.get)

This will make PowerPro search for the function findmovie and call it with the 
copied text.


Reply via email to