2018年11月6日火曜日

FileMaker Go 画像に書き込み|アプリ「ショートカット」iOS12

動作検証:iPadOS14.6
FileMaker Go 19.3.1
で実行する場合は、https://zenn.dev/qb_dp/articles/b5ff9c731384c0

2018年10月17日水曜日

FileMaker cURL shift_jis URLエンコード

FileMaker Pro 16 以降

URL から挿入 [選択; ダイアログあり:オフ; Table::Result; "http://....." ; 
cURL オプション:
"
-X POST
--FM-text-encoding shift_jis
--data-urlencode data=こんにちわ
--trace-ascii $$trace
";
URLを自動的にエンコードしない]

2018年9月20日木曜日

FileMakerの全てのウインドウを最小化する。(Windows)

FileMakerの全てのウインドウを最小化する。(Windows)

Windows 10
FileMaker 16, 17


Event を送信 [「aevt」;「odoc」;

powershell -windowstyle hidden -Command "$dllInfo = '[DllImport(\"user32.dll\")]public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
[DllImport(\"user32.dll\")]public static extern bool IsIconic(IntPtr hWnd);';
Add-Type -MemberDefinition $dllInfo -name NativeMethods -namespace Win32;
do{
$FMprocess=get-process FileMaker*;
foreach($proc in $FMprocess){
$hwnd = $proc.MainWindowHandle;
$IsIconic=[Win32.NativeMethods]::IsIconic($hwnd);
[Win32.NativeMethods]::ShowWindowAsync($hwnd, 2) | Out-Null;
Start-Sleep -m 100;
}
}while ($IsIconic -eq $FALSE)"
」]
※テキストへ設定