!7 module DownloadAndPlayVideo { S url = "https://www.youtube.com/watch?v=XTN0Z60_k00"; visualize { ret centerAndEast( withLabel("Video URL to download: ", onEnter(rThread doIt, dm_fieldTextField('url)), jbutton("Download", rThread doIt)); } void doIt enter { temp dm_tempDisableAllButtons(); File f = dm_youTubeVideoDownloadToDir(downloadsDir("YouTube")); if (f == null) ret with infoBox("Couldn't download?"); dm_callModule(dm_makeOrShowModule("#1019320/VLCJTest"), 'playVideo, f); }