Previously in GB and ICS I was using homemyhome but this app is not working in JB and I have been looking for a replacement for lomng time
Finally I found it .... and it works in JB
very simple application that allow the user to
start favorite application by double tap on key.
(Description)
-HOME key > HOME key > App
-HOME key > Search key > App
-HOME key > Menu key > App
-HOME key > Back key > App
-Long press of search key > App
-Long press of camera key > App
-Your favorite application can be started.
e.g., Camera, Browser, Twitter, MySettings
-Your favorite shortcut can be started.
e.g., Bookmark, Direct dial, SiMi Folder Widget
The name is home2 shortcut and can is free on the market
https://play.google.com/store/apps/details?id=com.eikatou0.appspot.home2shortcut&hl=en
Related
1 This will open a "Run.." dialog like in normal windows:
- Hold the 'action' button (center button of the d-pad)
- Tap and hold the clock icon
- Release both and select "run"
2 - Hold the 'action' button (center button of the d-pad)
- tap and keep the stylus on the name of the active window
- Release both and a window pops up with info about the selected window or it's parent
regards
edward
Cool!!
Nice! It works
lol, WM5 did that too... and it is pretty useless unless you're running in exe in the windows folder, so you don't have to wait 45 seconds for the explorer to display the folder contents.
"Run" dialog -- shortcut?
Hi,
does anyone know, how to link this to a shortcut? (I disabled the clock in taskbar )
Thx,
Stephan
Is it possible to go directly to the control panel by clicking on a Start Menu shortcut (new tflo3d interface for Start Menu)?
Thanks
I'll rephrase.
Is it possible to create a shortcut (or run an app) which would open the control panel (settings window)?
I would also like to know if this is possible.
Everyone,
Does anyone know how to set up a keyboard shortcut to the Start Menu? I want to be able to press a button on the keyboard to open the start menu. I can assign a button via the Send button (using button programming in Settings, a stock Windows Mobile feature), but I can't see how to get the the keyboard.
Any ideas? Thanks!
there is a key remapper program in the apps, themes, & software subforum that someone made that can do this.
http://forum.xda-developers.com/showthread.php?t=554240
Tasker is a great automation tool for Android. There are many ways to do tasks and automation so this is simply my way. Feel free to modify for yourself in any way and comment.
I'm using a T-Mobile Galaxy S3 running Anthem AOKP ROM with Android 4.2.2.
DISCLAIMER: If you don't know what fstrim is or does please do not use this guide until you understand fully.
DO NOT USE THIS WITH ANDROID 4.3. Why? Android 4.3 already includes an automated fstrim so you would be redundantly running this.
Assumptions in this guide:
1. You have ROOT.
2. You have Tasker app from the Play Store.
3. You have Secure Settings app from the Play Store.
4. You have Hacker's Keyboard app from the Play Store. Why?? I have not found a way to simulate a "long press" to create the ability to "paste". As a result, I use this keyboard and the 5 row compact layout that allows Tasker to physically touch the Ctrl key and the V key for pasting.
5. You are using the keyguard only, no PIN or Pattern. Tasker and Secure Settings allow this but you must select other options than Keyguard to make it work.
5a. The above is striked out because I was not having the correct success unlocking the "swipe" to unlock. As a result, this guide so far has only worked with no keyguard at all but I'm sure it will work fine if you substitute PIN and Pattern using Secure Settings.
6. You have fstrim utility.
To check if you have fstrim, open a terminal app and type "busybox". Look for fstrim in the results. If you have it proceed, if not you will need a custom busybox or a ROM that has the utility built into it.
The next set of steps will create the required task and then the profile to run the task. In the end, we will run fstrim on 3 partitions and email the output of the results to ourselves. I do this for a "Daily Dashboard" of sorts. You don't need to do the email portion if you don't want. You can always just run the task or create it as an app using Tasker functionality.
1. Open your file manager and create a new file on the sdcard or the extsdcard. I will call my file in this guide "maintenance.log" and I will use the location of "/extSdCard/maintenance.log". You may choose whatever path and filename you wish.
2. Tap on the TASKS tab at the top of the app.
3. Tap the + and name it. I named mine Fstrim.
4. Tap Fstrim task and click the +. Select Plugin > Secure Settings > tap Edit > Wake Device > Screen & Keyboard Lights On. Choose a value. 4 seconds is fine because once the screen is on, it defaults to the normal Android timeout value of the lockscreen before it goes black. (freely change as needed)
5. Tap + and choose Plugin > Secure Settings > Keyguard > Off
5a. See the above 5a. strikeout reason. Here is where you could substitute PIN and Pattern.
6. Tap + and choose Script > Run Shell.
In the Command box, type rm /extSdCard/maintenance.log (this is used to delete the log on each run so we only have the output of the last fstrim run. Use whatever directory you wish to store the log file in and whatever filename you wish to use.7. Tap + and choose Task > Wait > use the up arrow for 5 seconds. (this is built in padding in case of deep sleep issues).
8. Tap + and choose Script > Run Shell > put these 4 commands in the Command field and tick the "Use Root" check box.
date >> /extSdCard/maintenance.log
fstrim -v /data >> /extSdCard/maintenance.log
fstrim -v /system >> /extSdCard/maintenance.log
fstrim -v /cache >> /extSdCard/maintenance.log9. Tap + and choose Display > System Lock
10. Tap on the TASKS tab at the top of the app.
11. Tap the + and name it. I named mine Maintenance Email.
12. Tap Maintenance Email task and click the +. Select Plugin > Secure Settings > tap Edit > Wake Device > Screen & Keyboard Lights On. Choose a value. 4 seconds is fine because once the screen is on, it defaults to the normal Android timeout value of the lockscreen before it goes black.
13. Tap + and choose Plugin > Secure Settings > Keyguard > Off.
13a. Again, here you can choose PIN and Pattern instead of keyguard.
14. Tap + and choose Task > Wait > use the up arrow for 5 seconds. (this is built in padding in case of deep sleep issues).
15. Tap + and choose File > Read File > put the location and filename in the field. > In "To Var" type %filecontents. (You can choose any variable name you wish).
16. Tap + and choose Misc > Set Clipboard > in the "Text field type %filecontents.
17. Tap + and choose Task > Wait > use the up arrow for 5 seconds. (this is built in padding in case of deep sleep issues).
18. Tap + and choose Net > Compose Email > put the recipient (yourself) and fill out Subject line.
19. Tap + and choose Task > Wait > use the up arrow for 5 seconds. (this is built in padding in case of deep sleep issues).
20. Tap + and choose Script > Run Shell > put these 3 commands in the Command field and tick the "Use Root" check box.
input tap 90 1232
input tap 320 1123
input tap 664 10021. Tap + and choose Task > Wait > use the up arrow for 5 seconds. (this is built in padding in case of deep sleep issues).
22. Tap on the PROFILES tab at the top of the app.
23. Tap + and choose Time. You only need to set whatever time you want in both "From" and "To" in order to have the task run every 24 hours. You shouldn't need to set the time with minutes in between. For example, I run mine at 4:30 every morning so both "From" and "To" are set to 4:30. Change this accordingly if you feel you need to.
24. Make sure your PROFILE is set to On.
25. Make sure Tasker is running, long press the gear icon at the top left when the app is open. You will see a toast notification that says enabled and when you exit the app, the running icon will be at the top left in your status bar.
26. Enjoy!
***Reserved***
I have edited some of the steps to remove keyguard as it wasn't working right for me on my ROM. Others may have luck but use PIN/Pattern instead.
Also, I was able to use the Input Method switcher in Secure Settings as well so you can add that option to change back to your preferred keyboard if you do not wish to use Hacker's Keyboard all the time.
Mine was done at 4:30AM so while there was minor catch up switching the keyboards, it wasn't an issue by the time I started using my phone in the morning.
Another side point, the specific input tap commands are static locations of where the "send" button for Gmail would be located. If you are using a different email app you would go to your developer options and enable the option to see input touches and grab the appropriate X,Y coordinates. The same is for Hacker's Keyboard as well. They should always appear in the same location so my coordinates should work.
Let me know if it's not clear or you have any other questions.
1. Press the Home button.
2. swipe down from the top of the screen to open the Quick Actions panel, and then select the Search icon (magnifying glass).
3. Type ";dx" (without quotation marks) into the Search field. You can find the ";" key by tapping the “?123” key.
4. Tap the Search key (magnifying glass),
Check out OTA dashboard!
Thanks to SSK XDA for the idea.