Thursday, April 29, 2010

RE: DROID ERIS RESET

 

 

From: Akkati, Naveen R.
Sent: Thursday, April 29, 2010 4:24 PM
To: 'nrakkati.winred@blogger.com'
Subject: DROID ERIS RESET

 

Perform a hard reset on your HTC Droid Eris. These steps will clear all data and settings off the device.

1. With the phone turned off, press and hold the Volume Down and Send buttons.

2. Press the Power button.

3. Follow the instructions to complete the hard reset.

Monday, April 26, 2010

gmail in smartphone

To configure the 'Email' app on an Android device for access to Gmail, just follow the steps below:

1. Enable IMAP in your Gmail settings.
2. On your phone, press < Home >, then open the Email application.
3. On the 'Your accounts' page, select Next to get started with setup.
4. Enter your full Gmail address and password, then select Next.
5. On the next screen, you can give the account a nickname and choose the name to display on your outgoing messages. Tap Done.

And you're done. You can verify your settings from the Inbox view by tapping < Menu > > Account settings.

Incoming settings
IMAP server: imap.gmail.com
Port: 993
Security type: SSL (always)

Outgoing settings
SMTP server: smtp.gmail.com
Port: 465
Security type: SSL (always)

Yahoo Mail in Android Eris smartphone

To set up Yahoo E-Mail on the Motorola Droid:

1. Make sure Wi-Fi is turned off
2. Press the E-Mail icon (the default Android E-Mail application)
3. Enter your Yahoo E-Mail address and password
4. Press “Manual Setup” in the lower left hand corner
5. For “Incoming Server Settings” set the IMAP server to “imap.mail.yahoo.com” and the Port to 143
6. For “Outgoing Server Settings” set the SMTP Server to “smtp.mobile.mail.yahoo.com” and the Port to 587
7. Check “Require sign-in” and press Next
8. Select how often your Droid will check for Email, and choose default options
9. Give the account a name and set your display name for outgoing messages

Done and done. You’ve now got Yahoo Mail on your Motorola Droid and it will work with the all-new “Combined Inbox” in Android 2.0. Beautiful.

Have to give credit to Smilepak who shared this with AndroidForums.com members after posting it on his blog.

Friday, April 16, 2010

code formating in blogger source code formating

http://formatmysourcecode.blogspot.com/





<pre style="font-family: Andale Mono,Lucida Console,Monaco,fixed,monospace; color: rgb(0, 0, 0); background-color: rgb(238, 238, 238); font-size: 12px; border: 1px dashed rgb(153, 153, 153); line-height: 14px; padding: 5px; overflow: auto; width: 100%;"><code>

Paste your text here.

</code></pre>

my autohotkey naveen.ahk


; #=win !=alt ^=ctrl +=shift

;my special button is Browser_Search. Use it ot assign F10


;AAA********************************************************************************
; this is for autoHotKeys
Ctrl & F12::reload ; this will reload the autoHotKeys tool
Shift & F11::edit ; This will load this script in Editor, Notepad
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@


