How to press the CALL button on the page to dial the number on the mobile, connected via Bluetooth to the computer? Or at least send SMS :)
- 6Monsieur knows a lot about perversions? ))) - Deonis
- fourOption 1. Find a vulnerability in the browser, write an exploit, which at the same time will dial the number on the mobile, connected via bluetooth to the computer, or at least send SMS. Option 2. Run a program on the computer that will monitor the actions on the web page and send commands to the call / SMS to the phone - ReinRaus
- First you need to install Skype and see how callto works, which will replace Skype login with a link to which you can click. if I understand correctly for this, a plugin is used which instead of the Skype username delivers a special link (to the file? and it registers a separate content type which is processed by the program you need). But the interaction with your phone is already more difficult to organize. there are too many models and there is no universal program for working with them) - jmu
- @jmu, bluetooth, as it were, was created to synchronize with devices, this is a protocol. Communication through TCS is quite realistic. - istem
- oneLooks like no one, I know a lot about perversions :) ( telefum.com ) - Taypfoon
3 answers
Two options:
- Write a browser plugin (like Skype plugin on phone number links)
- Send a request to the server and on the server side to write whatever your heart desires.
In Linux, there were several packages on this topic, as I understand, there is a server (say, an Apache) site on it, a mobile phone should call or send sms on the call site, there is a lot of fooling to call, websockets, html5 / flash audio stream, etc. , for sms, everything is simple - we run a script and voila - it’s ready (there may be some astrisk plug-ins, both for phones (headset emulation) and for routing the audio stream to the web.
I summarize:
- linux
- Astrisk
- asterisk-mobile
- plugin for webcasting need to search / write
- ubuntu-server + asterix is a long-standing model. Interested in the ability to do this without a server. - Taypfoon
- And you will connect to a mobile phone? if this is a service for users, as barmaley said, extensions for all browsers. - zb '
1) java
2) if you need to dial numbers from your site, the plugin is not necessary to write It is enough to register your protocol (which is quite simply done through the registry http://msdn.microsoft.com/en-us/library/aa767914.aspx )
And make a link
<a href="callto:+380951234567">380951234567</a>
The browser starts up ekzeshnik. And the executable sends AT to the ATD team +380951234567
- uh ... and who will give the web page to edit the registry? - VladD
- The web page of the registry can not edit. This is done. Reg file - Alexander Banov