Use Motorola V3x for faxing

I would like to install / use my Motorola V3x phone as a fax modem. Unfortunately I do not know how to get this running. Any help?
Thanks.

Try http://www.macosxhints.com/article.php?story=20060219140040795
for just a modem (try a search there for fax modem) or
http://www.howardforums.com and do a search for what you want.

Similar Messages

  • On call manager 9.1 we currently are using ata's for fax machines. Can anybody tell me why all of a sudden some quit working and some do not? We suspect that some have old firmware and some new firmware. We are using the 186 ata's

    Tim Jarrell I T Tech PWCS       

    Upgrade to the latest firmware (Although that is a few years old on the 186s) Also, make sure to disable the second port if you're not using it.
    GTG
    Please rate all helpful posts.

  • Using Motorola chargers for Blackberry devices...

    So I have the Storm 9530 and had a few extra chargers from past phones. Connector works, but are the power limits ok, or are there any issues I should know about?
    My storm charger is 700mA, however one of the extra chargers is 550mA, and the other is 850mA. I am guessing they arnt too far off, but just figured Id ask before pluging them in...

    I have a motorola charger (it was not a RAZR but a RIZE Z3, the mobile phone of the bad guys in US action movies).
    It is slow to charge a Curve 8310 but very fast to charge a Storm 9530.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Synchronising postal addresses to Motorola V3x

    Hi,
    I have been using iSync with my Motorola V3x for a while now, but I have noticed that if I add a postal address to a contact and then Synchronise in iSync, the address won't copy to the contact on the phone. Birth dates do not copy either. Very frustrating!
    I can send the vcard manually from the address book and when I store them on the phone the postal address and birth date are there.
    Any ideas?

    Can anyone help me?

  • Can I use Magic Jack for BOTH phone calls and Fax. Is Magic jack PLUS BETTER.

    I am using the Magic Jack for regular phone calls. Now, I want to use it for Faxing in and out - on Windows - on a wireless connection to my Officejet 8600 Pro Plus. I see a lot of problems in the forum. Is it easier to buy and use the new Magi Jack PRO. AND. PLEASE, Does anyone have instructions for the installation and use?

    I'm going to be up front and straight forward with you.  Magic Jack, does not work with faxing 90% of the time.  It's not designed to.  That being said, you still have to have a phone line plugged into the printer to fax.  There is no such thing as wireless faxing.  There is internet faxing, through companies such as eFax, and you can use eFax wirelessly form the front panel of select printers.  The 8600 is not one of those printers though.  The printers that include the eFax app are in the PhotoSmart line.  Now that you know all of that, you can try to get faxing to work with magic jack, but it' most likely not going to work.  Here is a list of the things you can try:
    Fist make sure you have a DSL/Digital filter installed in the line.  Next, set the fax speed to slow.  You can find steps in this document that will help with that.  Last make sure the ECM (Error Correction Mode) is off.  To turn off the ECM:
    From the home screen, touch the right arrow.
    Touch setup.
    Touch fax setup.
    Touch advanced fax setup.
    Scroll down to ECM.
    Touch ECM.
    Touch off.
    Touch the home button.
    That's about all you can do to get it to work, and even then it's not guaranteed at all.  Like I said, Magic Jack does not work with faxing.  
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Upload using eCATT to change fax number for all existing Vendors

    Dear All,
    Using eCATT upload, i need to change the Fax number format for all existing vendors. How to do this?
    I havent used eCATT before, please guide me in this regard
    Thanks
    RS
    Edited by: Ramapuram Saravanan on Feb 8, 2009 6:13 AM

    Hi Luis,
    Use tcode XK99 for vendor mass change, select the Fax no field. You have to take note that this changes will be only 1 fax number for all vendors.
    Else you have to use BAPI for mass change.
    regards,
    maia

  • Error at Motorola v3x

    HELP!!!
    I installed a J2ME application on my Motorola v3x.
    when i run the application i get the following error:
    "Cannot create player"
    The code seems to be OK, I checked it on some Sony Ericsson emulators. I didn't find a suitable emulators for my motorola device.
    Here is the code:
    package videoPlayer;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    /** A simple video player MIDlet using JSR 135 - Mobile Media API */
    public class VideoPlayer extends MIDlet implements CommandListener
         private Command exitCommand;
         private Command playCommand;
         private Command contentTypeCommand;
         private Display display;
         private TextField textField;
         public Form form;
         private Gauge gauge;
         private static final int GAUGE_LEVELS = 4;
         private static final int GAUGE_MAX = 12;
         private static final String DEFAULT_URL = "http://localhost/test.mpg";
         public VideoPlayer() {
              display = Display.getDisplay(this);                    
              form = new Form("Video Player");
              textField = new TextField("Video URL", DEFAULT_URL, 100, TextField.ANY);
              gauge = new Gauge("Acquiring video", false, GAUGE_MAX, 0);          
              exitCommand = new Command("Exit", Command.EXIT, 2);     
              playCommand = new Command("Play", Command.SCREEN, 1);
              contentTypeCommand = new Command("Supported media types", Command.SCREEN, 2);
              form.addCommand(playCommand);
              form.addCommand(exitCommand);
              form.addCommand(contentTypeCommand);
              form.setCommandListener(this);
              form.append(textField);          
         public void startApp(){                    
              display.setCurrent(form);                    
         public void pauseApp(){     
         public void destroyApp(boolean unconditional){     
         public void commandAction(Command c, Displayable s){          
              if(c == exitCommand){
                   destroyApp(false);
                   notifyDestroyed();     
              else if(c == playCommand){                              
                   gauge.setValue(0);
                   form.append(gauge);               
                   VideoCanvas videoCanvas = new VideoCanvas(this);
                   videoCanvas.initializeVideo(textField.getString());                                   
              else if (c == contentTypeCommand){
                   String url = textField.getString();
                   int position = url.indexOf(':');
                   String protocol = url.substring(0, position);
                   SupportedTypes typesUI = new SupportedTypes(this, protocol);     
                   display.setCurrent(typesUI);     
         public void updateGauge(){
              int current = gauge.getValue();          
              current = (current + GAUGE_MAX/GAUGE_LEVELS);
    gauge.setValue(current);          
    package videoPlayer;
    import javax.microedition.lcdui.*;
    import javax.microedition.media.*;
    import javax.microedition.media.control.*;
    import java.io.*;
    /** Acquires the video content and renders it */
    public class VideoCanvas extends Canvas implements CommandListener, PlayerListener, Runnable {
         private VideoPlayer parent;
         private Display display;
         private Player player;
         private VideoControl videoControl;
         private String url;
         private Thread initializer;
         private Command close;
         private Command rePlay;
         public VideoCanvas(VideoPlayer parent){
              super();
              this.parent = parent;
              display = Display.getDisplay(parent);
              close = new Command("close", Command.SCREEN, 1);
              addCommand(close);
              setCommandListener(this);               
         public void initializeVideo(String url){     
              this.url = url;
              initializer = new Thread(this);     
              initializer.start();
         public void run(){
              try {                                   
                   player = Manager.createPlayer(url);
                   parent.updateGauge();                              
                   player.addPlayerListener(this);                
                   player.realize();
                   parent.updateGauge();                                        
                   player.prefetch();
                   parent.updateGauge();                              
    } catch (IOException ioe) {
                   Alert alert = new Alert("IOException thrown", ioe.getMessage(), null, AlertType.ERROR);
                   display.setCurrent(alert);
    } catch (MediaException me) {
                   Alert alert = new Alert("MediaException thrown", me.getMessage(), null, AlertType.ERROR);
                   display.setCurrent(alert);
              playVideo();
         public void playVideo(){
              try {
    // Get the video control and set it to the current display.
    videoControl = (VideoControl)player.getControl("VideoControl");
    if (videoControl != null) {                    
                        videoControl.initDisplayMode(videoControl.USE_DIRECT_VIDEO, this);                                                  
                   parent.updateGauge();
                   int cHeight = this.getHeight();
                   int cWidth = this.getWidth();               
                   videoControl.setDisplaySize(cWidth, cHeight);      
                   display.setCurrent(this);
                   videoControl.setVisible(true);
    player.start();
    } catch (MediaException me) {
                   Alert alert = new Alert("MediaException thrown", me.getMessage(), null, AlertType.ERROR);
                   display.setCurrent(alert);
         /** Paints background color */
         public void paint(Graphics g){
              g.setColor(128, 128, 128);
              g.fillRect(0, 0, getWidth(), getHeight());          
         public void playerUpdate(Player p, String event, Object eventData) {
              //add "Replay" option when video is finished
              if (event == PlayerListener.END_OF_MEDIA)
                   if (rePlay == null)
                        rePlay = new Command("re-play", Command.SCREEN, 1);     
                        addCommand(rePlay);
         public void commandAction(Command c, Displayable s) {          
              if(c == rePlay){          
                   try{
                        player.start();     
                   } catch (MediaException me) {
                        Alert alert = new Alert("MediaException thrown", me.getMessage(), null, AlertType.ERROR);
                        display.setCurrent(alert);
              else if(c == close){                                                            
                   player.close();
                   parent.form.delete(1);
                   display.setCurrent(parent.form);
                   url=null;
                   parent=null;
    }

    I downloaded and installed the SDK of Motorola and when i run my application i get the error:
    "createPlayer() filed"
    I added to my code the following lines:
    String[] types = Manager.getSupportedContentTypes(protocol);
              for(int i = 0; i < types.length; i++) {
                   append(new TextField("http", types, 20, TextField.ANY));           
    When i run the RAZR_v3x Emolator i get that the only video format which it supports is .mng, but i checked in Motorola web site about this device and i saw that it supports MPEG4, WMA, MP3 and Real Video/Audio files.
    Do you something about that??
    Thanks

  • How to Use Remote Printer's FAX and Scanner on Win 7

    HP LaserJet 3050 hosted by an XP computer. I've been able to install it for printing from a Win 7 machine but I can't find a way to install its fax or scanner functions. I tried using the printer driver to print to the fax and it corrupted the XP's spool program requiring an entire C:\ drive restore from backup!
    I have the HP 64 bit driver for the printer, and I can see in the list of .inf files one that seems to be for fax, but I can't make it install.

    Hello colinobj,
    I have looked at the link that you have provided that gives the steps to resolve the installation issue. 
    Just so you are aware, this is the solution to the issue at hand.  Seeing that XP is on its way of being not supported, this is the best solution that Bob_Headrick has provided.
    Thank you.
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • How do I get a receipt for faxes sent from Macbook?

    I have a macbook pro with a usb modem attachment. I've successfully faxed a document using the external modem. For legal reasons, there are things I must send via fax, and I must have a printable receipt verifying the fax was sent. For example, I use Winfax Pro with my XP machine. As soon as a fax is successfully sent, it prints a pdf fax receipt. I can't see how that can be done with the Apple external modem. Does anyone know how to make the Apple external modem print a fax receipt?
    Thanks,
    Dan

    The list of completed FAXes can be found by opening the Fax Queue in System Preferences.  Make sure to select "Show Completed Jobs" in the menu.
    I had a heck of a time finding where this info was stored.  I finally found it in /var/log/cups/page_log
    This file contains info for all print jobs, listed by date/time and printer name.  (I'm in Snow Leopard).
    This information (for FAXes) shows the status, name of document, Fax Number, date, and time sent.  It doesn't show the number of pages so that's the only thing missing from Bottlerocket's request.
    John Eidsvoog

  • Payment Advice Form F110_US_AVIS asking for FAX # ???

    Hello,
    When run the SAP standard program RFFOUS_T in one client, which invokes the form F110_US_AVIS, it is trying to send a Fax !!!
    When the same program (RFFOUS_T) runs in another client , it works the way suppose to be, send the form to the printer.
    Best regards,
    Tom

    Hello
    We are facing some issues with the BTE 00002040 (Function SAMPLE_PROCESS_00002040) when we tried to run the scenario for FAX output.
    we have copied the FM SAMPLE_PROCESS_00002040 to Z FM and the logic is written as below
    IF c_finaa-nacha NE lc_i.                             
        SELECT SINGLE tlfxs INTO  lv_fax                    
                            FROM  lfb1                        
                            WHERE lifnr = i_reguh-lifnr  AND   bukrs = i_reguh-zbukr.     
        IF sy-subrc EQ 0.                                    
          c_finaa-nacha      = lc_2.                         
          c_finaa-tdschedule = lc_imm.                        
          c_finaa-tdteleland = i_reguh-zland.                 
          c_finaa-tdtelenum  = lv_fax.                      
          c_finaa-formc      = lc_fax.                        
        ENDIF.                                             
      ENDIF.      
    The variant used in F110 / RFFOAVIS_FPAYM contains run date, identification and the printer = 'PDF-EMAIL'.
    When we check the output from SOST, we can see the FAX was sent successfully out from SAP
    But the FAX server is unable to take the input and the IT people comment that the fax server is receiving .MSG file rather than /PDF file.
    We are unable to figure out how to change the format of the file and request your help if any one has faced sililar kind of issue,
    All valid opinions are welcome
    Thanks in advance!
    Sudha Handadi

  • How to set a default output device for FAX outputs

    Hi Experts,
    Business requires to set a default output device for fax outputs ( Medium as 2 Fax medium ).
    as fas as print output ( medium as 1 print medium ) is considered we can maintain output device in condition record--> communication
    I tried maintaining output device in VP01 for my condition type based on sales org but it did not worked.
    Can you please suggest ways to achieve default output device for fax outputs.
    Thanks,

    Well, obvious solution would be to either update user profiles or change the output from 'process immediately' to 'process by a background job'. Then create a generic user ID with any fax number desired and use that user ID to process the output through the background job.
    This is not really an SD question, so if this simple option doesn't work for you, I'd suggest to discuss other custom solution with your ABAP / Basis team.

  • Record time duration for fax in vxml

    I am going to get the time duration used for fax sending in vxml:
    <transfer name="mycall" destexpr="'fax://' + phone_num" bridge="false" connecttimeout="120s" maxtime="180s" cisco-longpound="true" cisco-mailtoaddress="'xxxx'" >
    <catch event="telephone.disconnect.transfer">
    <assign name="mydur" expr="mycall$.duration"/>
    <goto next="#timeCount"/>
    </catch>
    </transfer>
    <var name="startTime" expr="new Date();"/>
    <var name="endTime"/>
    <form id="timeCount">
    <block>
    <assign name="document.startTime" expr="startTime.getTime();"/>
    <assign name="document.startTime" expr="Number(startTime);"/>
    <assign name="document.endTime" expr="new Date();"/>
    <assign name="document.endTime" expr="endTime.getTime();"/>
    <assign name="document.endTime" expr="Number(endTime);"/>
    <assign name="mydur" expr="document.endTime - document.startTime;"/>
    </block>
    </form>
    But mycall$.duration is 0 after transferring fax.
    And even if I use codes to count time duration, the duration, mydur, is about the same regardless of the number of pages sent.
    Is it possible to use vxml to record time duration of fax?
    Thank you!

    Paste the following Config:
    sh ver
    sh run
    debug of one call demonstrating the problem :
    debug voip ivr all
    debug vxml all

  • Setting Message Class via Content-Type for Faxes

    Hello,
    I am trying to set the message class for inbound email messages (with a fax attachment) from the internet.  The class that I am trying to set is IPM.Note.Microsoft.Fax.CA.  Exchange 2013 SP1 is being used.
    I have a transport rule set up which evaluates criteria on the incoming message, and then sets the Content-Class header to fax-ca.  Unfortunately, even though the content-class header is being set (I can see this is the headers when the message gets
    to Outlook), the message class is not changing and the message still has the IPM.Note class.
    On the other hand, if the transport rule is modified to set the Content-Class to voice-ca, the message class changes to IPM.Note.Microsoft.Voicemail.UM.CA.
    So it seems that it works for voice-ca, but not fax-ca.  Is there an Exchange setting that I have missed?  Is there a reason why this wouldn't work for fax?
    Thanks.

    Hello,
    Thank you for your question.
    I am trying to involve someone familiar with this topic to further look at this issue.
    Thanks,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • WANT TO USE M1217 printer on fax server but modem driver could not find

    Dear All
    I want to install HP Laserjet M1217 MFP on Window Server 2012 r2 and Use on windows Fax and Scan utility.
    but i think i need modem driver to use on this utility.
    therefore i need assistance  how can i use this dvice on Fax server.
    best regards
    Owais Farooq

    Hello Owais Farooq,
    The Windows Fax and Scan allow faxing with a Fax modem card installed on your PC, it does not allow using a such with the HP Device.
    The HP M1217 allow sending and recieving faxes from the computer through the HP Software , not through the operating system software.
    Regardless, the M1217 is compatible with Windows Server 2003 or 2008, it is incompatible with Windows Server 2012, as well any digital fax capabilities as faxing from / to the computer are only supported on a client operating system, not on a server.
    For a server only basic print and scan drivers are available as you may find in the user guide of the printer:
    http://h10032.www1.hp.com/ctg/Manual/c01760651.pdf
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • TS3147 I seem to have lost fax capability with Snow Leopard. Does not appear in Print as before. Cant find fax in system Preferences. No drivers for fax found Bob Wines.

    I seem to have lost fax capability with Snow Leopard.
    Does not appear in Print as before. Cant find fax in System Preferences. No drivers for fax found.
    Initially said it was downloading software but no longer does this. Fax test works on HP site.
    Using HPC410aHP Photosmart Premium
    Any help would be appreciated.
    Bob Wines.

    Thanks for your detailled description of the faxmodem installation!
    I've tried this with Mac OS X v10.8 Mountain Lion and it works fine.
    I've to type "cupsctl WebInterface=yes" in terminal to see the interface.
    Does anybody know, if send faxes are saved somewhere?

Maybe you are looking for

  • Error message while creating database

    Log error while creating new database Robot-properties XML Parsing Error: junk after document element Location: http://portalserver/psconsole/faces/search/RobotPropertiesHome.jsp Line Number 18, Column 1:<body id="_id3" onload="return _id3_jsObject I

  • PC External Hard Drive is Slowing my System Down

    Just switched to Mac this weekend and I put all my PC files and music on my External backup drive and plugged that into my new iMac via USB 2.0). No problem seeing the files and dragging them into the iMac but the external drive is slowing my whole s

  • Is there any way to remove multiple songs?

    For some reason, every time I connect my iPod to my computer, it double, triples and even quadruples some songs. Is there a way to get rid of them without deleting them one by one?

  • Spam on iPhone Email

    I have an independent email server, and I am getting a lot of spam on my iPhone. is there anti-spam software in the iPhone, or can it be added? Related question: is there anyway to select all the spam msgs on my iphone and then deleting them in one f

  • Missing/Empty iViews in Collaboration Room

    Hi all, I am currently working on Netweaver 2004s SP10. I created a collaboration room out of a customised room template. When I entered the room, the related links iView is empty. However, I have added the SAP standard room member list as a related