;AAA********************************************************************************
;capture double click and do something
~LButton::
mousegetpos,,, wid, control
wingetclass, wclass, ahk_id %wid%
if (A_PriorHotkey = "~LButton" && A_TimeSincePriorHotkey < 400) ; double click
{
msgbox d2
; if (wclass = "Shell_TrayWnd" && control = "Button1") ; start
; run, explorer /e`, %location%
}
return
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@




;AAA********************************************************************************
; This is for SSH, use 'Ctrl+c for Copy' and 'Ctrl+v for Paste' and 'Ctrl+q for Command Interrupt'
; use right ctrl for interrupt
; use "stty intr ^q" for command prompt inturrpt
;now Right Ctrl+q command to inturrupt in SSH. Use it instaed of Ctrl+c in SSH
Ctrl & c::
WinGetActiveTitle, title
ifInString,title,SSH Secure Shell
{
Send ^{Insert} ; change CTRL+C to CTRL+INSERT ; both are copy commands, but can't use in SSH
return
}
Send ^c
return

Ctrl & v::
WinGetActiveTitle, title
ifInString,title,SSH Secure Shell
{
Send +{Insert} ; change CTRL+V to SHIFT+INSERT ; both are PASTE commands, but can't use in SSH
return
}
Send ^v
return
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@


;AAA********************************************************************************
; Middle button to move window to next monitor
; #a is defined in my other autohotkey
MButton::Send #a
;MButton::AltTabMenu ;AltTabMenu is special buuton..search for more
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@


;AAA*******************************************************************************
;WheelLeft & WheelRight in SSH*
WheelLeft::
{
Send !{LEFT}
}
return

WheelRight::
{
Send !{RIGHT}
}
return
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

;AAA********************************************************************************
XButton1::
{
Send {PgDn}
}
return

XButton2::
{
Send {PgUp}
}
return
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@



;AAA********************************************************************************
;if it is Toad, Show Single Record View
F1::
If WinActive("ahk_class TfrmMain")
{
WinGetActiveStats, title, width, height, x, y
;MsgBox, The active window "%title%" is %width% wide`, %height% tall`, and positioned at %x%`,%y%.
ypos := height-150
Click Right 450, %ypos% ; Mouse click below in DataGrid
Send s ;then send s letter which opens Single Record View
return
}
return
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@



;AAA********************************************************************************
;if onenote exist, close it
F12::
if WinExist("ahk_class Framework::CFrame")
{
WinMinimize
return
}
return
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

;AAA********************************************************************************
;this will create a new folder in win explorer
F8::
if WinActive("ahk_class CabinetWClass")
{
my_time_string = %A_YYYY%%A_MMM%%A_DD%_%A_Hour%%A_Min%%A_Sec%

Send !fwf ; will create new dir
Send %my_time_string%
Send {HOME}
;Send {RETURN}
return
}
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@





;AAA********************************************************************************
;map search button on(Mk700 mouse) to F10 or Browser_Search (Built-in Key)
Browser_Search::

;if its onenote, minimize
if WinActive("ahk_class Framework::CFrame")
{
Send {ALT}bi1{TAB}1{ENTER}{ALT}ba
return
}


;if explorer, create a new folder
if WinActive("ahk_class CabinetWClass")
{
my_time_string = %A_YYYY%%A_MMM%%A_DD%_%A_Hour%%A_Min%%A_Sec%

Send !fwf ; will create new dir
Send %my_time_string%
Send {HOME}
;Send {RETURN}
return
}



;if "Save As" dialoge box, insert date
;if open/save dialog, insert date
;ahk_class #32770 use windows-spy
if WinActive("Save As")
{
my_time_string = %A_YYYY%%A_MMM%%A_DD%_%A_Hour%%A_Min%%A_Sec%
;Send %A_Now%
Send %my_time_string%
return
}


; if "Open dialoge box, sort by date
if WinActive("Open")
{
Click 593,48
Click 593,159
Click 593,87
MouseMove 290,400
return
}


;if it is Toad, Open F4
If WinActive("ahk_class TfrmMain")
{
Send {Click}
Send {F4}
return
}

;if it is notepad++ or IE or Firefox -- changes tab
If WinActive("ahk_class Notepad++") | WinActive("ahk_class MozillaUIWindowClass") | WinActive("ahk_class IEFrame") | WinActive("ahk_class Chrome_XPFrame")
{
Send {Ctrl Down}{TAB}
Send {Ctrl Up}
return
}


/*
; if Firefox or IE or Chrome or OneNote, minimize windwows and
; then make notepad++ active. If opened notpad++ is not available, opens now
; If WinActive("ahk_class MozillaUIWindowClass") | WinActive("ahk_class IEFrame") | WinActive("ahk_class Chrome_XPFrame") | WinActive("ahk_class Framework::CFrame")
; {
; WinMinimize
; if WinExist("ahk_class Notepad++")
; {
; WinActivate
; return
; }
; if WinExist("ahk_class TfrmMain")
; {
; WinActivate
; return
; }

; run notepad++
; return
; }
*/
return
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@





;AAA********************************************************************************
;Assign extra button(search) to F10, just F10. press ctrl on keyboard and then press this button.
;in oneNote chnage Font and Size
;in Word and Outlook chnage Font and Size
;in winExplorerer Rename file wite date at the end.

