February 4, 200520 yr 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
February 8, 200520 yr 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! :-)
February 11, 200520 yr 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 &"
February 13, 200520 yr Newbies Thank you very much for your kind reply! I'll give it a try! Best regards from snowy Norway! -)
March 9, 200520 yr 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
March 9, 200520 yr 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
March 9, 200520 yr 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