Jump to content

HELP! where did the dialing prefs go?


This topic is 7020 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Dial Phone is not supported in Mac OS X. I just checked FM7 and it is still not supported.

I forget the details, but there is a UNIX reason why the modem device cannot be used by a user application.

Can anyone elaborate?

Link to comment
Share on other sites

  • 10 months later...
  • Newbies

Thanks to the enthusiast for the lead to Dial Lite. Worked fine manually - entering name and phone number and pressing the button - just had to remember to include the outside line access number in each number.

Has anyone tried to somehow embed Dial Lite into Filemaker 7 as some kind of pop up or somehow exported a number to Dial Lite so that the number can be automatically sent to Dial Lite without having to key the number into Dial Lite?

Still hoping for a neat work around.

Tulma

Link to comment
Share on other sites

This one is a bit more, $12, but it seems to do a lot, with lots of phones. It is AppleScript Studio based,* so would probably be fairly easy to integrate with FileMaker; in fact he includes a FileMaker example file.

http://homepage.mac.com/jonn8/jpt/

*Which means there's considerable support for phone dialing within OS X itself. FileMaker just doesn't use it.

I also have some text describing a free AppleScript solution; but I have no idea whether it works, nor who wrote it. I do phones manually.

The OS X version of FileMaker Pro does not support the dial function (who knows why).

Creating an dialing function from FileMaker Pro running OS X

1) Go to Network preference panel. Select Active Network Ports from the Show drop-down menu.

2) Click on Internal Modem and then click on Duplicate. Rename to Telephone

3) Click the check box on Telephone to make it an active port

4) Go to FMP. Select ScriptMaker from Scripts menu. Click on Create

5) Clear all predefined actions in the script window.

6) Double click the Copy function from the list on the left. Check the Select Entire Contents box at the bottom of the window and then Check and Click Specify field to select the field with the phone number you want to dial.

7) Double click the Perform AppleScript function from the list on the left. Click Specify at the bottom of the box and then, when the window opens, click Script Text button and past the following into the window.

local thenumber

tell application "Finder"

activate

copy (the clipboard) to thenumber

end tell

copy "*67,1-" & thenumber to thenumber

tell application "FileMaker Pro"

activate

ignoring application responses

tell application "Internet Connect" to connect configuration "Telephone"

to telephone number thenumber

end ignoring

display dialog thenumber & return & "Dialing in Progress: Disconnect?" buttons {"Disconnect"} default button 1 giving up after 10

tell application "Internet Connect" to disconnect configuration

"Telephone"

end tell

Note: If you want to eliminate or modify the prefix of the number to be dialed that is in the selected field, change the "*67,1-" & in the copy "*67,1-" & thenumber to thenumber line. It is currently set up to block caller ID and add a 1- in front of the number in the data field.

Link to comment
Share on other sites

This topic is 7020 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

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