July 17, 200619 yr Is it possible to download images direct into filemaker through Web Viewer or is there still need for third party developers plugs? TMAS
July 28, 200619 yr Anyone have any experience with this? I am also very curious if anyone has used something like Google Earth and has been able to download snapshots of addresses looked up?
July 28, 200619 yr don't even have to download, you can just drap and drop image from web viewer to container field
July 31, 200619 yr Author Yes but if you do not want to browse any page just have a script to dl a image to a container field, without browsing!
August 1, 200619 yr It guess you could combine applescript to have Firefox to save the page with the image and use script to get the saved image to your container field.
August 9, 200619 yr there was a Java file that allowed you to do this before. Of course the downfall was that it required you to make sure java was installed on windows boxes. I've had it working perfectly however, and if the project scope is only MAC, then you've got no worries. Search for +Java +Download and you should find it.
August 9, 200619 yr sure Java would work. But a simple AppleScript and VBscript routine will work just the same. Using the built-in OS tools will get you a lot more traction than trying to convince people to install non OS-native frameworks. Bottom-line for this question: if you want to automate it, then yes you need to use OS-level scripting.
August 10, 200619 yr I would agree with Wim, though I don't know any VBscript. On Mac OS X you could download a picture with: do shell script "curl the_image_url" > a_file_path Then Insert Picture in FileMaker. The file path could be to the temporary items folder, so the file is removed later (when you restart) /private/var/tmp/folders.501/TemporaryItems/ (There is another Unix one higher up I think, but I can't remember it) Or, you could curl the whole page source and parse out any image URLs, to do multiple images.
August 10, 200619 yr I know nothing about VBScripting, although I have picked up a book on it, just haven't had the time to read it. I will say that most people already have JRE installed on thier machine because more and more websites are moving that way. However in my case, it was an internal project, and I could control what the users had on their machines and what they didn't.
Create an account or sign in to comment