Flickr - Printable Version +- Small Basic Forum (https://litdev.uk/mybb) +-- Forum: Small Basic (https://litdev.uk/mybb/forumdisplay.php?fid=1) +--- Forum: Extensions (https://litdev.uk/mybb/forumdisplay.php?fid=3) +--- Thread: Flickr (/showthread.php?tid=3) |
Flickr - litdev - 09-02-2023 I have previously fixed issues with Small Basic Flickr command, due to changes in flickr api. I had a look at it again as it doesn't work and determined that this time the api key has expired. I got a new api key and updated LDUtilities.FixFlickr. It seems to need to download the file rather than just load with ImageList, but the following works (Beta 1.2.25.0). Code: LDNetwork.SetSSL() RE: Flickr - jrmrhrb00 - 10-11-2023 LitDev, Before I found this I opened a thread in your small basic section asking if it would be possible to fix flickr. So, with the above it seems like loadimage isn't working in smallbasic for flicker. Is it possible to fix that? JR RE: Flickr - litdev - 10-11-2023 Hi JR, It does seem that way, that Flickr is somehow different. I don't know why this is, so unsure how it could be fixed. I will have a play and see if I can diagnose the issue, but at the momement the file download seems the only way for Flickr. RE: Flickr - litdev - 10-11-2023 After trying a couple things I am no wiser, so added a method that does the file download stuff behind the scenes. Code: LDNetwork.SetSSL() This is in current Beta version 1.2.26.0, the image is put in the main Imagelist. RE: Flickr - jrmrhrb00 - 10-12-2023 LitDev, I have the right version loaded 1.2.26.0, but it says it can't find operation loadimage in ldimage. JR RE: Flickr - litdev - 10-12-2023 Hi JR, Not sure when you got the Beta version and when I uploaded it with new command (LDImage.LoadImage), but I just tested the Beta download and its there for me. RE: Flickr - jrmrhrb00 - 10-12-2023 LitDev, Just loaded it again and it is still not there. Here is what is in the ldimage dropdown list: GetWorkingImagePixelARGB HeightMap2NormalMap Histogram LoadSVG MakeTransparent MetaData Multiply I expect that you had updated the intellisense. I still get the error and it doesn't show in the intellisense. "Cannot find the operation loadimage in ldimage". JR RE: Flickr - litdev - 10-12-2023 Not sure what to suggets. I just tested again: Download Beta zip from my website, unblock and extract zip. Copy dll and xml to lib folder (Small Basic closed to allow over-write). Start Small Basic and run the test - all good. RE: Flickr - jrmrhrb00 - 10-12-2023 OK. We're on about the same timeframe. I'll try again! Let you know in a few minutes. JR Got it! I had renamed the old .dll and .xml to .dllOLD and .xmlOLD and it was continuing to load them. Just deleted them and the new ones took control. Sorry for the confusion. Somehow the new .dll and .xml were getting overlaid with the old even though I had changed the names. Although with ldutilities.version() it still showed 1.2.26.0. as the version. Thanks for the new version! Works great. JR |