Affichage des articles dont le libellé est toggle. Afficher tous les articles
Affichage des articles dont le libellé est toggle. Afficher tous les articles

mardi 25 mars 2014

[Q] Need help. Wifi won't even toggle on. topic




Asking for help on the forums is usually my last result, I can assure you. I've been at it all day now and I keep coming across the same answers and the same n/a issues.

I'm going to make this as easy as possible with the hope that some one out there will be able to help me. Because I hit my data limit and I can't even download a simple app from the Google Play Store.

My Problem: Wifi will not toggle on

My Phone (The current state of the status bar makes me cringe as well. I literally JUST got done with a factory reset)


A quick run through
1. The phone was running 4.3 when I bought it. (wifi worked)
2. I decided to root using CF-Auto Root (wifi worked)
3. I updated to 4.4.2 using the Samsung Kies (breaking my root of course)
4. I re-rooted with CF-Auto Root and flashed the latest TWRP
5. A few days later, I turned on WiFi for the first time and it instantly switched itself back off.

I'm positive I flashed all the correct stuff. I do my research before voiding my warrenty.
(for 4.4.2, I flashed the latest CF-Auto-Root-jfltetmo-jfltetmo-sghm919.tar.md5 with Odin v3.09. Afterwards, openrecovery-twrp-2.7.0.1-jfltetmo.tar)



Solutions I've tried:
-Reboot
-Took out the battery
-a few other little modifications I did in root explorer
-Factory reset

If you've any questions about what I've done or any suggestions for things to try, please let me know. I would like to avoid flashing a custom ROM for the time being.

Thank you in advance for any help!





lundi 24 mars 2014

KitKat flashlight toggle topic




Credit goes to antiochasylm for this, original thread here: http://forum.xda-developers.com/show....php?t=2677373. So head there for detailed info and to give thanks.

I've confirmed it works on Sacs Rom V2 and on Fre3 2.0 beta 4. I'm 99% sure it would work on k3 as well. If you use a theme the toggle will not get themed.

It is a two part flash. Just download the files, flash part 1 then 2 and profit!

Download Part 1
http://d-h.st/b3n

Download Part 2
http://d-h.st/PKx





Sent from my SM-N900P using Tapatalk





mardi 18 mars 2014

[q] toggle expanded desktop via hardware keys topic




Is it possible to toggle the CM11 Expanded desktop by using the physical homebutton (i prefer using softkeys)?

Sent from my Galaxy S4 using xda app-developers app





lundi 17 mars 2014

[Q] TOGGLE IMMERSIVE MODE VIA HOME BUTTON (Hardware key) topic




Is there a possibility to hide the navigation bar or toggle immersive mode by pressing the hardware homebutton (i like softkeys more, and i think this would be quite useful since i still have my Hardware homebutton)?

Sent from my Galaxy S3 using xda app-developers app





dimanche 16 mars 2014

MOD ( 4.1.1 )Samsung Galaxy S5 Quick Toggle Icons topic




Oky here is the samsung galaxy s5 toggle icons.
They are not made by but by @adjumde and whole credit goes to him.
Tjread link:http://www.gametracker.com/search/cs...chpge=2#search

Quote:









BUGS:
S Beam, NFC, Notification icons do not chages






Screen shots:








samedi 8 mars 2014

[Q] How to Toggle Active Display with Tasker? topic




Is it possible to toggle Active Display on/off with Tasker?
If it is possible it is probably through an Intent call but I'm not sure how to find out if it exists or not.





vendredi 7 mars 2014

LTE toggle without reboot? topic




Since I upgraded to Kit Kat, the apps for LTE toggle do not work. I'd like to be able to toggle LTE back and forth without reboot. Help!

Sent from my SELF





samedi 25 janvier 2014

[Help] Toggle Marking Enemies/X-Ray Vision (CRASHING) topic




