| Notices | Thank you for visiting the Everything Q forums, the #1 Moto Q community in the world. To get the most out of your experience, please take a moment to register. Registration is free and you'll receive a coupon code to save 20% off Moto Q software. Other member benefits include: - Faster and easier to search the forums.
- Receive notifications regarding topics of interest.
- Send and receive personal messages with other members.
- Take advantage of our social networking capabilities.
- View photos that appear in forum topics, including free Q homescreens and wallpapers.
- Download free Moto Q software.
- See less ads!
- Many more benefits...
Click here to register! |
06-22-2007, 08:59 AM
|
#1 (permalink)
|
Join Date: May 2007 Location: Kentucky
Posts: 49
Thanks: 2
Thanked 1 Time in 1 Post
| Setting Vibration for continuous while ring tone is playing Just to clarify, I have searched the forums. I've also found where you can edit the code but here's the issue I'm having:
Here is my current code: av3pr
This activates the phone, vibrates for 3 seconds, plays ring tone, and repeats.
What I would like is for the phone to vibrate every 3 seconds WHILE the phone is also ringing. Sometimes I have the phone in my pocket and I miss the vibrate for some odd reason and sometimes I can't hear the ringtone either so I miss the call.
I tried doing: av3pv3v3r but according to the code it will play the ring tone THEN vibrate. I make my own ringtones and they are usually 20 seconds in length so it wouldn't be convenient for it to vibrate after the ring tone finishes because it would be to late by then.
Anybody have any ideas?
Please help! |
| |
06-22-2007, 09:32 AM
|
#2 (permalink)
| | Super Moderator
Join Date: Feb 2007 Location: Princeton, NJ
Posts: 23,357
Thanks: 322
Thanked 2,470 Times in 2,088 Posts
| Quote:
Originally Posted by blazinazn Just to clarify, I have searched the forums. I've also found where you can edit the code but here's the issue I'm having:
Here is my current code: av3pr
This activates the phone, vibrates for 3 seconds, plays ring tone, and repeats.
What I would like is for the phone to vibrate every 3 seconds WHILE the phone is also ringing. Sometimes I have the phone in my pocket and I miss the vibrate for some odd reason and sometimes I can't hear the ringtone either so I miss the call.
I tried doing: av3pv3v3r but according to the code it will play the ring tone THEN vibrate. I make my own ringtones and they are usually 20 seconds in length so it wouldn't be convenient for it to vibrate after the ring tone finishes because it would be to late by then.
Anybody have any ideas?
Please help! | did you go to start..settings...profiles...then scroll over the profile that you want and hit menu...edit
if you go down to 'Ring Type' there is an option for vibrate then ring or ring and vibrate...check it out |
| | | The Following User Says Thank You to n99hockey For This Useful Post: | |
06-22-2007, 09:39 AM
|
#3 (permalink)
| | Super Moderator
Join Date: Feb 2007 Location: Princeton, NJ
Posts: 23,357
Thanks: 322
Thanked 2,470 Times in 2,088 Posts
| or you can try this part of the Hack Section |
| |
06-22-2007, 09:44 AM
|
#4 (permalink)
|
Join Date: May 2007 Location: Kentucky
Posts: 49
Thanks: 2
Thanked 1 Time in 1 Post
| Quote:
Originally Posted by n99hockey | That link doesn't describe anything relating to what I'm looking for. It's dealing with other stuff. |
| |
06-22-2007, 09:50 AM
|
#5 (permalink)
| | Super Moderator
Join Date: Feb 2007 Location: Princeton, NJ
Posts: 23,357
Thanks: 322
Thanked 2,470 Times in 2,088 Posts
| Quote:
Originally Posted by blazinazn That link doesn't describe anything relating to what I'm looking for. It's dealing with other stuff. | did the link point to this post? Change ringtone/vibrate/LED flash characteristics
If you would like more control over how your device rings/vibrates/flashes its LEDs on events, you can change the Script values of these events. For example, for an incoming call performing 'activate device, play ringtone, wait 3 seconds, repeat': HKCU\ControlPanel\Sounds\RingTone0\Script = "apw3r" (REG_SZ string, no quotes) For performing 'active device, set volume to 33%, play ringtone, set volume to 67%, play ringtone, set volume to 100%, play ringtone (no repeat)': HKCU\ControlPanel\Sounds\RingTone0\Script = "ac33pc67pc100p" (REG_SZ string, no quotes) The following are the full codes available to you. Please note that all the codes are executed simultaneously except after a ringtone play / wait code. E.g. 'v1p' will vibrate and play at the same time, while vibrating for 1 second. But 'pv1' will play the ringtone through all the way first, then start vibrating for 1 second. a = activate device cN = set volume to N in percentage max volume fN = flash notification LED for N seconds p = play ringtone. Note that this will play the ringtone all the way through before continuing with the next code. r = repeat. Note that this should be the last code in your Script string, if used at all. vN = vibrate for N seconds wN = wait for N seconds. Note that the device will wait this long before continuing with the next code. |
| |
06-22-2007, 09:54 AM
|
#6 (permalink)
|
Join Date: May 2007 Location: Kentucky
Posts: 49
Thanks: 2
Thanked 1 Time in 1 Post
| Quote:
Originally Posted by n99hockey did the link point to this post? Change ringtone/vibrate/LED flash characteristics
If you would like more control over how your device rings/vibrates/flashes its LEDs on events, you can change the Script values of these events. For example, for an incoming call performing 'activate device, play ringtone, wait 3 seconds, repeat': HKCU\ControlPanel\Sounds\RingTone0\Script = "apw3r" (REG_SZ string, no quotes) For performing 'active device, set volume to 33%, play ringtone, set volume to 67%, play ringtone, set volume to 100%, play ringtone (no repeat)': HKCU\ControlPanel\Sounds\RingTone0\Script = "ac33pc67pc100p" (REG_SZ string, no quotes) The following are the full codes available to you. Please note that all the codes are executed simultaneously except after a ringtone play / wait code. E.g. 'v1p' will vibrate and play at the same time, while vibrating for 1 second. But 'pv1' will play the ringtone through all the way first, then start vibrating for 1 second. a = activate device cN = set volume to N in percentage max volume fN = flash notification LED for N seconds p = play ringtone. Note that this will play the ringtone all the way through before continuing with the next code. r = repeat. Note that this should be the last code in your Script string, if used at all. vN = vibrate for N seconds wN = wait for N seconds. Note that the device will wait this long before continuing with the next code. |
No it didn't. But I have seen that post and I have used it. This is what I was talking about when I was referring to the code I was using.
aV3Pr is the code I'm using.
activate, vibrate for 3 seconds, play ringtone, repeat.
After vibrating for 3 seconds it won't again until the ringtone is completed. I would like for it to vibrate WHILE the ringtone is still ringing. According to the legend: p = play ringtone. Note that this will play the ringtone all the way through before continuing with the next code.
I was wondering if there was any way to make the phone vibrate for 3 seconds, wait 1 second, and have it loop the same time the ringtone is playing. |
| |
06-22-2007, 09:58 AM
|
#7 (permalink)
| | Super Moderator
Join Date: Feb 2007 Location: Princeton, NJ
Posts: 23,357
Thanks: 322
Thanked 2,470 Times in 2,088 Posts
| Quote:
Originally Posted by blazinazn No it didn't. But I have seen that post and I have used it. This is what I was talking about when I was referring to the code I was using.
aV3Pr is the code I'm using.
activate, vibrate for 3 seconds, play ringtone, repeat.
After vibrating for 3 seconds it won't again until the ringtone is completed. I would like for it to vibrate WHILE the ringtone is still ringing. According to the legend: p = play ringtone. Note that this will play the ringtone all the way through before continuing with the next code. I was wondering if there was any way to make the phone vibrate for 3 seconds, wait 1 second, and have it loop the same time the ringtone is playing. |
have you tried
aV3w1v3Pr
?? (i have not done any of these myself and im just trying to put stuff out there for you to try  ) |
| |
06-22-2007, 11:20 AM
|
#8 (permalink)
|
Join Date: May 2007 Location: Kentucky
Posts: 49
Thanks: 2
Thanked 1 Time in 1 Post
| Quote:
Originally Posted by n99hockey have you tried
aV3w1v3Pr
?? (i have not done any of these myself and im just trying to put stuff out there for you to try  ) | I have tried this. This will:
activate the phone, vibrate for 3, wait 1, vibrate 3, THEN play the ring tone, repeat
I guess there is no way around this since the phone can only do 1 code of line at a time....but v1p vibrates & plays at the same time, why can't it keep vibrating when the song is playing!??!?! |
| |
06-22-2007, 11:38 AM
|
#9 (permalink)
|
Join Date: May 2007
Posts: 36
Thanks: 7
Thanked 0 Times in 0 Posts
| From the home screen...scroll down to Profile and click...
Select the profile you want...I use Normal and haven't looked through all of them to see if they offer the same features...
With the profile you want highlighted, select Menu then Edit...
Scroll down to Ring Type(the 2nd option) and choose Ring and Vibrate
No need to edit the Reigistry.
I just looked at a couple of different profiles and it looks like they all off Ring and Vibrate. |
| |
06-22-2007, 12:08 PM
|
#10 (permalink)
| | Super Moderator
Join Date: Feb 2007 Location: Princeton, NJ
Posts: 23,357
Thanks: 322
Thanked 2,470 Times in 2,088 Posts
| Quote:
Originally Posted by txflood3 From the home screen...scroll down to Profile and click...
Select the profile you want...I use Normal and haven't looked through all of them to see if they offer the same features...
With the profile you want highlighted, select Menu then Edit...
Scroll down to Ring Type(the 2nd option) and choose Ring and Vibrate
No need to edit the Reigistry.
I just looked at a couple of different profiles and it looks like they all off Ring and Vibrate. | i already suggested that...and its not what he wants... |
| | | Thread Tools | | | | Display Modes | Linear Mode |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | All times are GMT -5. The time now is 06:05 PM. |