On Jan 16, 2015, at 5:29 PM, Shawn Blc wrote:

> Here's what I ended up with , with the extra php file (one for the rss, one
> to clean up the html a bit [that file was 13 lines long]).  Total lines =
> 20 lines.
> 
> on mouseUp
>   set the itemDelimiter to "<br />"
>   put URL "http://mydomain.com/cleanHTML.php"; into tURL
>   put tURL into fld "fld4"
>   replace "<br />" with return in fld "fld4"
>   put any line of fld "fld4" into fld "fld3"
> end mouseUp

OIC, you want a random URL. Then:

on mouseup
  put fld "fld1" into tList
  replace space with cr in tList
  filter tList with "http*"
  put any line of tList
end mouseup

-- Peter

Peter M. Brigham
pmb...@gmail.com
http://home.comcast.net/~pmbrig


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to