litdev,
I got it. The first time I looked I didn't see it.
Here is first program for flickr
LDBasic.FixFlickr()
file=Flickr.GetPictureOfMoment()
image=LDBasic.LoadImage(file)
GraphicsWindow.DrawImage(image,0,0)
This works, but I am wondering if it is possible to have the LDbasic.FixFlickr() command hidden. Like the extension just does it each time it is loaded. And maybe do the same with LDBasic.loadimage(). Or maybe there is a way to get the image loaded and be able to use the standard imagelist.loadimage() command.
JR
LitDev,
Here is a problem list for level 1.2 that I found on the Wiki. It does mention the tls issue. I think it was posted by Nonki.
https://social.technet.microsoft.com/wik...-host.aspx
Here is another one that I posted about 1.2 issues. Never got fixed though.
https://social.msdn.microsoft.com/Forums...smallbasic
Here is one that I got to work just using the regular imagelist.loadimage command which I thought didn't work.
size=LDBasic.DownloadFile("c:\temp\soccer.jpg","https://cdn.wallpapersafari.com/3/7/SFe72B.jpg")
TextWindow.WriteLine(size)
image=ImageList.loadimage("c:\temp\soccer.jpg")
GraphicsWindow.DrawresizedImage(image,0,0,500,400)
JR
I got it. The first time I looked I didn't see it.
Here is first program for flickr
LDBasic.FixFlickr()
file=Flickr.GetPictureOfMoment()
image=LDBasic.LoadImage(file)
GraphicsWindow.DrawImage(image,0,0)
This works, but I am wondering if it is possible to have the LDbasic.FixFlickr() command hidden. Like the extension just does it each time it is loaded. And maybe do the same with LDBasic.loadimage(). Or maybe there is a way to get the image loaded and be able to use the standard imagelist.loadimage() command.
JR
LitDev,
Here is a problem list for level 1.2 that I found on the Wiki. It does mention the tls issue. I think it was posted by Nonki.
https://social.technet.microsoft.com/wik...-host.aspx
Here is another one that I posted about 1.2 issues. Never got fixed though.
https://social.msdn.microsoft.com/Forums...smallbasic
Here is one that I got to work just using the regular imagelist.loadimage command which I thought didn't work.
size=LDBasic.DownloadFile("c:\temp\soccer.jpg","https://cdn.wallpapersafari.com/3/7/SFe72B.jpg")
TextWindow.WriteLine(size)
image=ImageList.loadimage("c:\temp\soccer.jpg")
GraphicsWindow.DrawresizedImage(image,0,0,500,400)
JR