Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

How can I do Paste cell in Sherlock

Featured Replies

How can I do Paste cell in Sherlock 2 in Os 9.2.2

with a applescript like copy cell in a db then paste in sherlock.

Thanks!!

The script below was modified from a sample script provided by Apple with OS X. It doesn't produce consistent results, at least with OS X.

property search_sites : {"AltaVista", "Excite", "Infoseek", "Lycos"}

tell application "FileMaker Pro" to set search_string to cell "Text" of current record

tell application "Sherlock"

activate

--delay 8 no longer needed

--select search sites {} in channel "Internet"

--select search sites search_sites in channel "Internet"

search Internet search_sites for the search_string with display

end tell

If you just want to do a web search, try the script below...

property URLGooglePrefix : "http://www.google.com/search?hl=en&lr=&ie=ISO-8859-1&q="

tell application "FileMaker Pro" to set theSearchCriteria to cell "Text" of current record

set theCharacterList to every character in theSearchCriteria

set theCharacterCount to count of theCharacterList

repeat with i from 1 to theCharacterCount

if item i in theCharacterList = " " then

set item i of theCharacterList to "+"

end if

end repeat

set theSearchCriteria to theCharacterList as string

set theUrl to URLGooglePrefix & theSearchCriteria

open location theUrl

This performs a google search in the user's default browser.

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.