Alright, lets show off some tasker profiles! Im always interested in ideas other have cooked up. I'll show you guys some stuff i came up with.
Hit thanks if you like it!
Heres a link to my Rom-Toggler thread!: http://forum.xda-developers.com/showthread.php?p=43912825#post43912825
Ill start populating the post. I realize that tasker profiles are a royal pain in the butt to read, so im going to create some colapsable projects.
Ill also color code certain things and ill try to stay consistent..Ill try to add a project every day. So the first one will be my car project.
Tips:
To avoid confusion with all the collapse-ables, close the ones youre done reading.
Have Secure Settings installed, and swipe to the helper section and install helper
HAve autovoice, you gotta start using this at some point..its pretty awesome.
%PACTIVE is a variable that means "profiles active"
you can long press a profile and press the settings button on the top right and if you scroll down you can uncheck the "display in notification" if you dont want your tasker notification to be over-populated
Projects will be Blue
Profiles will be orange
Enter tasks will be green.
Exit Tasks will be red.
If statements will start and end with pink.....end if
CAR PROJECT
This project has a couple of tasks that do stuff that are related to the car. hence the name.. It does the following:
1: When you get in the car, the screen will stay on, and if it does somehow close, the keyguard will be disabled. This prevents too much fiddling with the phone...This is turned off when you get out.
2: Alters volume levels and brightness when getting in and out of the car.
3: Marks down what time you got out of the car, starts counting how long youve been out of your car, and takes the GPS coordinates of your location when you get out of the car.
The purpose of this is so youll always know when you got out of the car, how long you have been parked (in case of parking meters, parking hours etc..) and allows you to navigate to your car so youll never lose it after parking in some obscure location.
This is done with minimalistic text to display that info, and upon pressing it, will activate the task to navigate back to your car. Ill attach a screen shot.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
4: When someone calls, my phone asks me if i want to answer it, instead of ringing, upon yes, it does, upon no it doesnt.
5: reads me my text, I have nothing to hide, but you could easily implement the yes/no prompt if you want it read to you or not.
6: turns wifi on, gps on, and you can add a bluetooth on if you want.
HERE ARE THE PROFILES:
Profile: Car Mode
Context:
State -> Docked any
State -> Headset plugged in
But really this could be anything.
Tasks:
Enter Task:
Load App -> Car Home (http://blog.brianmoses.net/2012/10/manually-installing-googles-car-home-app.html)
Secure Settings -> GPS Enabled
Wifi -> Off
System Volume -> 7
Media Volume -> 15
Auto Brightness -> on
Notification Volume -> 7
Secure Settings -> Keep Display On
Secure Settings -> Keyguard Disabled
Variable Set -> %SEARCHWIFI ~ 0 (Youll see why later)
Exit Task:
Variable Set %HOURSINCE ~ 0
Variable Set %MINSINCE ~ 0
IF - %TIME > 12.00 {
MINIMALISTIC TEXT -> (variable) ampm = PM
Variable Set -> %PARKEDTIME to (%TIME-12.00)
}
else if - %TIME < 12.00 {
MINIMALISTIC TEXT -> ampm = AM
%PARKEDTIME to %TIME
}
end if
MINIMALISTIC TEXT parkedtime = %PARKEDTIME
Secure Settings -> Keyguard Enabled
Secure Settings -> Lock Device
Secure Settings -> Keep display on - never
Kill App -> Car Home
Get Location -> GPS, timeout -> 100seconds
Variable Set -> %PARKEDAT ~ %LOC
Secure Settings -> GPS Disabled
Variable Set %SEARCHWIFI ~ 1
Profile: Update Time Since (Update what minimalistic text will show)
This counts how long youve been parked for and assigned an HOUR variable and a MINUTE variable to minimalistic text.
Since the "repeat" thing in tasker has a minimum of 2 minutes, i just made two of the same tasks and made the other wait a minute before starting.
Conext:
Every 2 minutes
Tasks: Timesince1
If - %TIMESINCE = 60 {
Variable Set -> %HOURSINCE to %HOURSINCE + 1 (do maths)
Variable Set -> %MINSINCE to 0
MINIMALISTIC TEXT - minsince = %MINSINCE
MINIMALISTIC TEXT - hoursince = %HOURSINCE
}
end if
if - %TIMESINCE < 60 {
Variable Set -> %MINSINCE to (%MINSINCE + 1) (do maths)
MINIMALISTIC TEXT -> minsince = %MINSINCE
MINIMALISTIC TEXT -> hoursince = %HOURSINCE
}
end if
Timesince2
wait -> 1 minute
If - %TIMESINCE = 60 {
Variable Set -> %HOURSINCE to %HOURSINCE + 1 (do maths)
Variable Set -> %MINSINCE to 0
MINIMALISTIC TEXT - minsince = %MINSINCE
MINIMALISTIC TEXT - hoursince = %HOURSINCE
}
end if
if - %TIMESINCE < 60 {
Variable Set -> %MINSINCE to (%MINSINCE + 1) (do maths)
MINIMALISTIC TEXT -> minsince = %MINSINCE
MINIMALISTIC TEXT -> hoursince = %HOURSINCE
}
end if
Profile: Read Text
context:
Received Text any
Variable Value -> %PACTIVE ~ *Car Mode*
Task: Read SMS
Silent mode -> on
Say -> %SMSRN says. %SMSRB
silent mode-> off
Profile: Car Call (Asks me if i want to answer the call or not, then the response will be passed off to another profile called CAR RESPONSE)
context:
Call incoming
Variable Value - %PACTIVE ~ *Car Mode*
Enter Task:
Media Control -> Pause (simulate media button)
Ringer Volume -> 0
Say -> Should i answer this call?
Auto voice recognize (Triggers autovoice to listen to you)
Exit Task:
Media Control Play
Profile: Call Response
Do the same for a "NO response" except the command in autovoice will be "no" and the task will end the call.
context:
AutoVoice recognized -> check event behavior, command = yes
Variable Value -> %PACTIVE ~ *Car Mode*
Task: Take Call
Take Call...lol
THIS ONE IS A TASK
Make this task so you can set your minimalistic texts tap behavior to open a tasker shortcut and then select this one.
IT will allow you to navigate to your car when you tap the widget, you may need to change the wait task if it takes longer for your phone to turn on GPS (not get a lock)
Create a task:
Secure Settings GPS Enabled
Wait 3 seconds
Open Map (this is a task under the APP task) Mode-> Navigate To, Address %PARKEDAT
TO SET UP MINIMALISTIC TEXT:
Im not going to tell you what the font should be, what size or what color the font should be etc etc, ill just tell you how to add the variables to minimalistic text
Tap and hold on your homescreen and add a 2x2 Widget
Delete all the premade stuff
if you swipe to the layout tab and press the "+" youll get a bunch of options to add stuff.
Swipe over to the MISC tab, and add a static text and a local variable. Theres a bug in Minimalistic text where if you add a bunch of local variables at once, itll make the values of them all the same..so youll have to add the things one at a time..pain in the butt i know.
so add a static text and a local variable. over and over till you have 4 local variables and 3 static texts.
have 3 rows, delete the ones you dont need by tapping the 3 dots and pressing delete row.
I have it set up like this:
----------------------------------------------------------------------------
[Static text = Parked At:]
----------------------------------------------------------------------------
[Locale Variable = parkedtime] [locale variable = ampm]
----------------------------------------------------------------------------
(optional)[static text icon = user interface-> hand pointy thingy]
----------------------------------------------------------------------------
[static text = Parked For: ]
----------------------------------------------------------------------------
[locale variable = hoursince] [static text = Hrs.] [locale variable = minsince]
----------------------------------------------------------------------------
Then swipe over to "Tap Behaviour" and check "start another activity"
press select and activity or shortcut
swipe right to the shortcut tab
select the "Find Car" task we created earlier
pick an icon for it if it asks by pressing the button on the lower right hand corner
END CAR PROJECT
WIFI PROJECT
These tasks will automate turning your wifi on and off based on locations you are at often. I.E. your house, your work, your buddies house, your girlfriends house, etc...
It works via the cell near state, however im not perfectly clear on how much battery this drains, so i took an extra precaution by having a %SEARCHWIFI variable, set to either 1, or 0, (on or off, respectively). This variable's value is easily changed in any profile, so its easy to avoid conflicting profiles, as well as saves battery by not continuously searching for cellphone towers.
What i do with this, is have a profile, Near Home for example, and when im in a new location i want to automatically connect to, i just clone it, change the name, re-search cellphone towers and voila! I have like 10 of these and it works perfectly. So ill only make a "Near Home" profile, then you can clone that.
I like to have a pattern lock when im out and about, but i dont like having one when im at a buddies house, or at my own house, so i have tasker deal with that. If you want this, first you have to set a pattern lock code. then this will take effect.
Profile: Search Wifi?
Context:
Not Wifi Connected (check invert after the wifi connected task)
Variable Value -> %PACTIVE !~ *Car Mode*
Enter Task:
Variable Set -> %SEARCHWIFI ~ 1
Exit Task:
Variable Set-> %SEARCHWIFI ~ 0
Profile: Wifi Time-Out
If you are near one of the places and you somehow disconnect, tasker will wait 20 seconds to see if youre still disconnected and if you are , turn wifi off, turn the pattern lock on, and in 10 minutes, if youre still in the area it will try to connect again. of course you can change the times to whatever you want.
Context:
Not Wifi Connected
task:
Wait 20 seconds
if - %WIFII !~ *connect*
Secure settings -> pattern lock enabled
Variable set -> %SEARCHWIFI ~ 0
Wifi -> off
end if
wait 10 minutes
Variable set -> %SEARCHWIFI ~ 1
Profile: Near Home
context:
Cell near (press scan)
state -> Variable Value -> %SEARCHWIFI ~ 1
Enter Task:
Wifi On
Secure Settings -> Pattern lock disabled
exit Task:
if - %WIFII !~ *connect* (i know this is overkill)
secure settings -> patternlock disabled
wifi off
end if
END WIFI PROJECT
REQUESTS PROJECT:
Voice commands in car to perform various responses to a received text, requested by oscar615
NOTE: autovoice recognize doesnt play well with pop-up sms windows...sometimes works, sometimes only works after you close the pop up.
oscar615 said:
Wow, your car code is almost what I was thinking about earlier today. About the only difference is when I get a text I would like it to give me 3 audible choices. 1- send a pre recorded text letting them know i am in the car. 2- Give me the option to do nothing and 3- the option to call the person who sent the text and have the phone set to speaker, and pause any music that is on. The problem is I am so new to tasker and really have no idea how to do this. I will study your code to see if I can learn what you did and maybe add the other options to it. I want it to all be voice responses and and prompts.
Do you have any idea what needs to be added to what you have created in order to get what I want?
Anyway great work. Thanks for doing this thread and posting your profiles.
Click to expand...
Click to collapse
Profile: Driving Text
context:
event -> received text any
state -> variable value - %PACTIVE ~ *car mode* (or whatever profile you have for your car)
task:
silent mode on
misc -> say -> Text received by %SMSRN. What should i do?
wait 150ms
plugin -> autovoice recognize
silent mode off
Profile: Cant talk
context:
autovoice recognized -> check event behavior -> command = can't
state -> variable value - %PACTIVE ~ *car mode*
task:
phone -> send sms -> number: %SMSRF, Message: Sorry, im driving, cant talk right now, check 'store in messaging app'
profile: call back
context: plugin -> autovoice recognized, check event behavior, command = call
state -> variable value - %PACTIVE ~ *car mode*
task:
call -> number: %SMSRF, check auto dial
With autovoice, if the command is "can't" you can say anything, and as long as "can't" is somewhere in the sentence, it will perform that action. unless you specified otherwise, but i wont get into that. If you say anything other than those, it will just close.
end oscar's request
END REQUEST PROJECT
I can only set up a set of profiles to shake on lock screen for flashlight. Thank god for this thread
Sent from my SCH-I605 using Tapatalk 2
hopesrequiem said:
I can only set up a set of profiles to shake on lock screen for flashlight. Thank god for this thread
Sent from my SCH-I605 using Tapatalk 2
Click to expand...
Click to collapse
lmao this is only the beggining....Ive got a lot more. It just takes SO LONG to type all this stuff out lol. Ill add more tomorrow!
Wow, your car code is almost what I was thinking about earlier today. About the only difference is when I get a text I would like it to give me 3 audible choices. 1- send a pre recorded text letting them know i am in the car. 2- Give me the option to do nothing and 3- the option to call the person who sent the text and have the phone set to speaker, and pause any music that is on. The problem is I am so new to tasker and really have no idea how to do this. I will study your code to see if I can learn what you did and maybe add the other options to it. I want it to all be voice responses and and prompts.
Do you have any idea what needs to be added to what you have created in order to get what I want?
Anyway great work. Thanks for doing this thread and posting your profiles.
oscar615 said:
Wow, your car code is almost what I was thinking about earlier today. About the only difference is when I get a text I would like it to give me 3 audible choices. 1- send a pre recorded text letting them know i am in the car. 2- Give me the option to do nothing and 3- the option to call the person who sent the text and have the phone set to speaker, and pause any music that is on. The problem is I am so new to tasker and really have no idea how to do this. I will study your code to see if I can learn what you did and maybe add the other options to it. I want it to all be voice responses and and prompts.
Do you have any idea what needs to be added to what you have created in order to get what I want?
Anyway great work. Thanks for doing this thread and posting your profiles.
Click to expand...
Click to collapse
Yeah absolutely, I actually have a profile that does something very similar. But for a different scenario...tell me; would you want to do this through a voice command? or through a pop-up dialogue?
Sent from my SCH-I605 using Tapatalk 4 Beta
eBoody said:
Yeah absolutely, I actually have a profile that does something very similar. But for a different scenario...tell me; would you want to do this through a voice command? or through a pop-up dialogue?
Click to expand...
Click to collapse
Thanks
I think voice commands would be better. Since I would be driving. The more hands free the better I think. But if popups were the only way, then that might work also.
oscar615 said:
Thanks
I think voice commands would be better. Since I would be driving. The more hands free the better I think. But if popups were the only way, then that might work also.
Click to expand...
Click to collapse
They most certainly are not...youre using an android device! anyways, ill post a profile that does what you want under a requests project. its actually easier to do voice options.
edit: its up!
eBoody said:
They most certainly are not...youre using an android device! anyways, ill post a profile that does what you want under a requests project. its actually easier to do voice options.
edit: its up!
Click to expand...
Click to collapse
Thank you so much. Now to study these (I need to learn, I have lots of ideas) all of this and get it going on my phone. Thanks again.
IS there any interest in this thread? if not ill stop, its pretty time consuming to type all that stuff out.
I'm extremely interested! I love finding new tasker setups. Your car profile is intense!
Sent from my SCH-I605 using Tapatalk 2
I'm really interested and am going to have to use that car setup of yours. Just a question I've been wondering is can one backup and upload a profile for easy imports? That would make things so much easier rather than trying to follow I guide in my opinion.
Very interested. I can barely use Tasker. Makes me feel like such a nub
Sent from my SCH-I605 using Tapatalk 2
ok great! ill keep posting profiles. Ill post the XML files for you to import too then, I hope there wont be any compatibility problems!
im trying to figure out a better way to be able to semi-toggle between two roms with tasker, i have a way, and it works, but i want a faster, less convoluted way to implement it. Its a little pop up box that has a button asking if you want to swtich roms. kinda cool. I got the inspiration from monaco's google-play edition/stock rom toggle thing.
eBoody said:
ok great! ill keep posting profiles. Ill post the XML files for you to import too then, I hope there wont be any compatibility problems!
im trying to figure out a better way to be able to semi-toggle between two roms with tasker, i have a way, and it works, but i want a faster, less convoluted way to implement it. Its a little pop up box that has a button asking if you want to swtich roms. kinda cool. I got the inspiration from monaco's google-play edition/stock rom toggle thing.
Click to expand...
Click to collapse
Dude you seem like you are going to be a great asset to this community! Thanks for all you've done so far and all you plan to do!
Sent from my SCH-I605 using Tapatalk 2
hopesrequiem said:
Dude you seem like you are going to be a great asset to this community! Thanks for all you've done so far and all you plan to do!
Sent from my SCH-I605 using Tapatalk 2
Click to expand...
Click to collapse
Hey thanks bud! Yeah I plan on it. Always learning though I'll post the tasker profile along with the necessary dependencies once I figure it out.
Sent from my SCH-I605 using Tapatalk 4 Beta
Thanks for the thread. I am working on the car mode now.
Sent from my ZTE N9120 using xda app-developers app
GTurn said:
Thanks for the thread. I am working on the car mode now.
Sent from my ZTE N9120 using xda app-developers app
Click to expand...
Click to collapse
Awesome, if you guys have any requests I'll be more than happy to help!
Sent from my SCH-I605 using Tapatalk 4 Beta
I have Tasker installed on my phone. I tried to use it a time or two but to no avail. So, I "froze" it in Titanium as I purchased the software. A tutorial or two would be nice- not saying for you to do so. It is obvious to me though that you really have a great understanding of Tasker. I just wanted to chime in on this thread to give you a huge *Kudos*
Do you think you could do screen casts video walk through of your set ups?
Sent from my SCH-I605 using Tapatalk 2
harajyuks said:
Do you think you could do screen casts video walk through of your set ups?
Sent from my SCH-I605 using Tapatalk 2
Click to expand...
Click to collapse
I really like that idea. Maybe a YouTube video or two could work as well. No pressure, just saying
Sent from my Samsung Galaxy Note II...
Related
This project is no longer developed!
Profile Switch is a small program that stores up to 99 different settings for Phone, WiFi, Bluotooth, Data-Connections, vibrate, silent, eg. and create shortcuts to switch directly. Up from 1.3 you can switch automatically at certain times and days. The complete profile will be changed only with one click.
Every profile can:
switch phone, bluetooth, WiFi and data connections
auto run on two different times every day or only on selected days
check your appointments if there is a category to disable auto run
switch back to another profile in a given timespan
start up to 3 programs
close up to 5 processes
change the system and ringer volume
change the ringer script
change the backlight settings for batterie and ac power
add a shortcut in startmenu to itself
disable auto starts of profiles if one 'all day event' with selected categories is found, you can select up to 3 categories
start a profile if a appointment with selected categories will start or end, you can select up to 3 categories
Additional you can:
disable data in roaming
switch to a profile if the phone comes back to the home network
run a profile once after a given timespan
disable all autoruns up to a given day and time
start a profile if a pc-connection is detected or lost
start a profile if a headset is connected or disconnected
use seperate scripts to vibrate if new calls, emails or sms are incomming
use separate script to vibrate for reminder (appointments and tasks)
use categories from your contacts to mute (or not) incoming calls
The pictures are from version 1.14.0.0:
All screenshots small (0,6 MB) - All screenshots large (1,9 MB)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I only tested this application on my HTC HD2, it works in portrait and landscape mode. If you use this on another device, please check the features carefully, especially the block of data when this option is used.
You will find two links in the startmenu folder:
- Profile Switch - the application
- Close Data - a little helper, shut down existing data connection without any visible window. It does not prevent new connections are established (the same funktion like "Close all connections" in the app.
You can edit the language files in the program folder and/or create an new one. For a new translation just copy the 'english.lng' to 'french.lng, spain.lng ...'. But edit/translate only everything after the '=', not on the left side of the '='! Save the file in unicode-format.
Please note:
Requirements: .NET CF 3.5.
For update only install the new version.
Enabled network connections in the settings menu ('Do not switch networks' ) prevent these connections for any switching.
Shortcuts are saved in startmenu\ProfileSwitch\Profile name.
Backups are stored in the progamm folder as 'Backup_YYYY_MM_DD_hh_mm_ss'.
Restore a backup will delete your shortcuts stored in startmenu, these must be set new.
If you stored a profile as shortcut, the profile name cannot be edited until the shortcut is removed.
If you uninstall the application, please delete first the saved shortcuts.
If you want to use automatically switching enable this funktion in settings - Autorun settings ('Activate switch on time').
Set time to '00:00' will disable automatically switching for this day.
Important: If you for example sitting in an airplane, you must disable this feature! Otherwise it can turn off the flight mode and your phone on!!
Using 'Profile switch once' will ignore any settings of 'Activate switch on time'.
If you set the autoswitch time in more as one profile at the same time, only the first profile will switch. The rule is: 1. Run once, 2. The other times up from profile 1 to 99.
Don't worry about a new entry in your autostart folder. CheckProfile is only used to set the next autoswitch after reboot or after turned on the device. It don't stay in memory.
If you use the settings for system and/or ringer volume: My device (HTC HD2) has the option 'Only use one volume'. If you select this, the device will not show this correctly, if different volumes for system an ringer are set in the profile. Hope this also works correctly on other devices.
Special icons for each shortcut are now separatly. Please download them for your operating system. Windows 6.5.X - store the files in the applications subfolder 'Icons', the files for Windows 6.1 must be stored directly in the progam folder.
If you change icons for profile and the shortcut already exists, any links to them and the shortcut itself must be deleted and be rebuilt, otherwiese there are no effects taken. In Windows 6.1 you can't edit/change them!
Special Icons are only shown for the first 10 profiles.
If you get an error while saving a shortcut to your start menu like this: 'Saving the file failed' - please remove all special characters from the profile name, it's used for the file name.
Please do not restore any registry settings manually, always use the backup and restore function. If you restore parts of older entrys - the key names and values can be changed automaticly by an update. In this case you must delete the complete section "ProfileSwitch" or restore an older backup created by ProfileSwitch before you manipulate the registry.
If you select any program or process for closing with a profile, this program must be running currently, otherwise it will not be displayed.
Please use the function "Close program" very carefully. Only select processes you know!
The timespan you set in "time to look back if the device was turned off while starting a profile automaticly" must be smaller then the smallest time between two autorun times.
What the program does not and probably never will do:
Switch the band between GSM and UMTS (auto): There are too many differents between several devices.
Profile switching based on location or GSM tower-ID's: To do this, the application (or a little bit of this) must constantly stay in memory and check the location.
Support for any PIN code protected unlocking the phone.
Other languages:
Polish language from mobione.pl team: http://forum.mobione.pl/. You can get the latest version here: http://www.mobione.pl/dostep/Polish.zip.
Italien translation from safato: http://forum.xda-developers.com/showpost.php?p=8303246&postcount=238.
Spanish translation from tonybest: http://forum.xda-developers.com/showpost.php?p=8602795&postcount=299.
French translation from Albator V: http://forum.xda-developers.com/showpost.php?p=9396283&postcount=397.
Hungarian translation from zoliwr: http://forum.xda-developers.com/showpost.php?p=9311710&postcount=386.
Czech translation from Stevik: http://forum.xda-developers.com/showpost.php?p=15875977&postcount=689
Any Questions? Please don't ask me via PM about any problems. Please, please use this forum.
Change Log:
1.17.0.0
[+]The function 'Mute incoming call by category' from the beta version integrates. You can select this function in the vibrate settings and also in every profile. Please note: Don't forget to select the categories!
[+]One additional profile can run if roaming starts.
[+]New entry 'Do not switch' in the profile selection for end roaming.
[-]Using the exclusion function 'All day event' for autoswitch do not work correctly if more then one entry matches on two consecutive days.
[-]Sometimes the program hangs while exiting the vibrate settings.
1.16.0.0
[+]Using the vibrate functions no longer needs a program staying in memory.
[+]Added vibrate functions for missed calls.
[+]Added repetitions for all reminders.
[+]Added vibrate functions to set the sound and other settings for the reminders directly in Profile Switch.
[+]Settings to hide or show the main buttons on homepage.
[+/-]Settings menu now divided into several sub-menus.
Please note: If you enable the vibrate functions, Profile Switch will save your currently settings and lock these settings in windows. Disabling will restore your saved settings.
1.15.1.0
[-]Repetition of sequence (new emails and new sms) does not work.
1.15.0.0
[+]Added an option to use also vibrate settings for the reminder (appointments and tasks).
[+]Vibrate functions during calls now can set separately.
[+]Added a function to choose date and time for 'Switch profile once'.
[-]Function 'switch back to current profile' can crash.
1.14.6.0
[-]After a soft reset and also using the custom vibrate settings the program to watch incomming calls can crash.
1.14.5.0
[+]Now using the new Sense Interface SDK v1.50.
[-]After a soft reset and also using the custom vibrate settings the program to watch incomming calls etc. was not restarted.
[-]Using the custom vibrate settings for calls and a profile is used to set the sound profile to 'ring and vibrate' this profile was not correctly detected on the startpage.
1.14.4.0
[-]If vibrate notifications are used and two new messages appears exactly at the same time, profilevib.exe starts twice and can crash if logging is enabled.
1.14.3.0
[-]Ringtone settings are lost.
1.14.2.0
[-]Switching at end of an appointment doesn't work if it is a recurrence type.
1.14.1.0
[-]Switching at begin/end of an appointment doesn't work every time.
1.14.0.0
[+]You can run a profile if a headset is connected or disconnected.
[+]Added a toggle function for phone, wifi, bluetooth and data.
[+]Added an option to ignore categories for 'Check appointments'. Just leave the categories empty if you want to use this.
[+]Added a function to use separate scrips to vibrate for new incomming calls, emails and sms. You found these new vibrator settings in 'Settings' - 'Vibrator-Settings'.
To use this new functions, first you must find out the vibrator-adress of your device. Change the adress value and hit 'Test', your device must vibrate.
The script is: 1. value=timespan for vibrate, 2. value=timespan for silence, 3. value=vibrate, 4. value=silence, and so on, times in milliseconds, separator=','. The additional last value is the repeat value (0=without repeat), this value is always required. E.g.: 300,500,300,1000,3
To realise this, a part of Profile Switch must stay in memory to observe a few registry entrys of incomming calls and messages. Similarly it controls the sound settings for all these events. This only is needed if one of these functions is set to 'on', otherwise there is no program in memory.
[-]Error if you select a program to start with a profile and there are dots in the filename.
1.13.0.0
[+]Separately ringtone scripts for every profile.
You are able now to change the ringtone scripts with every profile. The integrated functions (like HTC HD2) are:
Ring and vibrate (Script "av0pw3r")
Vibrate then ring (Script "v3w3apw3r")
Ring only (Script "apw3r")
Ring only once (Script "p")
Ring ascending (Script "c50apw3c150r")
Please note that all these scripts only used by windows if the sound profile is set to "full on" (ring and vibrate).
Additional you can create up to two user defined scripts (please see "settings") for any other ringtone by using any combination of this commands for the script ("r" is only usefull at the end of script):
a = activate device
cN = set volume to N in percentage max volume
fN = flash notification LED for N seconds
p = play ringtone
r = repeat
vN = vibrate for N seconds
wN = wait for N seconds
1.12.2.0
[-]Corrected a few things to disable data in roaming continuously, I think this function is ok now.
[-]Error if you first set times for autorun a profile and then later disable this function in settings.
[+-]Some other small changes.
1.12.0.0 beta
[+]Disable data in roaming continuously. *) Beta!
[+]Switch to a profile if the phone changed back from roaming to your home network. *) Beta!
[+]Start a profile if appointments with selected categories will start or end.
[+]For Omnia 2 (i8000) users: You can reduce the programs in the selection list. May be it helps?
[+]You can reset a profile to it's default values (except the profile name).
[+]Added a setting for "BatteryTimeoutUnchecked". Please have a look into the description for this.
[+]Added a brief description.
[+][-]Changed the function to read the language.
[+][-]Some optical improvements.
[+][-]Setting 'Wait for Phone' removed, no longer needed.
Thanks rlmouse, lookes like something I can use. Gonna try this. Thanks for the effort and sharing.
Hi thanks for your work, I will also give it a try. I hope it will work with my dualsim ...
I will give feedback soon.
If you like also in German
Homer-S said:
I hope it will work with my dualsim ...
Click to expand...
Click to collapse
No idea. But it is only one device. I think, it should work, but there is currently no chance for me to test it.
I will give feedback soon.
Click to expand...
Click to collapse
Yes please.
OK
Installation without issues
adjusting the profiles is ok
switching between profiles seems to work probably
Question:
can you maybe add an volume adjustment for phone & sms ?
how can I use the "one click change"? can I make shortcuts to switch directly to "profile 1" or "profile2" etc
Thanks so far
Homer-S said:
can I make shortcuts to switch directly to "profile 1" or "profile2" etc
Click to expand...
Click to collapse
Please give me the next weekend for this options.
can you maybe add an volume adjustment for phone & sms
Click to expand...
Click to collapse
Hmmm. Vibrate or silent eg. are simply. I think volume adjustment is very difficult for me. First i must find a solutions for this, working properly on diffrent devices. (Eg.: Two slider for system and ringer or one slider for both)
Hi,
installed this on an i900 with custom 6.5.3 ROM. Installation and customizing the profiles works good. When i activate a profile with "WiFi on" the following error occurs:
Code:
Profile Switch.exe
FileNotFoundException
Message text unavailable. Resource file
'Microsoft.VisualBasic resources' not
found.
bei
Microsoft.VisualBasic.Interaction.Shell(Str
ing PathName, AppWinStyle Style,
Boolean Wait, Int32 Timeout)
bei
IGS_Verbindungen.Verbindungen.Switc
hAll(Int32 Bt, Int32 WiFi, Int32 Phone,
Int32 Data)
bei
IGS_Verbindungen.Verbindungen.Profil
eClick(ISenseListItem Sender)
bei
IGS_Verbindungen.Verbindungen._Lam
bda$__12(Object a0)
bei
StedySoft.SenseSDK.SensePanelItem._
notifyClick()
bei
StedySoft.SenseSDK.SensePanelItem.O
nMouseUp(Int32 x, Int32 y)
bei
StedySoft.SenseSDK.SenseListControl.
OnMouseUp(MouseEventArgs e)
bei
System.Windows.Forms.Control.WnPro
c(WM wm, Int32 wParam, Int32
lParam)
bei
System.Windows.Forms.Control._Intern
alWnProc(WM wm, Int32 wParam,
Int32 lParam)
bei
Microsoft.AGL.Forms.EVL.EnterMainLoo
p(IntPtr hwnMain)
bei
System.Windows.Forms.Application.Run
(Form fm)
bei
IGS_Verbindungen.Verbindungen.Main()
WiFi works, but the software doesnt show the current profile.
holybabel said:
Hi,
installed this on an i900 with custom 6.5.3 ROM. Installation and customizing the profiles works good. When i activate a profile with "WiFi on" the following error occurs ...
WiFi works, but the software doesnt show the current profile.
Click to expand...
Click to collapse
Sounds like your .net is missing something! Do you use .NET CF 3.5?
I tried to install .NETCFv35.wm.armv4i.cab but it says that a newer version is already installed, so i think the latest version is integrated in my ROM.
holybabel said:
I tried to install .NETCFv35.wm.armv4i.cab but it says that a newer version is already installed, so i think the latest version is integrated in my ROM.
Click to expand...
Click to collapse
Do you get the same error when you try: 'Connections' - 'Close all connections'? I think, there are a few little diffrent between the .Net versions.
holybabel said:
I tried to install .NETCFv35.wm.armv4i.cab but it says that a newer version is already installed, so i think the latest version is integrated in my ROM.
Click to expand...
Click to collapse
Ok, maybe found. Can you please test this exe stored in the attached zip-file? Just extract and copy the exe into the program dir (overwrite the existing file).
WOW...now it works perfect for me....
Wishlist:
Volume adjustment (vibrate, silent, ring tone)
One Click Change (Shortcuts to switch to profileX)
I've upload the complete new version. Some translations are missing, if you use only the new exe.
holybabel said:
Volume adjustment (vibrate, silent, ring tone)
Click to expand...
Click to collapse
I must figure out that functions before.
One Click Change (Shortcuts to switch to profileX)
Click to expand...
Click to collapse
Currently working on it.
Volume adjustment is more important for me. One-Click-Change is unnecessary for me since application can start on "Change-Profil-Page".
Version 1.2.0.0 is online
Change Log:
1.2.0.0
[+] Profiles now with settings for vibrate, silent, both and also for no change
[+] Profiles can be saved as shortcut in startmenu
Looks like very good software.
The minimum is:
volume adjustment - separate for ringer and system
profile based on - appointment, time + bonus - location bases - GSM base stattion number
backlight adjustment -
switch for enabling & disabling wireless - data, wifi, BT, phone
just look at the ageye.de G-profile, that is the most powerful profile switcher at this time, but unfortunately it is paid application. But the best one.
miland said:
Looks like very good software.
The minimum is:
volume adjustment - separate for ringer and system
Click to expand...
Click to collapse
Coming soon.
profile based on - appointment, time + bonus - location bases - GSM base stattion number
Click to expand...
Click to collapse
I don't like software who stays always in memory. And, to get the current tower-id every time, you must run the device in unattached mode. That drains the batterie.
backlight adjustment -
switch for enabling & disabling wireless - data, wifi, BT, phone
Click to expand...
Click to collapse
switch for enabling & disabling wireless - data, wifi, BT, phone are included.
just look at the ageye.de G-profile, that is the most powerful profile switcher at this time, but unfortunately it is paid application. But the best one.
Click to expand...
Click to collapse
Yes, I know G-Profile. But it often goes online, that is nothing for me. So I've written this small program itself.
Looks good - am going to try this out.
Downloading now .................
How do i set the English language file. I just deleted the "Deutsch.lng" in the install folder. Still struggling if it still has a setting but it's all German.
EDIT:
Nevermind i found it! "Sprache" It's looks good. Thanks!
Keep updating this great app! A MUST HAVE.
rlmouse said:
Coming soon.
I don't like software who stays always in memory. And, to get the current tower-id every time, you must run the device in unattached mode. That drains the batterie.
switch for enabling & disabling wireless - data, wifi, BT, phone are included.
Yes, I know G-Profile. But it often goes online, that is nothing for me. So I've written this small program itself.
Click to expand...
Click to collapse
Well it is of course your decision, but my thought is, that profile software must have function is time based switching. I want to have 3 or 4 different profiles a day based on time and I can't imagine I am switching manually.
Anyway, the backlight and volume switching are truly basic functions.
And the last suggestion, please set the default language to English. I am from Czech rep. so German is not problem for me, but maybe for the rest of the world it is.
I thought I had tasker figured out, but can't seem to get Bluetooth to come on, or wifi to shut off, or screen brightness to switch to AUTO when I plug into my car dock.
I have the first part set right, I believe. I have the Profile turn green (activating) when "Docked" [car]. This seems to work. However none of my tasks work. I have it set to Auto Brightness [on], Bluetooth [on] and WiFi [off].
I also had exit tasks, which were the opposite of above (Auto Brightness [off], Bluetooth [off] and WiFi [on]).
These have no effect, but tasker does prevent my car panel from launching, which I like. Any advice?
Well, it seems that I can't launch apps via tasker widgets either. Seems like nothing I set for tasker to actually DO works. However, the conditions seem to be met (the profile names turn green). Can anyone assist?
Not sure whats going on with yours. You don't seem to be alone though. I would try to go to Apps > Tasker, clear all data/cache.
Then make a simple task. Like mute when you hit volume down button.
Here is a profile you can import to do everything you wanted:
hxxp://db.tt/CGT4WFI
State: Docked [Car]
Enter
1. Load App - Set: Car Panel
2. WiFi - Set: Off
3. Bluetooth - Set: On
4: Auto Brightness - Set: Off
Exit
1. Kill App - Set: Car Panel
2. WiFi - Set: On
3. Bluetooth - Set: Off
4: Auto Brightness - Set: On
vypurr said:
Not sure whats going on with yours. You don't seem to be alone though. I would try to go to Apps > Tasker, clear all data/cache.
Then make a simple task. Like mute when you hit volume down button.
Here is a profile you can import to do everything you wanted:
hxxp://db.tt/CGT4WFI
Click to expand...
Click to collapse
I'll try clearing data/cache on it and see if that helps. As for your profile, thank you. I'll give it a shot later today. If it works, I will tweak it though.. I actually prefer the car panel to stay off.
Would be cool if on "Docked", it could switch to a different Sense "Theme" I created just for being in the car. This theme could have links to whatever I wanted on the home screens, instead of the default car dock stuff. Know of a way to do that?
if tasker can change sense home screens after certain conditions i may have to reconsider my potential purchase haha, that would be awesome.
I haven't found a way to do that. Also, I can't get tasker to perform any actions anyway... Don't know what's going on.
---
Sent via Thunderbolt
The only way I know of to do that is to load multiple launchers. Set each one up for a new environment, then make a rule to open that one.
Is there any app that syncs with google calendar and automatically shuts off your ringer, or sets your phone to vibrate while you're in the meeting or something along the lines of that?
I used Buzy on my OG Evo and it worked great, but I tried installing it on my evo lte, and for some reason it just force closed every time I tried to run it... I believe that it's not compatible with ICS, or sense 4.0, or both
I tried busy me, but either my settings were a tad wonky or it just doesn't work
Any suggestions guys?
Im not sure if this app will help is called phone silencer in the play store....you could time it for the amount of time you wanted on silent and then it will go back to loud
Sent from my EVO using XDA
Rodrigo87 said:
Im not sure if this app will help is called phone silencer in the play store....you could time it for the amount of time you wanted on silent and then it will go back to loud
Sent from my EVO using XDA
Click to expand...
Click to collapse
Hmm, I'm looking for something more automatic..
I need this in case I forget to silence my phone before work or classes, and the synchronization is nice because since I already use google calendar for everything, no extra steps are necessary on my part (like timing the ringer for each day)
also when adding an impromptu meeting, I just need to add it to my calendar and it silences my ringer when it's time
Automatic? Nothing will beat Tasker IF you set all your appointments in your calendar with a certain title. For example, I put 'Work' in my calendar entries and set up a tasker profile to detect if there's a calendar entry by that name, if there is, it will automagically set my phone to vibrate (and also set one to automatically reply to texts with 'at work, I'll get back to you later' if anyone tried to text me.
If you're interested I will post the profile I have =D
EDIT: I figured I will post the profile for those who want this anyway, you will need Tasker, get it from Google Play here -- or the author allows for a 7 day APK trial from his website here. Installed the app? Good, launch it and follow these instructions:
New > Profile Name > OK > State > Calendar Entry
Under title put what title it will match, for example putting in "Work *" will trigger this profile if you have a calendar entry that starts with Work (Work SDFHOH will also trigger it), use * as a wildcard. Other parameters can also be set if you wish, hit the ? button to see what each does, but the only necessary one is the title. Hit done.
A task selection should automatically pop up. This is what tasker will set your phone to do when it detects the title we set in the previous step. Hit new task, name it if you wish. Hit the + button.
Audio> Silent mode> Chose mode (Vibrate or On (completely silent))> Done
Next step is optional but I like to add a visual queue telling me that the profile activated. Hit the + button again:
Alert> Flash> Enter text you wish to display i.e. "Vibrate mode on".> Done
Hit test if you want to make sure it works, afterward, hit Done. Now tap on the action we just created, it should have a green > arrow saying something like "Silent Mode On/Vibrate/Off" and tap "Add Exit Task" (this will automatically take the phone off of vibrate when meeting/work/school is over.
Hit New Task and name if you want. Hit the + button.
Audio> Silent Mode> Off (or Vibrate, if you always keep your phone on vibrate)> Done
Again the following is if you want to add a visual queue showing that the phone is no longer silenced:
Alert> Flash> Enter text you wish to display i.e. "Vibrate mode off".> Done
Hit done and apply. You're done
Basically what we did is create a Profile that detects if the calendar has a certain title, if so, it will enter the start task and once tasker detects that the calendar no longer has that event active, it will automatically apply the end task.
It should look something like this:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This app is very powerful, you can create literally endless tasks (I have one set to go silent upon arrival at my favorite movie theater, go into silent mode if the phone is getting power from the AC between certain times EXCEPT if I receive a call from certain people, turn my media sound down when I plug in my headphones and pull up a menu letting me chose from all my music apps, say the name of the caller) I recommend you experiment around. There's a site that has a bunch of profiles if you want any ideas located here. Enjoy!
Thanks! I'll check it out.
Is there any way for tasker to silence the phone for all meetings in a certain calendar for google? or during all meetings described as busy?
Yes it's possible. Instead of setting a title, leave that blank and under availiable select No go activate when you're busy OR under calendar hit the little search icon and select your calendar.
Sent from my Evo3D Shooter.
Search the market for "smart silencer". I've been using it for almost a year now.
I actually use Tasker for this. This works fine on my Evo 4GLTE (did a backup and restore from my EVO 4G).
However, the application does have a learning curve. Look the application up online as it's paid for.
weylin said:
I actually use Tasker for this. This works fine on my Evo 4GLTE (did a backup and restore from my EVO 4G).
However, the application does have a learning curve. Look the application up online as it's paid for.
Click to expand...
Click to collapse
I downloaded tasker and tried to set up auto silencer, but it actually said that 'this feature is unavailable for your device'....
yohaq said:
Is there any app that syncs with google calendar and automatically shuts off your ringer, or sets your phone to vibrate while you're in the meeting or something along the lines of that?
I used Buzy on my OG Evo and it worked great, but I tried installing it on my evo lte, and for some reason it just force closed every time I tried to run it... I believe that it's not compatible with ICS, or sense 4.0, or both
I tried busy me, but either my settings were a tad wonky or it just doesn't work
Any suggestions guys?
Click to expand...
Click to collapse
I highly recommend Shush (free from the market). It's not "automatic", but what it does do, is when you turn your ringer down, a pop-up lets you quickly pick how long the phone should stay silent and lets it turn back on after that time period.
It's super fast to use (less than 3 seconds to mute and set a time) due to a smart and clean interface. A very nice app, in my opinion.
Don't mean to resurrect a somewhat old thread, but I use Silent Time to automate silent mode for my classes. It doesn't do it initially automatically, but you just set up the event once, what time and days you want it to be silent, and it will do it endlessly until you delete the event or uninstall.
I know its not as automatic as you'd like, but I thought I'd suggest it anyway.
Thanks for the suggestion, I'm going to try to use busy me again, and if that doesn't work I'll just use this
Hi all,
i've installed the Tasker Trial (from the developer site) a few days ago on my SGS III (no root, using stock rom).
I want Tasker to disable my Lockscreen security when i'm at home. Recently i tried this setup:
Profile: Trusted Zone
State: Wifi Connected [ SSID:ssid1/ssid2 MAC:* IP:* ]
A1: Secure Settings [ Configuration:Clear Password/Wait For Unlock ]
Profile: Untrusted Zone
State: Not Wifi Connected [ SSID:ssid1/ssid2 MAC:* IP:* ]
Abort Existing Task
A1: Secure Settings [ Configuration:Set Pin ]
Click to expand...
Click to collapse
I've tried nearly every setting i could imagine. With and without "Secure settings" plugin, pattern or pin on lockscreen, foregrund mode with notification icon or background without notification. Also i've registered Tasker and secure settings plugin as device admin in security settings.
My problem is, after setting up all necessary profiles and tasks everything seems to be fine, but after a while the display is locked even though i'm connected to my wifi at home. (yes, wifi is enabled all the time, even in lockscreen ;-) )
Also i've noticed that tasker sometimes displays a notification saying "Low memory". On SGS3? Realy?
I hope anyone could help me how to run tasker in a reliable way on sgs3.
Thanks in advance.
Hey man, sorry I can't help but I am running one task on my Spirit GS III.
My task is to connect to Wi-Fi according to the near cell tower.
Anyway, mine seems to be working just fine.
Sent from my SPH-L710 using xda app-developers app
I dint think everything is perfect with tasker and ics. I think I red in the google groups about some things that may not function perfectly.
I have my lockscreen disabled when Bluetooth is connected in my car, and when it's connected to power. Sometimes it works, sometimes it doesn't. Sorry, that's the best I can offer you.
Sent from my GT-P1000 using Tapatalk 2
I've used tasker since my desire days. I had profiles that turn wifi on and off and go into silent mode etc.
The only profile that doesn't work for me is turning off the LED. In fact for me I haven't found anything that will turn off the LED
Sent from my GT-I9300 using Tapatalk 2
Thank you guys.
I've also searched the web.
Unfortunately, i think there is a problem with Tasker and ICS (especially with SGS3?).
Maybe there will be an update for tasker...
Does anyone of you knows an app which allows me to control the Lockscreen behaviour through Wifi status?
eLiTeFLO said:
Does anyone of you knows an app which allows me to control the Lockscreen behaviour through Wifi status?
Click to expand...
Click to collapse
Give Delayed Lock a go, there's a free trial in the store. Works perfectly on the S3
Sent from my CM9 TouchPad
It's working like a charm for me to enable/disable the lock screen security with Tasker and secure settings. I need it because of our Internet certificate at our University.
fl4m3y said:
It's working like a charm for me to enable/disable the lock screen security with Tasker and secure settings. I need it because of our Internet certificate at our University.
Click to expand...
Click to collapse
Can you post your setting for Tasker and secure settings please. Do you use pin or pattern on the lockscreen?
@Isadora: I'll give it a try
Sent from my GT-I9300 using xda app-developers app
Yes No problem... I just need to translate my tutorial. Just wait a bit
And I'm using pattern
eLiTeFLO said:
Can you post your setting for Tasker and secure settings please. Do you use pin or pattern on the lockscreen?
@Isadora: I'll give it a try
Sent from my GT-I9300 using xda app-developers app
Click to expand...
Click to collapse
I use Pattern, and this worked for me.
1)
Press the "+" to create a new profile. Name it what you want (I called it "unlock at home")
Press the "state" button.
Press the "Net" button.
Press the "Wifi Connected" button
Press the search button for the "SSID" and choose your network (wifi must be turned on!)
Press the green accept button.
2)
Now the "Task Selection" window appear.
Press "New Task" and name it whatever you want (I called it "Unlock")
Press the "+" button
Press the "Display" button
Press the "Keyguard" button
Set the Keyguard status to "Off"
Press the green accept button.
Press the green accept button again.
3)
Now you are back at the main profile window. Long press on the name you made for 2).
Press "Add Exit Task"
Press "new task" and name it what you want (I called it "Lock")
Press the "+"
Press the "Display"
Press the "Keyguard"
Set the status to "On"
Press green accept button.
You are done.
Now you phone will disable the keyguard when you are connected your home wifi network and enable it when you are not connected.
Notice. If you turn the screen off and on again within a second or two, the screen will turn off again, dunno why. So when you test it, turn the screen off and wait like 5 seconds and then turn it on.
Good luck
fl4m3y said:
Yes No problem... I just need to translate my tutorial. Just wait a bit
And I'm using pattern
Click to expand...
Click to collapse
I made this tutorial for the eduroam networks at german/european universities. In this tutorial it will be explained how to setup an automatic enableing/disableing pattern lock. At my university place I have to use pattern or pin lock because of the "telekom root ca 2 certificate", otherwise the internet won't work. So the described steps should be very similar to your problem.
I edited the parts so you can use it 1:1
Requirements:
- Installed and working BusyBox App
- Installed and working Secure Settings App
--->Installed Helper in Secure Settings
- Installed and working Tasker
- Create Lockscreen (Password, Pin or Pattern Lock)
--------------------------------------------------------------------------------------------------
Open Tasker Application:
- Create new profile and name it like you want.
- At the "First Context" choose location and locate the place where you don't need the secure lockscreen. Instead of location you can choose whatever you want. In e.g. WiFi
- If you're done, just add a "New Task" and name it e.g. "deactivate pattern" or how you like
- Add an action ( Plugin -> Secure Settings -> Edit -> choose at DEV ADMIN ACTIONS "Password/Pin" or at HELPER ACTIONS "Pattern Lock"
---> For Password/Pin use these settings:
imageshack.us/photo/my-images/266/screenshot2012071109483.png
---> For Pattern Lock use these settings:
imageshack.us/photo/my-images/69/screenshot2012071109551.png
- Save the settings and check them all. You got a new profile with one task now. Long press at the task and add an "Exit Task". Use the same steps from above ( the last 2 steps ) just name it e.g. "activate pattern"
---> For Password/Pin use these settings:
(Insert your security Informations)
imageshack.us/photo/my-images/267/screenshot2012071109574.png
---> For Pattern Lock use these settings:
imageshack.us/photo/my-images/515/screenshot2012071109571.png
- Save all the settings you made and then you should have a profile which shows minimum one context and 2 tasks ( Input and Exit task)
That's it... i hope it work! If not let me know Tasker and Secure Settings are a very powerful tool and handle them with care!
Good Luck
Thanks to all of you.
Today i've tried the Trial version of "Delayed Lock" from the market with the Wifi Plugin.
An what should i say?
It works like a charm :good:
Less features than Tasker, but less expensive...
Nevertheless i will try your profiles even if i think i tried this settings before
Regards
For me it doesn't quite work.
When I turn off the pattern lock, it activates swipe unlock instead of no unlock screen.
I tried to turn off keyguard too, but with no effect at all.
I'm on stock rom with root.
Same for me, but I like it so. Don't know if this is a bug or a feature.
Sent from my GT-I9300 using xda app-developers app
Guys, check Tasker website, there's a beta version there. It might solve your problems.
EDIT: check if you have the latest version: 1.3u1 I haven checked before posting, there is no more beta. Sorry.
Sent from my GT-I9300 using Tapatalk 2
Ok maybe i got something: When you configure a VPN or install a new certificate, Android deactivates the possibilty to choose the less secure options in the security / lockscreen menu. If you now delete any VPN connection and/or user defined certificates, tasker and secure settings should work. At least for me it does. Can anyone verify this?
Alright so I have created a (SCENE) that I am exporting as an app where when a button is clicked it will (APP-LOAD APP), (TASK-WAIT-5 seconds) then (INPUT-BUTTON-VOLUME UP). My problem is I can only figure out how to make preset (Wait) times. I am looking for a way to make a user specified (Wait) time. I want to implement a slider in the app that adjusts how long the (TASK) should (WAIT) before performing the simulated button push. I tried my best to explain what I am trying to do. If anyone has any advice it would be greatly appreciated. Thanks.
mc_becker56 said:
Alright so I have created a (SCENE) that I am exporting as an app where when a button is clicked it will (APP-LOAD APP), (TASK-WAIT-5 seconds) then (INPUT-BUTTON-VOLUME UP). My problem is I can only figure out how to make preset (Wait) times. I am looking for a way to make a user specified (Wait) time. I want to implement a slider in the app that adjusts how long the (TASK) should (WAIT) before performing the simulated button push. I tried my best to explain what I am trying to do. If anyone has any advice it would be greatly appreciated. Thanks.
Click to expand...
Click to collapse
Which version are you using? JB/ICS or the one for Gingerbread or below?
For JB/ICS:
1/ place the slider on the scene - set it to default value 5 - go to 'value selected' - add new task variabele set - set %WAIT_TIME_SLIDER to %new_val
2/ no open the wait action you already made. tab on the two arrows that overlap, you now get the option to type a value instead of select it with a slider. type here: %WAIT_TIME_SLIDER
I didn't check this out, but it should work normally... good luck!
Thanks! For some reason though, it doesn't listen to the time wait command... it just issues the input button press immediately after the app is opened, regardless of what I set on the slider... hmm
Sent from my SGH-T889 using Tapatalk
mc_becker56 said:
Thanks! For some reason though, it doesn't listen to the time wait command... it just issues the input button press immediately after the app is opened, regardless of what I set on the slider... hmm
Sent from my SGH-T889 using Tapatalk
Click to expand...
Click to collapse
Go the the task where you have defined the Wait. Go to settings and set it to "abort existing task".
I just checked myself and that should work... (I'm not sure though WHY you need to set it to abort existing, but hey, it get's the job done )
TiVa said:
Go the the task where you have defined the Wait. Go to settings and set it to "abort existing task".
I just checked myself and that should work... (I'm not sure though WHY you need to set it to abort existing, but hey, it get's the job done )
Click to expand...
Click to collapse
What do you mean by settings?
mc_becker56 said:
What do you mean by settings?
Click to expand...
Click to collapse
when you open the task,
at the bottom of the screen there is a button with what looks like 3 different sliders (second button at the bottom from right)
TiVa said:
when you open the task,
at the bottom of the screen there is a button with what looks like 3 different sliders (second button at the bottom from right)
Click to expand...
Click to collapse
Oops, yeah my bad haha. Thanks! Alright...what I'm looking to implement now is...ok, you know how we have the slider now. I want to be able to set the slider to the TIME WAIT then..have a button next to the slider that executes everything all together. So..I'm trying to have an app open, the slider sets the TIME WAIT before the INPUT VOLUME UP...but I want a button next to the slider that the user pushes after he sets the time wait for the above task.
That sounds confusing but I don't know a better way to word it haha.
mc_becker56 said:
Oops, yeah my bad haha. Thanks! Alright...what I'm looking to implement now is...ok, you know how we have the slider now. I want to be able to set the slider to the TIME WAIT then..have a button next to the slider that executes everything all together. So..I'm trying to have an app open, the slider sets the TIME WAIT before the INPUT VOLUME UP...but I want a button next to the slider that the user pushes after he sets the time wait for the above task.
That sounds confusing but I don't know a better way to word it haha.
Click to expand...
Click to collapse
Check my first reply again for what to do to make it include everything, the only thing i didn't say was the button
1/ place the slider on the scene - set it to default value 5 - go to 'value selected' - add new task variabele set - set %WAIT_TIME_SLIDER to %new_val
2 / place a button on the screen, when you tap on the button, let it execute the task that opens up the app, wait for X seconds and change volume. See **
3/ now open the wait action you already made. tab on the two arrows that overlap, you now get the option to type a value instead of select it with a slider. type here: %WAIT_TIME_SLIDER - make sure you change the settings to "abort existing task"
** If you want the app to open immediatly while waiting for the volume to go up, your task should consist out of follow steps, in that practicullar order:
1. open app
2. Wait -> %WAIT_TIME_SLIDER seconds
3. Volume buttons (but I never used that in tasker, so it has to be an action that exists, not sure about it)
*** if you want the slider to remember the set interval it gets a bit more complicated.
If your familiar with programming here are some hints to set it the first time so it won't give an error on first run (this should be at the beginning of your task):
if %WAIT_TIME_SLIDER !isset
{%WAIT_TIME_SLIDER set to 5}
Now the first step on the progress changes:
1/ place the slider on the scene - set it to default value %WAIT_TIME_SLIDER
All the rest stays the same.
tiva said:
which version are you using? Jb/ics or the one for gingerbread or below?
For jb/ics:
1/ place the slider on the scene - set it to default value 5 - go to 'value selected' - add new task variabele set - set %wait_time_slider to %new_val
2/ no open the wait action you already made. Tab on the two arrows that overlap, you now get the option to type a value instead of select it with a slider. Type here: %wait_time_slider
i didn't check this out, but it should work normally... Good luck!
Click to expand...
Click to collapse
thank you! Thank you!