Automatically accepting file transfer via Bluetooth?

I'm often sending files from my cellphone to the Mac.
Alas, for each file I must again click "accept" in the Bluetooth File Exchange dialog. It is especially annoying since sometimes I do not even sit in front of the computer and just want to clear my phone's memory from afar.
Is there any way to have the files accepted to be received automatically?
Thanks!

What you need to do is the following:
On your blackberry:  Browse to Media, and select, pictures (for example), now press the menu button while in pictures and select "receive using Bluetooth"  Now send a file from your mac using the bluetooth file transfer.  This will work - if it doesn't then there may be an issue with either your mac or bb.  Let me know if you need further instructions.  Good luck.

Similar Messages

  • Problem with file transfer via Bluetooth

    I have been trying to receive some large files (43Mb) via bluetooth from another device but always get transfer fail message. But i could receive smaller flies...
    -Does this have anything to do with the device memory limit of 15MB?
    -How can i receive larger video files from other devices using bluetooth?
    -Does the BOLD have the same problem?
    Please help.
    Thanks

    What type of errors is being generated? Are you trying to save that file on device memory or media card? try moving that file on media card.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Toshiba AT300-101 file transfer via Bluetooth

    I am trying to transfer files from my AT300-101 tablet to my PC via Bluetooth but have been unable to.
    I have managed to pair and connect it
    on another note anyone know when the TOSHIBA AT300 Stand Case might be available to buy.
    Thanks

    >on another note anyone know when the TOSHIBA AT300 Stand Case might be available to buy.
    I googled around and already found one online shop who provides the TOSHIBA AT300 Stand Case
    >I am trying to transfer files from my AT300-101 tablet to my PC via Bluetooth but have been unable to.
    Did you try the Android App called: "Bluetooth File Transfer
    This allows you to send the files via Bluetooth directly to another smartphone or tabled without transferring this files to PC firstly.

  • File transfer via bluetooth on iPad

    So I have an iPhone 3GS and an iPad 2, both have iOS 5.0.1 installed.
    I was wondering if it were possible to transfer pictures from my iPhone to my iPad through the bluetooth connection.
    Or is there some other quick way to this?

    If you are just doing pictures, there are some apps availalbe, but as meg says, they are slow and i have found at least one to be unreliable to the point of uselessness.  So if you decide that you want one, read thr reviews carefully.
    If you are commonly within a wifi area, consider an app called photosync, which works very well between devices and the computer.    Pictures only. But almost idiot proof.

  • N900 - File sharing via bluetooth

    How do I share files via bluetooth using my N900? For example, ringtones or pictures. Can pair to a device, but can't find an option to send a file.

    try this post for info
    /t5/Maemo-Devices/Files-transfer-through-Bluetooth/m-p/600584#M2514
    If this Post is helpful. A click on the White Kudos star is always Appreciated
    Last Nokia: Nokia Lumia 800
    Current Phone: A Non Nokia Device
    Previous Phones:Don't Ask ;-)

  • File sharing via bluetooth

    How do I share files with other mobiles and with my PC using the bluetooth.  When I try to send a browse my blackberry or send files from my Mac, I receive a message indicating "the device does not have the necessary services." I receive this same message when pair and try to exchange files with another mobile phone.   

    Hi habiba5,
    We'd love to help you out, can you please elaborate your concern about file sharing via Bluetooth. Where you able to download the Bluetooth share app from Marketplace? What happened when you try to send a file using Bluetooth? 
    If my post helped you, please don't forget to click on the "White Star" and if it resolved your issue click on "Accept as Solution"

  • Does iPhone SDK support the feature of data transfer via Bluetooth or USB?

    Hi,
    I'm developing a application in which I want a feature for data transfer either using Bluetooth or USB.
    Does iPhone SDK support this feature of data transfer via Bluetooth or USB?
    Please help me.
    Thanks.

    The SDk doesn't deal with BlueTooth or USB. Your only option is wireless data. (WiFi, 3G, etc)

  • Access files received via Bluetooth in Work Space

    Hi everyone,
    I have a problem regarding Personnal and Work space, let me explain it...
    No matter the space I chose, Bluetooth files received via OBEX protocol will always be stored in Personnal space. Is there a way to receive it in Work space ?
    Thanks for helps !

    For some reason PC suite dont have that option to see inbox messages received via bluetooth would be better if it comes in the future PC suite updates only way to see it to open and save those files on to your phone and access it using file manager, also its easy too
    Message Edited by krizanand on 24-Sep-2009 06:51 PM
    If a reply has solved your problem click Accept as solution button, doing it will help others know the solution. Thanks.

  • Files recieved via Bluetooth in message folder

    Hi, I've recieved a couple of files via bluetooth and they sit in my messages folder - they are ms objects such as powerpoint & visio.
    I thought I'd be able to viw them or save them using my PC and Nokia Pc Suite - however I can't see how to havigate to them using file manager, and the messaging part of PCS doesn't recognise the bluetooth files.
    Any ideas how I can access them?
    Thanks

    For some reason PC suite dont have that option to see inbox messages received via bluetooth would be better if it comes in the future PC suite updates only way to see it to open and save those files on to your phone and access it using file manager, also its easy too
    Message Edited by krizanand on 24-Sep-2009 06:51 PM
    If a reply has solved your problem click Accept as solution button, doing it will help others know the solution. Thanks.

  • Fast file transfer via sockets

    Hi,
    I have made little program that sends files via lan to my other computer using sockets (ServerSocket and Socket). When I code my program to use only FileInputStream and FileOutputStream throught the sockets I get only speed about 100Kbs even when I run them in localhost.
    I would really like to have examples of faster way to send and receive files throught sockets? Any samples using buffers or compressing data would be very nice. Thank you very much in advance!
    Sincerely,
    Lauri Lehtinen

    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.net.ServerSocket;
    import java.net.Socket;
    * FileServer.java
    * Created on January 18, 2005, 2:21 PM
    * @author  Ian Schneider
    public class FileServer {
        static class Server {
            Socket client;
            public Server() throws Exception {
                ServerSocket s = new ServerSocket(12345);
                while (true) {
                    client = s.accept();
                    File dest = new File(System.getProperty("java.io.tmpdir"),"transfer.tmp");
                    InputStream data = client.getInputStream();
                    OutputStream out = new FileOutputStream(dest);
                    byte[] bytes = new byte[1024];
                    int l = 0;
                    int cnt = 0;
                    long time = System.currentTimeMillis();
                    while ( (l = data.read(bytes)) >= 0) {
                        cnt += l;
                        out.write(bytes,0, l);
                    int kb = cnt / 1024;
                    int sec = (int) (System.currentTimeMillis() - time) / 1000;
                    System.out.println("transfered " + kb/sec);
                    out.flush();
                    out.close();
                    client.close();
        static void writeToServer(String fileName) throws Exception {
            Socket s = new Socket("localhost",12345);
            OutputStream out = s.getOutputStream();
            FileInputStream in = new FileInputStream(fileName);
            byte[] bytes = new byte[1024];
            int l = 0;
            while ( (l = in.read(bytes)) >= 0) {
                out.write(bytes,0,l);
            out.flush();
            out.close();
            in.close();
        public static final void main(String[] args) throws Exception {
            if (args[0].equals("server")) {
                new Server();
            } else {
                writeToServer(args[1]);
    }You may see improvements by buffering these. I didn't bother testing.

  • Ringtones transfer via bluetooth to Blackberry 8100

    Im having problem transfering the ringtones from the Imac to the 8100. Already looked on how to do it and the files seems to be transferring until the last minute. When the file finishes transferring, i get the following message "The file transfer failed:internal error"
    What do I need to do to avoid this from happening? Tks.

    Welcome to Apple Discussions!
    Since bluetooth file sharing with a phone is a form of networking, I think it better if you ask the question here since your profile also says you are running Tiger (10.4.10):
    http://discussions.apple.com/forum.jspa?forumID=755
    Where you posted is a constructive feedback board for Discussions itself, and not a place for technical questions about your Mac. If you are not running 10.4.10 on the Mac you are attempting to network via Bluetooth, please state which operating system you are running, and we'll direct you to the right place.

  • How to set up for file transfers via Bluetooth

    Hi all,
    I have a blackberry bold 9000 which I need to set up to transfer some pics, etc to another phone (not a Blackberry) When I try to connect from the other phone it says
    "You can't connect with target device because it lacks of the File Transfer Profile (OBEX FTP) and/or the Object Push Profile (OBEX OPP) Bluetooth services"
    Can anyone tell me how to get these??
    The other phone is a HTC Magic.
    Thanks in advance.

    Which device is the "target" device?  From what you describe it sounds like the HTC is the target device and that would be an issue with that device, not the BB.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • Problem with file transfer via wi-fi!

    Hi, folks,
    Please, could someone help me to get a music file I made using Groovemaker app?
    After finish the mix, I built a song. Then, I saved it in the "mix browser".
    In the end of the exporting process, I typed the URL address displayed in the browser (http://192.168.0.188:5555/, on Firefox, Chrome and IE), but something gone wrong and, every time I export the same song - it's my first exporting action - I got a message such "The page hasn't loaded... limit time reached".
    What's the problem with my wi-fi connection? Should I set something in my router? According to the company website (http://www.groovemaker.com/gmiphone/features/) this kind of wi-fi file transfer is easy, but not to me...
    Thanks in advance!
    Alex

    What type of errors is being generated? Are you trying to save that file on device memory or media card? try moving that file on media card.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • User to User file transfer via FMS or RED5 in AIR application.

    Hello!
    It is possible to make file transfer from air application via server?
    I think need to create like byte array streaming or somethink like this from sender and write the destination file on receiver user pc.
    Someone know how to do this? It is possible?
    Thanks.

    Search more on socket class you can send anything between two machines using them
    see the code snippet below:
        sc = new Socket("<IP address>",8000);
      sc.connect("<IP address>",8000);
      sc.addEventListener(ProgressEvent.SOCKET_DATA, readFromServer);
      sc.writeUTFBytes("Hi this will be sent to the IP address provided by you on port no 8000!\n");
      sc.flush();

  • .WMV files sent via Bluetooth

    I am trying to send a .WVM file from my computer via Bluetooth to my N73.
    The message is recvd but when I trry to open it i get the message "Unknown File Format"
    Any ideas how to get 'round the problem to open the message.

    "MP4" is an ambiguous term. For exact audio and video codecs, as well as bitrates, resolutions see the table here:
    http://www.forum.nokia.com/main/resources/technologies/audiovideo/av_features/FN_vid_table.html

Maybe you are looking for

  • Iphone music won't show up in itunes

    Hi, I have an Iphone4s with IOS6. I recently put about 20 songs on my iphone from itunes and put these songs in a playlist.The only music that was there before this was a song I purchased. I can play the songs from my iphone just fine, but when I hoo

  • Find certain areas of text from a text file

    Hello all java Gurus! I need your help on something I am trying to do in order to learn java. I am very newbie and please show mercy if I don't understand every answer you probably give me. Here is my problem. I have text file with certain areas I ne

  • Import flash to dreamweaver

    Hi, I made a flash animation ending with "Table of Contents" on a book background, and I made the same background as a webpage with fireworks and dreamweaver, and I made the same "Table of Contents" as links to the different pages. Can someone tell m

  • Playlists MUST be in alphabetical order?

    I want to arrange my classical music playlists in order of the time composers were active. For example, I want Mozart, Beethoven, Brahms in that order. But playlists by default give me Beethoven, Brahms, Mozart in alphabetical order. I tried moving t

  • New release of iPod touch

    Hello Can anyone tell me if there is any difference in hardware between the 4G and the new version released last week? Many thanks