X-Ray Vision in Pirate Prefection Trainer V(any) and Toggle Marking Enemies by Yanrishatum, is crashing out PD2 version 1.4.2. Any help on repairing or a replacement of this script.lua, would be nice to have posted here.



Code:


-- Toggle marking enemies
function setEnemyColor(unit)
    local enemyType = unit:base()._tweak_table
    local color, target_color
   
    -- Civilians | Green
    if enemyType == "civilian" or enemyType == "civilian_female" then
        color = Vector3( 0.1687, 0.5529, 0 )
        target_color = Vector3( 0.1688, 0.5529, 0 )
    -- Taser | Blue
    elseif enemyType == "taser" then
        color = Vector3(0, 0.3804, 0.6235)
        target_color = Vector3(0.001, 0.3804, 0.6235)
    -- Shield | Orange
    elseif enemyType == "shield" then
        color = Vector3(1, 0.5, 0)
        target_color = Vector3(1.001, 0.5, 0)
    -- Tank | Yellow
    elseif enemyType == "tank" then
        color = Vector3(1, 1, 0)
        target_color = Vector3(1.001, 1, 0)
    -- Sniper | Pink
    elseif enemyType == "sniper" then
        color = Vector3(1, 0.35, 0.35)
        target_color = Vector3(1.001, 0.35, 0.35)
    -- Cop/unknown | Purple
    else
        color = Vector3(0.5216, 0, 0.5529)
        target_color = Vector3(0.5217, 0, 0.5529)
    end
   
    -- Set colors
    managers.game_play_central._enemy_contour_units[unit:key()].color = color
    managers.game_play_central._enemy_contour_units[unit:key()].target_color = target_color
end
function mark_enemies()
    local units = World:find_units_quick( "all", 3, 16, 21, managers.slot:get_mask( "enemies" ) )
    for i,unit in ipairs( units ) do
        if not unit:brain() or not unit:brain()._logic_data or
          not unit:brain()._logic_data.objective or
          (unit:brain()._logic_data.objective.type ~= "surrender" and
            unit:brain()._logic_data.objective.type ~= "follow") then
                  if tweak_data.character[ unit:base()._tweak_table ].silent_priority_shout then
                      managers.game_play_central:add_enemy_contour( unit, true )
                      managers.network:session():send_to_peers_synched( "mark_enemy", unit, true )
                setEnemyColor(unit)
                  elseif unit:character_damage().on_marked_state then
                      managers.game_play_central:add_enemy_contour( unit, false )
                      managers.network:session():send_to_peers_synched( "mark_enemy", unit, false )
                setEnemyColor(unit)
                  end
        end
    end

    for u_key, unit in pairs( managers.groupai:state()._security_cameras ) do
        managers.game_play_central:add_marked_contour_unit( unit )
        managers.network:session():send_to_peers_synched( "mark_contour_unit", unit )
    end
end
function UnitNetworkHandler:mark_enemy( unit, marking_strength, sender ) end

if not _markingToggle then _markingToggle = true
else _markingToggle = nil end
if not _gameUpdate then _gameUpdate = GameSetup.update end
do
    local _gameUpdateLastMark
    function GameSetup:update( t, dt )
        _gameUpdate(self, t, dt)
   
        if _markingToggle and (not _gameUpdateLastMark or t - _gameUpdateLastMark > 4) then
            _gameUpdateLastMark = t
            mark_enemies()
        end
    end
end







Get rid of Wireless Display Toggle topic




Is there a way to remove the Wireless Display toggle/tile in the notification tray? Maybe using sqlite editor? If so, where would I find it?





vendredi 24 janvier 2014

[Tool +THEMES] Toggle Buttons Themer[Notification panel toggle buttons themer] topic




Toggle Buttons Themer



Black themed Toggle Buttons


 









Download


Blue Themed Toggle Buttons


 









Download


Black with bluish shade themed Toggle Buttons



 








Download


Blue shade themed Toggle Buttons


 










Download