^Browser_Search::
; in OneNote Chnage Font & Size
if WinActive("ahk_class Framework::CFrame")
{
Send ^+P
Send 11{Return} ;send ctrl+shift+P which is font size. then 10{enter} chnage it 10 size.
Send ^+F
Send Calibri{Return} ;send ctrl+shift+F which is font size. then 10{enter} chnage it 10 size.
return
}

;in Word and Outlook chanage Font and Size
if WinActive("ahk_class OpusApp") | WinActive("ahk_class rctrl_renwnd32")
{
Send ^+P
Send 11 ;send ctrl+shift+P which is font size. then 10{enter} chnage it 10 size.
Send !+F ; Send Alt+f to move cursor to font dropdown
Send Calibri{Return} ;send ctrl+shift+F which is font size. then 10{enter} chnage it 10 size.
return
}

;in winExplorerer Rename file with date at the end.
if WinActive("ahk_class CabinetWClass") ;this will create copy of a file
{
;local selectedFiles, file
ControlGet, selectedFiles, List, Selected Col1, SysListView321, ahk_class CabinetWClass
MsgBox %selectedFiles%
Loop, Parse, selectedFiles, `n ; Rows are delimited by linefeeds (`n).
{
file := A_LoopField
;msgbox "%file%"
IfInString,file,.
{
pos := StrLen(file) - InStr(file,".",false,0) + 1
my_time_string = %A_YYYY%%A_MMM%%A_DD%_%A_Hour%%A_Min%%A_Sec%
;Send {F2}{Shift Down}{Left %pos%}{Shift Up} ;don't delete
;Send {F2}{Shift Down}{Home}{Shift Up} ;don't delete
Send {F2}{Left %pos%}
Send _%my_time_string%
}
}
return
}
return
;ZZZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@





















































/*
---------------------------------------------
----------------------------------------------
----------------------------------------------
------------------------------------------------
-------------------Samples ----------------
*/

/*
Browser_Search::
{
msgbox "Browser_search"
return
}
return
*/

/*
If WinActive("ahk_class MozillaUIWindowClass") | WinActive("ahk_class IEFrame")
WinMinimize



*/


/*
#ifWinActive ahk_class CabinetWClass
Send !fwf
return
#ifWinActive

is same as

if WinActive("ahk_class CabinetWClass")
Send !fwf
return
}
*/


/*

if WinExist("ahk_class IEFrame")
WinMinimize
else if
Run Notepad++
else
Run Notepad
return

*/

;MButton::WinMinimize, A

/*
; MIddle button to open Notepad
MButton::
IfWinExist Untitled - Notepad
WinActivate
else
Run Notepad++
return
*/

/*
WheelDown::
MsgBox WG
Send {WheelDown}
return
; if no return, it will run the next command
; if {} around WheelDown, it will be Pasted. not treaked as command
*/

/*
; back/farword buttons
XButton1:: MsgBox XBBBBBBBBBBBBBB1
XButton2:: MsgBox XBBBBBBBBBBBBBB2
*/

; ^Down::WinMinimize, A ; Assign CTRL+DOWN hotkey to minimize the active window.

/*
;goto subroutine
#a::
gosub MoveWindowToNextScreen
return
*/

/*
;call finction
#a::
gMoveWindowToNextScreen()
return
*/



/*

; from http://www.autohotkey.com/forum/viewtopic.php?t=10085
GetExplorerSelectedFile()
{
local selectedFiles, file

ControlGet, selectedFiles, List, Selected Col1, SysListView321, ahk_class CabinetWClass

; MsgBox %selectedFiles%

Loop, Parse, selectedFiles, `n ; Rows are delimited by linefeeds (`n).
{
If (A_Index = 1)
file := A_LoopField
Else
ErrorLevel := A_Index ; Indicate that several files are selected, we return only the first one
}
Return file
}

*/

