Jump to content

Angelo Luchi

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Angelo Luchi

  1. Version 1.0b

    648 downloads

    This file demonstrates Google Voice integration with FileMaker Pro 11. Using ScriptMaster and a custom JAR we can bring some basic Google Voice functionality to a users solution. This file is a basic contact manager allowing its user to Dial a phone number, send SMS messages, and receive SMS messages. There is no official API for Google Voice so this solution or Java code may need updates. If there are any questions, please contact Angelo Luchi at angelo@foxtailtech.com.
    Free
  2. File Name: GoogleVoice.fp7 File Submitter: Angelo Luchi File Submitted: 12 Aug 2011 File Updated: 12 Aug 2011 File Category: Samples FM Version: 11 This file demonstrates Google Voice integration with FileMaker Pro 11. Using ScriptMaster and a custom JAR we can bring some basic Google Voice functionality to a users solution. This file is a basic contact manager allowing its user to Dial a phone number, send SMS messages, and receive SMS messages. There is no official API for Google Voice so this solution or Java code may need updates. If there are any questions, please contact Angelo Luchi at angelo@foxtailtech.com. Click here to download this file
  3. If anyone was ever looking to get the computer name of the client rather than the host, here is the groovy to do that: import java.util.*; import java.lang.*; import java.net.*; try{ String computername = InetAddress.getLocalHost().getHostName(); return(computername); }catch (Exception e){ return("Exception caught ="+e.getMessage()); } Enjoy! Angelo Luchi The Drooling Dog, LLC. www.thedroolingdog.com 1-877-810-8378
  4. Has anyone been able to get this Groovy Script to call an FMpro script or return a result? I've been trying to re-write it so it can, but haven't had much success. Thanks!
×
×
  • Create New...

Important Information

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