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.

open url to send sms

Featured Replies

  • Newbies

Hi,

I am using open url to send sms messages from filemaker. The problem i have is that the open url command does not keep the correct cases (lower or upper case text) when opening the url in Safari. everthing is reduced to lower case. Http is case sensative so i dont know why filemaker does not keep the correct cases. I have tried the Proper(text) function but it makes no difference. In addition when opening the url it does replace some http code for you, for example a space is indicated by %20 and a % is replaced by %25 which makes it very difficult to add my own http because a % is an essencial part of the code but keeps getting replaced by %25.

If anyone can help me at all with any of these problems i would greatly appreciate it. Any insight is welcome.

Thanks

Alex

  • Newbies

Sorry, I can't answer your question, but I'm in desperat need of a solution for sending sms from FileMaker. Can you share your know how?

Best regards! :-)

  • Newbies

To Send SMS via Filemaker you need a service provider and buy the text messages from them (i use www.mxtelecom.com). Then i send the sms using the method that they call http GET which is basically open url. Essencially you specify a URL including your username, password(that they have given you) and message. example:

http://sms.mxtelecom.com/SMSSend?user=us...message_content

Your webbrowser opens this address and displays a code which is the reference number of the text message sent. Thats all.

To intergrate into my database:

I then created a field: sendSMS that is a calulation (you will need to replace "username" and "password" with the data given to you by mxtelecom:

"sms.mxtelecom.com/SMSSend?user=username" &

"&pass=password" &

"&smsto=" & gMobileNumber&

"&smsfrom=8888" &

"&smsmsg=" & gMessage

&"

  • Newbies

Thank you very much for your kind reply!

I'll give it a try!

Best regards from snowy Norway! ???-)

  • 4 weeks later...

Alex,

Here's one method to work around the issue of text insensitivity. I had this same problem. Simply create a script step, using AppleScript. This retains the case properly. (Example in FMPro 7 Dev.):

try

tell application "Safari"

activate

set loginURL to "http://www.cnn.com/cgi-bin/WebObjects/NEWSViewer.woa/wa/display?id=fox_news"

make new document at the beginning of documents

delay 2

set logindoc to front document

set the URL of logindoc to loginURL

end tell

end try

Alex,

Here's one method to work around the issue of text insensitivity. I had this same problem. Simply create a script step, using AppleScript. This retains the case properly. (Example in FMPro 7 Dev.):

try

tell application "Safari"

activate

set loginURL to "http://www.cnn.com/cgi-bin/WebObjects/NEWSViewer.woa/wa/display?id=fox_news"

make new document at the beginning of documents

delay 2

set logindoc to front document

set the URL of logindoc to loginURL

end tell

end try

Alex,

Here's one method to work around the issue of text insensitivity. I had this same problem. Simply create a script step, using AppleScript. This retains the case properly. (Example in FMPro 7 Dev.):

try

tell application "Safari"

activate

set loginURL to "http://www.cnn.com/cgi-bin/WebObjects/NEWSViewer.woa/wa/display?id=fox_news"

make new document at the beginning of documents

delay 2

set logindoc to front document

set the URL of logindoc to loginURL

end tell

end try

Create an account or sign in to comment

Important Information

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

Account

Navigation

Search

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.