<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FileMaker development &gt; Metasys Software Pvt Ltd.</title>
	<atom:link href="https://www.metasyssoftware.com/tag/filemaker-development/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.metasyssoftware.com</link>
	<description>Unique People, Unique Solutions</description>
	<lastBuildDate>Thu, 06 Jun 2024 10:42:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.metasyssoftware.com/wp-content/uploads/2023/10/metasys-svg-.png</url>
	<title>FileMaker development &gt; Metasys Software Pvt Ltd.</title>
	<link>https://www.metasyssoftware.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Call FileMaker Script from a JavaScript function</title>
		<link>https://www.metasyssoftware.com/filemaker/call-filemaker-script-from-a-javascript-function/</link>
					<comments>https://www.metasyssoftware.com/filemaker/call-filemaker-script-from-a-javascript-function/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Fri, 28 Aug 2020 10:34:10 +0000</pubDate>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Offshore FileMaker development services]]></category>
		<category><![CDATA[FileMaker Go development]]></category>
		<category><![CDATA[FileMaker services]]></category>
		<category><![CDATA[FileMaker certified developers]]></category>
		<category><![CDATA[FileMaker development]]></category>
		<category><![CDATA[FileMaker Pro Advanced]]></category>
		<category><![CDATA[FileMaker custom app]]></category>
		<category><![CDATA[FileMaker Plug-Ins]]></category>
		<category><![CDATA[FileMaker consultants]]></category>
		<category><![CDATA[Offshore filemaker development company]]></category>
		<guid isPermaLink="false">https://www.metasyssoftware.com/?p=3198</guid>

					<description><![CDATA[<p>This article is the second part of a two-part series diving into some new features of FileMaker 19. In the [&#8230;]</p>
The post <a href="https://www.metasyssoftware.com/filemaker/call-filemaker-script-from-a-javascript-function/">Call FileMaker Script from a JavaScript function</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p>This article is the second part of a two-part series diving into some new features of FileMaker 19. In the previous article (<a href="https://www.metasyssoftware.com/blogs/integrating-jquery-datatable-in-filemaker-application-using-perform-javascript-in-web-viewer">https://www.metasyssoftware.com/blogs/integrating-jquery-datatable-in-filemaker-application-using-perform-javascript-in-web-viewer</a>), we explored the new FileMaker script step “Perform <strong>JavaScript</strong> in Web Viewer”. Using this feature, we added the jQuery data table in FileMaker Web Viewer. In this article, we will explore how we can call a FileMaker script from JavaScript function within FileMaker Web Viewer.</p>
<h2><strong>Demonstration</strong></h2>
<p>The example we will be using is a follow-on from the previous article, in which we showed a method for displaying data of companies and contacts. We displayed the FileMaker data in a jQuery datatable in the FileMaker Web Viewer, which allowed us to include jQuery features like pagination and sorting without any coding. Using the FileMaker.PerformScript() function, we can add the functionality through which, once the user clicks on any of the contact records from datatable in Web Viewer, the chosen contact details are shown on the FileMaker card window.</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter wp-image-3199 size-full" title="Inventory_19" src="https://stage.metasyssoftware.com/wp-content/uploads/Inventory-19.png" alt="Inventory_19" width="624" height="416" /></p>
<h3>The FileMaker.PerformScript() function takes two input parameters:</h3>
<ol>
<li>FileMaker Script Name – A non-case-sensitive name of the script we wish to run</li>
<li>Script input parameters (optional) &#8211; a string that contains the required parameters, which can be read using the function Get(ScriptParameter).</li>
</ol>
<p>This FileMaker script can be called from the WebViewer using the following JavaScript function: <em>function performFileMakerScript() {<br />
FileMaker.PerformScript ( &#8220;FileMaker Script Name&#8221;, &#8220;Optional Parameter&#8221; );</em></p>
<p><img decoding="async" class="aligncenter wp-image-3200 size-full" title="Specify calculation" src="https://stage.metasyssoftware.com/wp-content/uploads/image_2020_08_28T10_03_46_618Z.png" alt="Specify calculation" width="705" height="396" /></p>
<p>The highlighted section from the above screenshot shows how to call the FileMaker script using ‘FileMaker.PerformScript() function from Web Viewer. In it we write a JavaScript function called showContacts(), in which we can specify the execution for a double click event. We specify that a double click event calls the FileMaker script called “Show Contact Details”, passing the ID parameter as the optional second parameter. The ID parameter is retrieved from the double click event, by identifying the datatable row that has been clicked. This id parameter is further used in the FileMaker script to get more details of the selected contact record and displayed in the FileMaker card window.</p>
<p>A few notes regarding this implementation:</p>
<ul>
<li>In the Web Viewer Setup dialog, you must select the setting “Allow JavaScript to perform FileMaker scripts”. Otherwise, the FileMaker.PerformScript()function will not work.</li>
<li>The FileMaker script name which we pass as a first parameter is not case-sensitive.</li>
<li>The FileMaker.PerformScript() function doesn’t wait for the FileMaker script to finish. That means the FileMaker script doesn’t return a value to the FileMaker.PerformScript() function that called it.</li>
<li>The FileMaker script is executed in the current context. So if the user or script changes the layout or record while the script is running, then the FileMaker script will run in a new context. To deal with such a situation, we can pass the context information as a second parameter to the function.</li>
</ul>
<p>The JavaScript integration in <a href="https://www.metasyssoftware.com/filemaker">FileMaker 19</a> platform allows creating custom apps that can use the existing JavaScript libraries to incorporate amazing functionality easily. It enables a seamless ability to pass data back and forth between FileMaker and JavaScript.</p>
<p>If you are looking for support with FileMaker, or FileMaker integration, feel free to contact our us. For more details, please visit – <a href="http://www.metasyssoftware.com/filemaker">www.metasyssoftware.com/filemaker</a></p>The post <a href="https://www.metasyssoftware.com/filemaker/call-filemaker-script-from-a-javascript-function/">Call FileMaker Script from a JavaScript function</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.metasyssoftware.com/filemaker/call-filemaker-script-from-a-javascript-function/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Card Window in FileMaker 19 WebDirect</title>
		<link>https://www.metasyssoftware.com/filemaker/card-window-in-filemaker-19-webdirect/</link>
					<comments>https://www.metasyssoftware.com/filemaker/card-window-in-filemaker-19-webdirect/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Fri, 28 Aug 2020 08:06:44 +0000</pubDate>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[FileMaker services]]></category>
		<category><![CDATA[FileMaker development]]></category>
		<category><![CDATA[FileMaker Programmers]]></category>
		<category><![CDATA[FileMaker Pro Advanced]]></category>
		<category><![CDATA[FileMaker19]]></category>
		<category><![CDATA[Offshore filemaker development company]]></category>
		<category><![CDATA[Offshore filemaker services]]></category>
		<category><![CDATA[Offshore FileMaker development services]]></category>
		<guid isPermaLink="false">https://www.metasyssoftware.com/?p=3195</guid>

					<description><![CDATA[<p>FileMaker 19 offers many new features that can be used to enhance the UI/UX of FileMaker Custom apps. One exciting [&#8230;]</p>
The post <a href="https://www.metasyssoftware.com/filemaker/card-window-in-filemaker-19-webdirect/">Card Window in FileMaker 19 WebDirect</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p>FileMaker 19 offers many new features that can be used to enhance the UI/UX of FileMaker Custom apps. One exciting feature is the ability to use card windows in WebDirect. FileMaker introduced the card windows in FileMaker 16. At the time that feature was not supported in WebDirect. Card Window support in WebDirect is a powerful feature.</p>
<p>Card Windows are modal to its parent window and allows the display of context-independent information from the parent window. Using the card window, users can perform actions without navigating from the parent window.</p>
<p><img decoding="async" class="aligncenter wp-image-3196 size-full" title="Card windows in webdirect" src="https://stage.metasyssoftware.com/wp-content/uploads/Card-windows-in-webdirect.png" alt="Card windows in webdirect" width="624" height="303" /></p>
<p>We can implement a card window using New Window or Go To Related Record script steps and selecting card as the window type. Only Close Window and Dim Parent Window options are available with card window type.</p>
<p>Please refer to the below screenshot</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-3197 size-full" title="New window options" src="https://stage.metasyssoftware.com/wp-content/uploads/New-window-options.png" alt="New window options" width="442" height="443" /></p>
<h2>We can use the following script steps and Functions with cards in <a href="https://www.metasyssoftware.com/filemaker">FileMaker</a> WebDirect:</h2>
<h3><strong>Script Steps</strong></h3>
<ul>
<li>New Window</li>
<li>Adjust Window</li>
<li>Move/Resize Window</li>
</ul>
<h3><strong>Functions</strong></h3>
<ul>
<li>Get (WindowStyle)</li>
<li>Get (WindowLeft)</li>
<li>Get (WindowTop)</li>
</ul>
<p>Things to bear in mind when using Card Window in WebDirect:</p>
<ul>
<li>The status toolbar and menu bar in the parent window are not active when a card window is open.</li>
<li>Changes made in the card window will not be reflected in the parent window until the card window is closed.</li>
<li>When the card window is closed, the parent window doesn’t always refresh. We can solve this problem by adding a <strong>Refresh Portal</strong>or <strong>Refresh Window</strong> script step to the close window button.</li>
<li>When you are using the card window, make sure that close window button is visible in WebDirect solution. Because sometimes the close button may not be visible even if the close window option is selected. This can be handled by providing a custom close button on the layout.</li>
</ul>
<p>Overall, the card window support in WebDirect offers an enriched user experience to Web users. We hope that this blog gives you valuable insights on card window support in WebDirect.</p>
<p>MetaSys has a team of experienced FileMaker developers. Please feel free to reach out should you need to support or you wish to develop FileMaker Apps. Please feel free to reach out to us at  <a href="https://www.metasyssoftware.com/contact">https://www.metasyssoftware.com/contact</a></p>The post <a href="https://www.metasyssoftware.com/filemaker/card-window-in-filemaker-19-webdirect/">Card Window in FileMaker 19 WebDirect</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.metasyssoftware.com/filemaker/card-window-in-filemaker-19-webdirect/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Publish Product data from FileMaker solution to Shopify store</title>
		<link>https://www.metasyssoftware.com/filemaker/publish-product-data-from-filemaker-solution-to-shopify-store/</link>
					<comments>https://www.metasyssoftware.com/filemaker/publish-product-data-from-filemaker-solution-to-shopify-store/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Thu, 04 Jun 2020 14:37:54 +0000</pubDate>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[FileMaker developers]]></category>
		<category><![CDATA[Shopify]]></category>
		<category><![CDATA[FileMaker integration]]></category>
		<category><![CDATA[FileMaker solution]]></category>
		<category><![CDATA[FileMaker certified developers]]></category>
		<category><![CDATA[FileMaker development]]></category>
		<category><![CDATA[FileMaker Programmers]]></category>
		<category><![CDATA[FileMaker Pro Addvanced]]></category>
		<category><![CDATA[Offshore filemaker services]]></category>
		<guid isPermaLink="false">https://www.metasyssoftware.com/?p=3087</guid>

					<description><![CDATA[<p>This blog article describes a simple way to integrate Shopify and Filemaker. Shopify is a popular ecommerce platform used by [&#8230;]</p>
The post <a href="https://www.metasyssoftware.com/filemaker/publish-product-data-from-filemaker-solution-to-shopify-store/">Publish Product data from FileMaker solution to Shopify store</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p>This blog article describes a simple way to integrate Shopify and Filemaker. Shopify is a popular ecommerce platform used by many businesses around the world, and integrating Shopify and FileMaker can save time and money.</p>
<p>FileMaker integration is made easy due to two powerful features. Firstly, the enhanced cURL options which make it easy to interact with many systems by facilitating many common file transfer options. Secondly, the native functions to create and extract data from JSON, which makes interactions with web services easy. These features allow FileMaker to be integrated with almost any third party products that provide the APIs for communication, including Shopify.</p>
<h2><strong>Step One: Create a private app in the Shopify account.</strong></h2>
<ul>
<li>We can connect to a Shopify account by creating a private app. Shopify requires an API Key, the API password of the private app, and the store name for authentication.</li>
<li>The screenshot below shows how to create a Private app and how to get the API key and API password.</li>
</ul>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3092 size-full" title="FM Shopify demo image 1" src="https://www.metasyssoftware.com/wp-content/uploads/FM-Shopify-demo-image-1.png" alt="FM Shopify demo image 1" width="973" height="397" /></p>
<ul>
<li>Give the appropriate API permissions required by your private app.</li>
<li>As described in the Shopify documentation, Shopify authenticates private applications using the following URL format: <u>https://{apikey}:{password}@{hostname}/admin/api/{version}/{resource}.json</u></li>
</ul>
<p>Note that the ‘hostname’ refers to the store name, and ‘version’ refers to the API version in use.</p>
<h2><strong>Step Two: Store the required Shopify details in FileMaker</strong></h2>
<ul>
<li>In the FileMaker database, create the fields to store the API Key, API Password, Store Name and API Version, as shown in the screenshot below.</li>
</ul>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3088 size-full" title="Shopify details 2" src="https://www.metasyssoftware.com/wp-content/uploads/Shopify-image-1.png" alt="Shopify details 2" width="975" height="678" /></p>
<h2><strong>Step Three: Write the script</strong></h2>
<ul>
<li>Write a script in FileMaker which will create the product in the Shopify account using the Shopify details mentioned in Step 2. For this step, we will use the cURL and JSON features of FileMaker.</li>
<li>In the script, first create the JSON array with Product details such as Product Title, Product Description, Vendor etc.</li>
<li>Next, format the URL (using the URL format mentioned in Step 1) with your Shopify account details. Then use this URL in the FileMaker ‘Insert from URL’ script step and pass the JSON array using the cURL option in it.</li>
<li>Please see the below screenshot for reference.</li>
</ul>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-3090 size-full" title="Script workspace image 3" src="https://www.metasyssoftware.com/wp-content/uploads/Script-workspace-image-3.png" alt="Script workspace image 3" width="975" height="773" /></p>
<p>After these three steps, we are ready to publish our product from a FileMaker database to a Shopify account. If you are experiencing issues with FileMaker, or FileMaker integration, feel free to contact our FileMaker certified developers. For more details, please visit &#8211; <a href="https://www.metasyssoftware.com/filemaker">https://www.metasyssoftware.com/filemaker</a></p>The post <a href="https://www.metasyssoftware.com/filemaker/publish-product-data-from-filemaker-solution-to-shopify-store/">Publish Product data from FileMaker solution to Shopify store</a> appeared first on <a href="https://www.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.metasyssoftware.com/filemaker/publish-product-data-from-filemaker-solution-to-shopify-store/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