/*
if WinActive("ahk_class CabinetWClass") ;this will create copy of a file
{
;local selectedFiles, file
ControlGet, selectedFiles, List, Selected Col1, SysListView321, ahk_class CabinetWClass
;MsgBox %selectedFiles%
Loop, Parse, selectedFiles, `n ; Rows are delimited by linefeeds (`n).
{
file := A_LoopField
;msgbox "%file%"
IfInString,file,.
{
pos := StrLen(file) - InStr(file,".",false,0) + 1
my_time_string = %A_YYYY%%A_MMM%%A_DD%_%A_Hour%%A_Min%%A_Sec%
;Send {F2}{Shift Down}{Left %pos%}{Shift Up} ;don't delete
;Send {F2}{Shift Down}{Home}{Shift Up} ;don't delete
Send {F2}{Left %pos%}
Send _%my_time_string%
}
}
return
}
return
*/

/*

FileSelectFolder, myFolder
msgBox %myFolder%

*/


/*
;MButton::
;If WinActive("ahk_class MozillaUIWindowClass") | WinActive("ahk_class IEFrame") | WinActive("ahk_class Chrome_XPFrame") | WinActive("ahk_class Framework::CFrame")
;{
;Send #a
;}

;MButton::Send #a

;WheelDown::Send {F8}
;WheelUp::Send {F8}

;MButton & WheelDown::
;{
;Click
;WinMinimize,A
;}

;XButton1::Send {XButton1}
;XButton1 & LButton::
;{
;Click
;WinMinimize,A
;}

;WheelUp::
;{
;ControlGetFocus, fcontrol, A
;Loop 9 ; <-- Increase this value to scroll faster.
; SendMessage, 0x114, 1, 0, %fcontrol%, A ; 0x114 is WM_HSCROLL and the 1 after it is SB_LINERIGHT.
;return
;}

*/

/*


; you get this from windows-spy (right click on autoHotKey)
; NOTE: "Display full path in title bar" must be checked in "folder options" of Windows Explorer.

; if in WindowsExplorer -
; if clicked on blank area - create new folder with date
; if clicked on Directory - add date at end
; if clicked on file - add date before extention and
; strip "Copy of " if there is one - on File or Folder

;if "Save As" dialoge box, insert time

; if "Open" dialoge box, sort by date

; if Firefox or IE or Chrome or OneNote, minimize windwows and
; then make notepad++ active. If opened notpad++ is not available, opens now

;if it is Toad, Toggle SQL Window

;if it is notepad++ --chnages tab


;Click ; send click so it works for the window uder mouse, not the active window. --this has issues


; MouseGetPos, xpos, ypos
; Msgbox The cursor is at X%xpos% Y%ypos%
; if ypos < 26 ;clicked on title bar
; msgbox aaaaaaaaaaaa
; else
; msgbox bbbbbbbbb


; if in WindowsExplorer -
; if clicked on blank area - create new folder with date
; if clicked on Directory - add date at end
; if clicked on file - add date before extention and
; strip "Copy of " if there is one - on File or Folder
if WinActive("ahk_class CabinetWClass")
{
my_time_string = %A_YYYY%%A_MMM%%A_DD%_%A_Hour%%A_Min%%A_Sec%

;local selectedFiles, file ; this(local, define variable) is goog inside function only
ControlGet, selectedFiles, List, Selected Col1, DirectUIHWND3, ahk_class CabinetWClass

ControlGetText, path1, ToolbarWindow322, A
MsgBox %path1%

;MsgBox %selectedFiles%

; NOTE: "Display full path in title bar" must be checked in "folder options" of Windows Explorer.
WinGetActiveTitle apath
;msgbox %apath%

; if nothing was selected , create a folder and return immeidatly
If (StrLen(selectedFiles) = 0)
{
Send !fwf ; will create new dir
;Send %A_Now%
Send %my_time_string%
Send {RETURN}
return
}

; if something was selected , rename it
Loop, Parse, selectedFiles, `n ; Rows are delimited by linefeeds (`n).
{
file := A_LoopField
;msgbox "%file%"


IfInString,file,.
{
pos := StrLen(file) - InStr(file,".",false,0) + 1
;Send {F2}{Shift Down}{Left %pos%}{Shift Up} ;don't delete
;Send {F2}{Shift Down}{Home}{Shift Up} ;don't delete


;msgbox "%file%"

NewStr_noCopy := RegExReplace(file,"Copy of ", "") ; strip "Copy of "
NewStr := RegExReplace(NewStr_noCopy,"(\..*$)", "_XX123YYY_$1") ; add uniqe value
NewStr1 := RegExReplace(NewStr,"_XX123YYY_",my_time_string) ;replace uniq value with date
;msgbox %NewStr1%

FileMove %apath%/%file%, %apath%/%NewStr1%

;Send {F2}{Left %pos%}
;Send _%my_time_string%
;Send {Return}
}
else
{
;pp := StrLen(file) ; this is folder or file with no extention
;Send {F2}{Right 1}
;Send _%my_time_string%

NewStr_noCopy := RegExReplace(file,"Copy of ", "") ; strip "Copy of "
NewStr1 = %NewStr_noCopy%_%my_time_string%

msgbox %NewStr1%
FileMoveDir %apath%/%file%, %apath%/%NewStr1% ; this will rename folder
FileMove %apath%/%file%, %apath%/%NewStr1% ; this will rename file with no ext means no . in it

}
}
;msgbox "Rename Done"

return
}

*/

