FileMaker – Passing Multiple Script Parameters

I can think of hundreds of times when I found myself pounding my head against the desk because I had to define yet another global field just to pass a simple value from one script to another. Like you, I myself hate to have lots of cruft clogging up my databases. Luckily, FileMaker 7+ gave us the wonderful addition of script parameters to help relieve this plight. Sometimes, even this isn’t enough and that’s where passing multiple parameters takes over.

Read more

Filemaker Error 401

No this is not an AP class on FileMaker Errors. FileMaker Error 401 refers to the dreaded, script killing, FileMaker Error 401. Many of us have encountered an annoying pop-up stating “No records match this set of find requests” in the middle of our carefully crafted scripts and don’t really know where it comes from. The error message FileMaker’s way of saying that your script just performed a find, and it couldn’t find any records. But in practice, you often don’t want to tell your _users_ no records were found. Instead, you just want you script to note this fact, adjust its behavior accordingly, and keep on trucking. More often than not, when this error message pops up, the poor user can’t figure out what to do: “Should I Cancel? or should I Modify Find?” Perhaps he just pounds the escape key until something happens. All three choices seem like perfectly rational responses to me, but are probably not what the programmer intended.

Read more

Scaling Images in a Web Viewer

[technet]: http://www.filemaker.com/technet/index.html
[regex]: http://en.wikipedia.org/wiki/Regular_expression
[replace]: http://www.w3schools.com/jsref/jsref_replace.asp
[center1]: http://www.jakpsatweb.cz/css/css-vertical-center-solution.html
[center2]: http://d-graff.de/fricca/center.html
[center3]: http://www.student.oulu.fi/~laurirai/www/css/middle/

A recent post on the [TechNet][technet] mailing list posed an interesting question:

>When displaying an image in a web viewer, is there any way to scale the image to fit?

Of course container fields have this ability built right in (by way of the Format -> Graphic command). But there are several reasons you might want to show pictures in a web viewer instead. Most notably, the images might already be on a web site. There’s no reason to copy them into the FileMaker database too, wasting space and adding more to your already busy schedule. Is there any way to give web viewers container-like scaling ability?

Read more