[WIP][MOD]App Switcher Shortcut on Keyboard Dock - Eee Pad Transformer Themes and Apps

Edit - Aug-19-2011 - This works as of Android 3.2, but it brings up the old style (non-honeycomb) recent apps list. This is apparently what Asus has Alt-Tab mapped as now.
Edit - the dev section might not be the appropriate place for this. Feel free to move.
I'm trying to find a way to map a keyboard key to the recent apps multitasking menu, but I'm not having any luck. 'APP_SWITCH' would appear to be the proper keycode (see here) but there is no effect after making the necessary edit in the key layout map (/system/usr/keylayout/asusec.kl). I can successfully change keys to other functions (I tested by remapping GRAVE - aka the accent mark ` - to HOME), but I'm unable to pull up the app switcher. Anybody else have any luck?
I started putting together a write-up based on another thread (thanks shograt) but modified for the TF's mount points, filesystem, and key map file:
- # adb pull /system/usr/keylayout/asusec.kl
-- edit 'asusec.kl' with your text editor of choice. If you're on Windows, I've heard Notepad++ is a good choice.
-- Change the keycode to 'APP_SWITCH' (NOT working) for the key of your choosing. More info on key defintion formats here: http://www.kandroid.org/android_pdk/keymaps_keyboard_input.html#androidKeymapKeyLayoutMapTitle
- # adb shell
-- NOTE - verify mount point using cat /proc/mounts
- # mount -o rw,remount -t ext4 /dev/block/mmcblk0p1 /system
- # exit
- # adb push asusec.kl /system/usr/keylayout
- # adb shell
- # cd /system/usr/keylayout
- # chmod 644 asusec.kl
- # cd /
- # mount -o ro,remount -t ext4 /dev/block/mmcblk0p1 /system
- # exit
- # adb reboot

im surprised this has had no replies....this is something we really need
cmon guys, lets figure this out

this would be great!

i think it would good to see also

I too have found myself needing a window switcher key on the keyboard, it just makes sense, or at least an "alt-tab" function.

I'm another person who would love to have a recent apps key!
I wish asus had dropped that left Fn key for a recent apps key, makes so much more sense.

could the app 'Tasker' be used to acheive this?

Yes excellent idea, and maybe someone can come up with a way to remap the shortcut/keys to allow you have your own browser shortcut used instead on the default one, for one example

I'm not sure that the function is actually available to map to a physical keyboard at the moment. From google's docs:
public static final int KEYCODE_APP_SWITCH
Key code constant: App switch key. Should bring up the application switcher dialog.
Constant Value: 187 (0x000000bb)
Click to expand...
Click to collapse
Notice the 'Should' comment (emphasis added). None of the other keys have ambiguous language like that.
Also, using KeyEvent Scanner (from the market) doesn't return anything when the on-screen app switcher button is pushed. I didn't see anything in logcat either, but I didn't take a very close look. I'm out of ideas for now.

+1 for this, hopefully resurrecting this thread will reignite some dev'in
My plan was to edit the .kl file to map my wireless key (right beside Back/ESC) to Recent Apps...very strange too that Google has placed such an emphasis on 'should' in the docs...maybe 3.2 is more reliable at this??
Cheers

Haven't looked at this in a long time. Alt-Tab works now, so I guess that does the job though.

You're right! It will suffice I guess, but a one button hit would be best no doubt Funny because I thought it wouldn't work for me, but I first tested it while I was in Firefox. It still does not work while using Firefox, but in all other apps, it works.
To be greedy, it'd also be nice if CTRL+left/right arrow key jumped the carat to the beginning of words
Thanks for the ALT-TAB tip too bedoig!

I spent so long looking into keychars and keylayouts with a bluetooth keyboard on a Motorola Xoom. I went through and remapped a whole bunch of things - one of which was indeed APP_SWITCH.
It didn't do anything on 3.0 and 3.1, BUT when I updated to 3.2, it started magically working. I'm assuming that the same thing would happen here, though I haven't tried. Also, you could pull off remapping keys without adb if you buy root explorer. That way you can navigate to the files on your tablet and edit them directly.

I'd love to be able to change the "search" button to an app switch key.... but I don't know enough to do what the above suggests at the moment.

N/M, outdated...

Esoth said:
I spent so long looking into keychars and keylayouts with a bluetooth keyboard on a Motorola Xoom. I went through and remapped a whole bunch of things - one of which was indeed APP_SWITCH.
It didn't do anything on 3.0 and 3.1, BUT when I updated to 3.2, it started magically working. I'm assuming that the same thing would happen here, though I haven't tried. Also, you could pull off remapping keys without adb if you buy root explorer. That way you can navigate to the files on your tablet and edit them directly.
Click to expand...
Click to collapse
What do you know, it works! I was hoping it would activate the recent apps list you get when using the on-screen button rather than the alt-tab Android 2.x style pop-up, but oh well.

I really hope this changes when ICS comes along!

bedoig said:
Edit - Aug-19-2011 - This works as of Android 3.2, but it brings up the old style (non-honeycomb) recent apps list. This is apparently what Asus has Alt-Tab mapped as now.
Click to expand...
Click to collapse
sorry if i could help i would good luck hope you get it figured out.

Related

Native console in recovery mode

I've been working on adding an actual console for recovery mode. I've got it to the point where it's ready for a beta release. Feel free to download it and try it out, and let me know what you think
I'm not including a update.zip for this for now. You'll need to extract the recovery.img file from RecoveryConsole_Beta.zip, and flash it in any of the usual ways (flash_image, fastboot flash, copy to /data/recovery.img)
If you just want to try it out without actually flashing it onto your phone, you can use "fastboot boot recovery.img".
Here is a list of the special keys that are currently defined:
Code:
ctrl search
caps lock menu (on the keyboard)
arrow keys call + w,a,s,d
change virtual console call + 1,2,3...0
scroll console home + w,s
page up menu (above the trackball) + w
page down menu (above the trackball) + s
home menu (above the trackball) + a
end menu (above the trackball) + d
escape back
reboot menu (above the trackball) + search + backspace
Interesting. Is that the Debian/Android unionfs environment I spot there?
jashsu said:
Interesting. Is that the Debian/Android unionfs environment I spot there?
Click to expand...
Click to collapse
Debian yes. unionfs no. I just have it chroot into the debian environment.
Ah, you're right. Going to take this for a spin a little later when i'm done working. Another cool hack! Great job
p.s. I notice you've got nano open there. Is the environment capable of supporting any text-based binary compiled for armel?
jashsu said:
Ah, you're right. Going to take this for a spin a little later when i'm done working. Another cool hack! Great job
p.s. I notice you've got nano open there. Is the environment capable of supporting any text-based binary compiled for armel?
Click to expand...
Click to collapse
The nano is in my debian environment of course. But yeah, most anything text-based should run, afaik.
Hmm... menu (kb) + bs + search isn't rebooting for me. Any ideas?
Sorry, my mistake. it's the menu above the trackball, not the one on the keyboard.
Hmm.. strange. I had tried menu(trackball) + bs + search too but it didn't initially work. After reading your reply I mashed it a few more times and it rebooted. I guess the tolerance for a simultaneous keypress is tight.
Anyway, great fun hack. =D
Realy cool!
What about add a 'keyshelp' command to print the special keys?
any major changes from the version you sent me other than the 'e' in console?
keatonreckard said:
any major changes from the version you sent me other than the 'e' in console?
Click to expand...
Click to collapse
A few changes in the keymap, less memory taken up by the unused virtual terminals. probably a few other things I'm forgetting
Any development?
Recovery Image Build
Hello
Thanks for providing this.
I am not able to build recovery.img .i am able to see out/target/product/generic/system/bin/recovery. what is the procedure to build recovery.img what are the instruction i need to follow. i just ran make recovery.

Loccy's BetterBrowser - now in Donut edition (v1.5: 8th Oct 11am/BST)

The important bit - get it here:
Version 1.5 (Donut - also Hero)
Version 1.5 (Cupcake)
I've changed the hosting of these files from 4shite. You shouldn't now have any problems downloading. The new links are hosted at www.androidspin.com - thanks guys!
Optimised version of V1.5 (Donut) (thanks Dwang)
Optimised version of 1.5 (Cupcake) (thanks Hotweiss)
(note ref the optimised versions; Dwang's works fine on my Magic but I haven't tested Hotweiss's. If you have problems try the originals instead.)
MAKE SURE YOU GET THE RIGHT VERSION! READ THE CHANGE LOG (in post 2) TO SEE WHAT'S NEW.
Older versions can be found at the bottom of this post.
So what actually is this?
This is a new build of the stock browser, that incorporates the multitouch code from Cyan's build, along with some additional code of my own, primarily intended to make zooming less painful, and looking to gradually move towards an experience as rich as the Hero browser.
What does it do that's new, then?
* option in settings to disable the obnoxious on-screen zoom buttons that usually appear whenever you so much as breathe on the screen (turn off "Visual Zoom Controls" in the menu to get rid of them - off by default).
* when Visual Zoom Controls is disabled, option in settings to add zoom in and zoom out to the menu (although this will bump over options that are normally on the main menu to the "More..." list)
* Double-tap the screen to zoom in. When it gets too ginormous (about four zooms) a subsequent double-tap will zoom all the way out. Or you can just change this in the settings so double-tap always zooms in. Obviously it still has the multitouch option too from Cyan's code.
* Triple-tap to zoom out! (which I am particularly pleased about given that such an event doesn't actually exist in Android )
* Click top-right corner to pull down address bar. Click top-left corner to go back to homepage. Click top-left when on homepage to exit browser (i.e. "clear" it from memory insofar as Android apps ever get cleared from memory).
* Click bottom left to go to previous tab, bottom right to go to next tab.
* Maintain zoom level across a domain, so that when you get a comfortable viewing size, you don't lose it the second you move to the next page on a site.
* Maximum number of tabs increased from 8 to 32.
* As requested by fastludeh22, an option for "Mobile Web Settings". Select from Android, iPhone or Desktop browsing.
* As requested by fit333 (and who was as good as his word, and donated ), an option to lock in landscape mode.
* setting to enable hiding/showing of notification bar. Note that this needs the entire Browser process to be restarted to take effect (so use the top-left click to go home, click again to quit the browser, and then reload to see the effect).
What do I need to run it?
Well, a Cupcake or Donut based rooted Android phone, basically. Make sure you download the correct version. If you are installing on Hero, you might need to wipe all the application data otherwise you'll get force closes.
How do I install it?
The only "safe" way is to push it with ADB. Delete /system/app/Browser.apk and any Browser.odex. Then adb push my browser into /system/app/Browser.apk. Many people had success on Cupcake by just installing via file managers. I managed to upgrade - note, UPGRADE, not install from scratch - by downloading it on my phone from the download link. It'll tell you this is a system application, do you want to update it - say yes. This was on Dwang's Donut ROM. However, the only method I'll "support" is via ADB because it's all so variable. ADB should (in theory) work on any ROM.
I installed your browser and now I can't browse the interweb, my phone exploded, I lost my job and suffered an embarrassing rectal prolapse in a public place. I blame you!
Thank you, please call again. All purchases are final. I would suggest that one uses a program to back up your bookmarks at the very least before installing this.
This is the best thing since self removing trousers! What do I do now?
Send me money by clicking here.
Future improvements I'm hoping to do:
* A proper full screen option (i.e. where you'd also hide the title bar as well as the notification bar, and only show it when pages are loading)
* Hero-style lairy Mac coverflow-esque bookmarks (some way off in the future methinks!)
* tidy up what behind the scenes is, unfortunately, some really kludgey code!
Thanks go to:
* Cyan, obviously, without whom none of this would have been possible, and whose ROMs continue to break new levels of awesomeness
* makethetick, who pointed me in the right direction for the code in the first places
Raspberries go to certain individuals in this thread.
Older versions kept around just in case. THESE ARE ALL CUPCAKE BUILDS. IF YOU INSTALL ON DONUT YOU'LL GET CORRUPTED MENU ICONS.
Version 1.4.3
Version 1.4.2
Version 1.4.1
Version 1.4
Version 1.3
Version 1.2
1.1 (hide notification bar)
1.1a (notification bar left intact)
---
Hate the way the Android browser throws zoom controls in your face whenever you so much as breathe on the screen? Double-tap to zoom sound like your bag? Or maybe you want the option to view non-mobile versions of websites? Try my BetterBrowser.
Crazy enough to want to send me money? Click here!
Yes, I've gone to the dark side and dipped my toe in this social networking smeg. Follow my Twitter here.
Loccy's BetterBrowser - new stuff and bug fixes (v1.5: 7th Sep 11:30am/BST)
Changes for 1.5
* Bottom left/right corner click to cycle between tabs (so bottom left goes to previous tab, bottom right goes next)
* Slight change to top bar behaviour, because a couple of people didn't like it and were being put off upgrading. Top left corner to go back to the home page (and then again to quit the browser) is as it used to be. Pulling the address bar down is now top right corner rather than everywhere across the title bar - many people were complaining that they kept doing it accidentally so I've made it a little more "deliberate".
* Removed zoom in/out menu options. They were an early feature before I figured out double/triple tap, were buggy anyway (and non-existent in Cyan's implementation for Donut, even though the menu option was still there!) and I suspect no bugger used them any more.
* Glorious Donutty goodness! (i.e. you don't need to wait for Cyan to incorporate my changes, or suffer dodgy screwed up icons if you install the Cupcake version). I used Cyan's Donut branch as a base. He'd manually pasted in the code from my Cupcake based builds to create this in the first place, a real tedious and laborious process that I now didn't need to do, so many thanks for him for that.
Changes for 1.4.3
* Fix/change for maintain current zoom level across page loads. Now, it only maintains zoom across a domain (so if you're on site xyz.com, and zoom out to a comfortable level there, it'll maintain the sizing across pages on that site. When you go to another site abc.com, that one will start out at zoom level 1. This has the side effect of fixing the column-sizing issue that affected most sites but was most prevalent on mobile sites).
* Slight refinement to the top-corner and top-bar click algorithms. Should work a lot better now for those of you who have the notification bar visible when in the browser.
* Increased maximum number of tabs from 8 to 32. Not sure how this'll hold up, memory-wise - feedback please.
Changes for 1.4.2
* Maintain current zoom level across page loads (so it doesn't suddenly zoom back in whenever you go to another page)
* Fix for top bar clicks (i.e. click title bar to pull down address bar, click top left to go home) when notification bar not hidden.
Release notes/changes for 1.4/1.4.1
* fix to force close on mobile sites when double tap zoom cycle goes back
to the "all the way out" setting (and this time it's DEFINITELY fixed )
* you can now double-tap/triple-tap anywhere on a page to zoom - previously, you'd have had to avoid areas where there were links, otherwise the link would start to load before your zoom would happen.
* setting to change triple tap delay value in advanced settings (so the
lower the setting, the more responsive double-taps are, but the quicker
you have to get your triple-tap in!)
* setting to change double-tap behaviour, between the existing zoom cycle,
and also now just a simple zoom out only setting (so if you want to just
keep it simple, and have double-tap to zoom in, triple tap to zoom out,
the latter will be the setting for you). How many zooms this will result in per cycle will depend on the page you're viewing.
* change to double-tap zoom cycle behaviour - now zooms ALL the way out
to give a true page overview, and also introduces an intermediate step
between page overview and 1:1 zoom (this is a nice level for sites with
big fonts, eg. aintitcool.com)
* click title bar (or top of screen) to bring down the address/search bar
* click top left of screen to go to home page. Click it a second time when on the home page to exit the browser completely (or double-click from elsewhere).
Cool, double tap to zoom in and out would a nice feature to have.
Stupid noob question
I do need to uninstall the old browser apk first? Probably so.
mount and push APK to /system/app
do I need to chmod? and if so what is the number? 775?
Thanks,
Your Guinie Pig!
Chevy
Just flashed 4.0.1 yesterday and am running themeless. Rebooted just to verify and yes I have the same issues. FC on bookmarks and am missing the refresh and forward icons.
Cheers,
Etienne
cover flow
It would be great if u could add the cover flow feature that the hero browser has for bookmarks and Thanks a lot those buttons kept getting in my way to.
intallation
I'm sorry but how do u get it on the rom?
Will this work on JACxROM?
Edit: fixed version hopefully now on the first post.
chevycowboyusa said:
I do need to uninstall the old browser apk first? Probably so.
mount and push APK to /system/app
do I need to chmod? and if so what is the number? 775?
Thanks,
Your Guinie Pig!
Chevy
Click to expand...
Click to collapse
Yes, I'd uninstall the old browser first.
Install would go something like this, from your command line on your PC:
adb remount
adb shell
cd /system/app
mv Browser.apk Browser.original
exit
adb push Browser-cyan-pn-mod2.apk /system/app/Browser.apk
halla29 said:
It would be great if u could add the cover flow feature that the hero browser has for bookmarks and Thanks a lot those buttons kept getting in my way to.
Click to expand...
Click to collapse
Bloody hell. It's taken me a week to get this far
I tried this and it seems to be working fine so far... thanks I really found those buttons annoying too
I think the zoom buttons can be beneficial sometimes instead of multitouch zoom for situations when you are using the phone with one hand. That's when I have use for them. But I guess if the double tap feature from Hero were implemented, this would have the same effect. Good job on the idea tho and keep up the hard work!
uansari1 said:
Will this work on JACxROM?
Click to expand...
Click to collapse
Not sure. I believe JACxROM and Cyan's have the same multitouch stuff in their kernels, so I see no reason why it wouldn't, but I might be wrong.
The double tap from hero would be nice good work on this.
Anyway you could post detailed uninstall old and install new instructions? Maybe terminal and adb commands?
You are my new best friend !
Thank you so much. Works perfectly.
Very nice! Always wanted this after using hero's browser.
One question: would it be possible to make the browser full screen (like no status bar)?
Works Great!
This was a really cool idea! I also would like to be able to double tap as well.
One more would be a way to get the screen back to original size without having to go back or open a new page.
I installed completely through terminal.apk
Good Job!
no rush
Thanks for the intallation info. No rush take your time. I know u just posted this not too long ago. Think of it this way though if u could get that cover flow going for the bookmarks that would be a major breakthrough for u cause then the rest of the devs would have to come to u for help. I think Hycuro had it to but with a second home launcher from the hero built. Thanks again.
chevycowboyusa said:
I installed completely through terminal.apk
Good Job!
Click to expand...
Click to collapse
I mounted /system and rm -r to remove the original Browser.apk and com.android.browser in /data/data.
Then did the following..note that I renamed the apk to Browser.apk:
mount -o remount,rw -t yaffs2 /dev/block/mtdblk3 /system
cd sdcard
install Browser.apk /system/app/Browser.apk
reboot
Edit: Everything works fine.
Hi,
could you please create an apk file that also includes the Flashplugin? Is that possible yet?

Ice Cream Sandwich Bluetooth Keyboard Shortcuts

Does anyone know where to find out all the shortcuts you can do with an external keyboard on Android 4.0? Things like the back button, home screen, etc. Thank.
Thread Necromancy, I know, but this is a serious question that remains unanswered. Here's the most info I've found:
Rootzwiki User Gr8gorilla posted a list of shortcuts that work with his Targus Bluetooth Keyboard (I'm editing the list for formatting, and adding more as I find them.)
ESC: Back (woo!)
Targus FN + F* keys: (edit: These only work with the specific model of Targus keyboard. Your FN key may only perform functions as labelled, test it to verify)
FN+F1: Search
FN+F8: play/pause music
FN+F7: Skip Prev
FN+F9: Skip Next
FN+F11: Volume -
FN+F12: Volume +
FN+ESC: Wallpaper, manage apps, system settings.
Alt+Tab - recent apps, task switcher (WOO!)
CTRL + Alpha keys:
Ctrl+A: Market (edit: this opens the "add to home screen" menu for me)
Ctrl+P: Settings
Ctrl+W: Wallpaper
Ctrl+M: Apps
In Browser: (edit: these work in other apps too, if they apply)
Ctrl+B: Bookmarks
Ctrl+A: Select all
Ctrl+C: Copy
Ctrl+V: Paste
Ctrl+W: Close current tab
Ctrl+T: Open new tab
Command/Windows button + : (edit: these commands work from anywhere, even in other apps)
Win+E: Launch Default Email App (brings up a choice dialog if necessary)
Win+A: Launch Calculator.apk
Win+S: Launch Messaging.apk (SMS App)
Win+C: Launch Contacts
Win+B: Launch Browser.apk (not your default browser, unfortunately)
Win+P: Launch Music.apk (not your default music player, unfortunately)
Win+L: Launch Calendar
Win+M: Launch Google Maps
From my own experience: the above work, other than the Targus-specific ones. I've tested them all. I'm looking for more, especially ways to activate "HOME", "MENU" and to open/close the notification drawer.
Also, you can edit your /system/usr/keylayout/qwerty.kl to change which key codes sent by the bluetooth keyboard activate various functions. This would be a rather involved hack, and may be specific to your hardware. Doing it wrong could compromise your ability to use your software keyboard. Also, it would be replaced whenever you flash a ROM, and possibly some smaller updates as well. Here's a guide to hacking keyboard layouts, though it's a bit old, and I haven't tested it. DO AT YOUR OWN RISK, but post your results either way!
I'm looking for a way to enable the Android SDK Emulator Shortcut Keys on real devices. It would give us that which we're missing.
Ctrl+W and Ctrl+T
In the stock browser:
Ctrl+W - closes the current tab
Ctrl+T - opens a new tab
There may be more of these that are similar to chrome shortcuts but those are the only two I really use.
erupe said:
In the stock browser:
Ctrl+W - closes the current tab
Ctrl+T - opens a new tab
There may be more of these that are similar to chrome shortcuts but those are the only two I really use.
Click to expand...
Click to collapse
Tested to verify. Works in Chrome as well. Added to the list above!
Thanks for coming up with that list. Really appreciate it.
I'd just like to clarify something: using an app called KeyEvent Display, free on Google Play, you can verify that Android is actually receiving keystrokes from your keyboard. I've tested every key on my keyboard, and found that they correspond exactly with /system/usr/keylayout/Generic.kl (fn key excluded, because that's handled by the keyboard itself, not passed to the OS).
I think the Android Framework doesn't know what to do with:
F-Keys
Mute
wow nice one.

[APP] [4.1+] Android Bot Maker - Do repetitive tasks easily

[BETA STAGE] Android Bot Maker​​
Don't expect a perfect version at this stage, any suggestion / bug report is welcome ​
Why is it for?
It's a FREE automation tool that allows you to turn your Android device into a bot, making repetitive tasks easily.​
Requirements:
Rooted device
Android 4.1+ (4.4 recommended)
Features:
Taps, swipes, pauses, text and physical keys input supported.
Wake-Lock to prevent screen turning off
Tasker Plugin integration (synchronous tasks)
Delayed start, gives you the necessary amount of time to do what you need before starting the execution.
Share / import your edited files (.csv extension files)
Add, select, switch, edit, and remove actions from the list.
Export it to a shell script, runnable from the terminal emulator or via ADB.
Add widgets to run prebuilt lists
FAQ / TIPS:
To edit an action long press it and change the desired values
Bot not stopping?? To avoid weird behaviours, please add at least one Sleep action just after any other action, setting at least the amount of time that the action consumes. (ie. 1 tap (5sec), > 1 Sleep (5sec).
ABM or CSV? ABM file extension is completely deprecated and you shouldn't use it. ABM files are not compatible between app updates so you should stick with CSV files instead.
Download:
https://play.google.com/store/apps/details?id=com.frapeti.androidbotmaker​
Please test it and report back
UPDATE: Version 3.6 is out!
- Finally added Tasker Plugin integration (synchronous tasks)
- Fixed layout bugs, soft keyboard bugs, and more
- Fixed redraw and change loss after orientation changed
- Widgets should work ok now
To review:
- Swipe actions on non kitkat devices​
XDA:DevDB Information
Android Bot Maker, App for the Android General
Contributors
frapeti
Version Information
Status: Beta
Current Beta Version: 3.6
Created 2014-05-27
Last Updated 2014-05-27
Excellent idea. Will be awesome with some polishing
Issues on my Verizon Galaxy S3.
1) Sleep timer doesn't seem to wait as many seconds as you enter
2) When using with an app that hides notification bar its a pain to switch focus and stop the script without 20 other apps being opened. Maybe use a floating icon interface like gameguardian or gamecih use? or allow a hot-key to be set for start-stop? Seems like it always ends up crashing while I'm trying to close apps that it opened. If I switch focus to the botmaker then depending on the script you can really mess things up... first effort I hadn't exported, saved, or even written down anywhere and was about 30 lines long... even though i immediately hit pause when i got to botmaker the auto-taps kept going and deleted about 7 lines of my script before it crashed and shutdown
3) A working directory to save and load scripts from would be great to have. The current import/export seems a little awkward
Will download when I get 4.1
BxMxK said:
Excellent idea. Will be awesome with some polishing
Issues on my Verizon Galaxy S3.
1) Sleep timer doesn't seem to wait as many seconds as you enter
2) When using with an app that hides notification bar its a pain to switch focus and stop the script without 20 other apps being opened. Maybe use a floating icon interface like gameguardian or gamecih use? or allow a hot-key to be set for start-stop? Seems like it always ends up crashing while I'm trying to close apps that it opened. If I switch focus to the botmaker then depending on the script you can really mess things up... first effort I hadn't exported, saved, or even written down anywhere and was about 30 lines long... even though i immediately hit pause when i got to botmaker the auto-taps kept going and deleted about 7 lines of my script before it crashed and shutdown
3) A working directory to save and load scripts from would be great to have. The current import/export seems a little awkward
Click to expand...
Click to collapse
Thanks, I will try to fix those with next updates, the most important bug I found is Android killing the process after certain amount of time
Sent from my GT-I9070 using xda app-developers app
This looks great. Would be great t if we could have a coordinate mapper of sorts. I dont know how to guess the x and y coordinates haha.
I has a sig
neuropsychosis said:
This looks great. Would be great t if we could have a coordinate mapper of sorts. I dont know how to guess the x and y coordinates haha.
I has a sig
Click to expand...
Click to collapse
Depending on your device and ROM you can do this already. On my galaxy s3 running CleanROM I have an option under Settings->Developer options->Show pointer location. This puts an overlay at the top of screen so you can see the X,Y of each touch.
Great App! Would like to the an option to repeat endless. Atm I have the same sequence over and over.
Meteox said:
Great App! Would like to the an option to repeat endless. Atm I have the same sequence over and over.
Click to expand...
Click to collapse
It repeats endlessly for me.
Just 4.1+ ?
I see definitely great potentials in this app. I will test it ASAP
Great Idea, can you please just add an a record option, It's really hard to know the coordinations i want.
Again, Wonderful Idea
Brilliant idea.
It would be good if you could record gestures for talkback and assign them to widgets / navbar shortcuts.
For example, I`d like to add a widget / icon in the navbar or home screen that would emulate swipe down - then - swipe right as this pauses talkback. My wife has brain damage and is blind and the gestures on Talkback are a right pain in the arse!
I have a Nexus 4 running PA with Franco kernel and I put the said action in, hit play and it kept going over and over. I was unable to pause or stop it. I had to reboot the handset.
That said, this is a marvellous idea. Being able to record complicated multi-point swipes and assign them to a softkey/widget would be fantastic. There could be a security risk (potentially) if the app records silently and stores touches on the pattern unlock.
Good work, OP, good work.
Works great! The was able to take the X Y from my CM10.1 D2VZW and have it drop an item from Ingress! Would like to be able to copy/paste action lines or repeat action etc for repetitive tasks.
Please keep up the good work! I'm very excited about this project.
Very nice app, congratulations :good:
I've recently been doing research on how to inject keyEvents to other applications for the Glass on Android port, and the only way I could find was to create an InputMethod.
Could you please give me some insight as to how you achieved this? Did you have to use the NDK or made use of some hidden API?
been waiting for something like this for so long! thanks so much dev! :good::good::good:
Have been looking for this for so long. Had looked at every inch of Google and couldn't find and there I just bumped into it today. Thanks Dev.
frapeti said:
Features:
Export it to a shell script, runnable from the terminal emulator or via ADB.
Click to expand...
Click to collapse
Do you plan a Tasker integration to run makros via Tasker?
Tasker
cramu said:
Do you plan a Tasker integration to run makros via Tasker?
Click to expand...
Click to collapse
I do believe it is possible to run scripts in Tasker already.
docinthebox said:
I do believe it is possible to run scripts in Tasker already.
Click to expand...
Click to collapse
Yes this. I saw this and came here to give the same idea. Making a tasker plug-in with this would be too cool.
Well, actually it is possible but a plugin would be much more comfortable.

Remapping Dock Keys (alt/search swap + back-> escape + screenshot -> camera)

I finally rooted my device after 2 years... lol. I love the dock, but it always bugged me that the search button was were you normally would find alt and the back key wasn't escape. It made doing alt+tab and using escape in terminal really difficult. Here's a guide on how to remap all these 4 buttons on the hardware dock keyboard for the transformer infinity. I think this probably will work with the prime and other transformer docks as they seem to have all the same key codes. All you need is root and to follow this guide and you can customize almost anything you'd like.
Remapping Screenshot Key to Camera Key
Who needs a screenshot key?? I think it'll be more useful as a camera key. Unfortunately, this is a custom program that handles all the special keys on the top of the keyboard (wireless on/off, bluetooth, etc.). I had to edit the source and recompile this to get the camera button to work. No guarantee that it will work for you as you will need to compile custom code, but you can use my file. I compiled it for Zombi-Pop 5.1.1.
org.omnirom.asusdec.jar
Download that file to your tablet. Open a Terminal up and remount /system as read-writeable.
Code:
mount -o remount,rw /system
Back up your current /system/framework/org.omnirom.asusdec.jar and then overwrite it with the new file.
Reboot and your screenshot button now should launch the camera!
Remapping Other Keys
Remapping the standard keys is much easier to do. All you have to do is edit a .kl (keyboard layout) file. You can use my .kl file or modify it to your own liking. Here is my .kl file:
asusdec.kl
#1. remount /system as read-writable. Refer to above.
#2. Backup /system/usr/keylayout/asusdec.kl if you have that file.
#3. Upload the new asusdec.kl to /system/usr/keylayout/asusdec.kl.
#4. (optionally) open the file and edit it to your heart's content.
#5. Reboot and enjoy your new key layout.
Can you remap the browser key to open another browser other than stock?

Categories

Resources