Friday, April 9, 2010

Alarm Sound off in Droid Eris Android MObile phone

Droid

Jolest's  Avatar

Member #2268
Join Date: Nov 2009
Posts: 48
Phone: HTC Eris (HTC Droid Eris)
Well, it's possible that she managed to set the alarm volume to zero... (Each type of sound has its own independent volume... Unfortunately, there doesn't seem to be a way to adjust the alarm volume unless the alarm sound is playing -OR- you're at the right place in the clock app...)

Try this...
1) Open the clock app.
2) Select the Timer.
3) Tap the "Alert sound" button.
4) Click the volume rocker -up- a couple of times.
5) Tap the "Snooze" sound.

As long as you're on the alert sound selector dialog, you can adjust the alarm volume. Each time you tap the "Snooze", it should beep for about 8 seconds.

Let us know if this fixed it or not.
Jolest is offline Reply With Quote
Old 11-10-2009, 12:56 PM #5
Droid Newbie

reeves6347's  Avatar

Member #2633
Join Date: Nov 2009
Posts: 1
Phone: droid eris
OMG! thank you so much! i have spent the last few days in rage at my alarm not working. i spent hours on the phone with tech support, no help at all! this got the job done. thanks

Tuesday, April 6, 2010

Google Tasks on Android

Help forum > Google Mobile > Android Devices > Google Tasks on Android

Google Tasks on Android Report abuse

sicario
Level 1
2/2/09
The Google blog post announcing tasks for Android and the iPhone has a video, which shows a way to add a shortcut or application on the iPhone desktop, is this possible with Android? I do not see any of those options on the G1...

http://gmailblog.blogspot.com/2009/02/tasks-paper-vs-iphone.html

Best answers

flape
Level 2
9/20/09
Best answer - sicario (Asker) Go to this answer
One can use native application called gTasks from Android market which can sync with Google Tasks
84 of 96 people found this answer helpful. Did you?
Yes
No
Report abuse

Replies 1 - 25 of 25

Merk7
Level 2
2/2/09
Use the Market app AnyCut to make a shortcut easily.
8 of 24 people found this answer helpful. Did you?
Yes
No
Report abuse
Eth@n
Google Employee
2/5/09
Alternatively, you can follow these steps to add a link to Tasks on your G1's home screen:

1. In the browser, go to http://gmail.com/tasks.
2. Press <> and select Bookmarks. Go ahead and add the bookmark to the Tasks site.
3. Press <> to return to your home screen.
4. Press <> and select Add.
5. Select Shortcut > Bookmark.
6. Choose the bookmark to the Tasks site. A new icon instantly appears on your home screen, offering you quick access to Tasks.

Hope that helps!

Ethan
99 of 109 people found this answer helpful. Did you?
Yes
No
Report abuse
caetanosauer
Level 1
5/19/09
Just an addition to the previous reply. If you are in Germany, the address to go is http://mail.google.com/tasks

Caetano.
7 of 10 people found this answer helpful. Did you?
Yes
No
Report abuse