I attached a sample file, which you can download here. You can create a runtime solution from it using FileMaker Pro Advanced.
FileMaker techniques from a full-time FileMaker developer. http://crm.fm
Thursday, March 18, 2010
Save to PDF in Filemaker Runtimes? - Yes
Monday, January 11, 2010
Tweet with FileMaker (simple method, Win+Mac, No Curl)
"data:text/html," &
"<html>
<head>
<script>
function PostMe() {document.getElementById(\"myform\").submit();}
</script>
</head>
<body onload=\"PostMe()\">
<form id=\"myform\" method=\"post\" action=\"http://" & FmPostTwit::UserName_Global & ":" & FmPostTwit::PassWord_Global & "@twitter.com/statuses/update.xml\" enctype=\"application/x-www-form-urlencoded;charset=utf-8\" accept-charset=\"UTF-8\">
<input type=\"hidden\" name=\"status\" value=\"" & FmPostTwit::Status_Global & "\">
</form>
</body>
</html>"
Let's take a look at it.
The "data:text/html," part is to let the web viewer have inner html content(the form).
The next part is the javascript code, which will post the form when it loads.
The last part is the html form, with the needed input (status- hidden).
This will be put into a web viewer(object name vw) by the Set Web Viewer Script step- Go To URL.
So basically the one line code is:
Set Web Viewer[Object Name:vw; URL: here comes the html code from above]
That's all.
I attached a sample file, which you can download here.
Sunday, January 10, 2010
Importing Twitter Friend Timeline into FileMaker

http://username:password@twitter.com/statuses/friends_timeline.xml
Friday, December 18, 2009
FileMaker 8+ gradient progress bar with one field - without containers

Let ( [r1=123;g1=80;b1=200;r2=10;g2=180;b2=50] ;
If ( Truncate ( (Get(RecordNumber)/Get(FoundCount)) * 100 ; 0) ≥ Get ( CalculationRepetitionNumber );
TextColor ( "█" ;RGB(
r1 + Floor((Get ( CalculationRepetitionNumber ) * (r2 - r1) / 100));
g1 + Floor((Get ( CalculationRepetitionNumber ) * (g2 - g1) / 100));
b1 + Floor((Get ( CalculationRepetitionNumber ) * (b2 - b1) / 100))
)
);""))
Sunday, December 6, 2009
Moving in your previous FileMaker found sets


Saturday, December 5, 2009
QuickTip: Creating a drop down list from an unstored calculation


