[App] DHT Accent Generator - Generate Own Tile Color - Windows 10 Mobile Apps. and Games

Here you can find new version of this app :
https://forum.xda-developers.com/wi...tion-dynamically-manage-t3563949/post71203232
Hi there everyone .
Here is a new app from DHT that makes you able to generate your own tile color .
This app help you in creating your own Tile Color and it's easy to use .
first of all thanks goes to @Ferrybigger Author of thread below :
https://forum.xda-developers.com/windows-10-mobile/how-add-black-accent-color-t3543692
How to use :
-MainPage :
In MainPage you have to first select the color you want for your Tile . (An integer value always generate by the color you select)
After finding a good Color in the Color Preview at the top of application Tap on Copy and go to step *.
-Advanced Page :
type R , G and B values from the color you want . an Integer value will be generated and automatically will be copied to your clipboard ! go to step *:
* : Now use of Registry editors to paste the generated value in to the registry path below :
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Control Panel\Theme\Themes
SpecialColor
if you don't have the specialcolor value add a new DWord registry type and name it SpecialColor and paste value in it .
After setting value go to settings -> Personalization -> Colors and choose the latest accent color .
Note : Before changing SpecialColor value you have to choose a different Accent Color . if you have the SpecialColor selected you can't change the color .
Algorithm : (How to generate Color Codes)
-The Algorithm is very simple .
Step 1 : Change R value with B . (Input Color (1,2,3) -> (3,2,1))
So now you have color in BGR format .
Step 2 : Convert Hex code of color to integer using Int64.Parse
Source Code in C# :
Code:
var Col = ColorPicker.Color;
var tempcol = Col;
Col.R = tempcol.B;
Col.B = tempcol.R;
var Output = Int64.Parse(Col.ToString().Replace("#", string.Empty), System.Globalization.NumberStyles.HexNumber).ToString();
Suggested Color Codes :
MahGraphic Ghost : 4290289538
Feel free to share beautiful colors here with us .
We will add your colors here .
Have Fun .

ngame said:
Hi there everyone .
Here is a new app from DHT that makes you able to generate your own tile color .
This app help you in creating your own Tile Color and it's easy to use .
first of all thanks goes to @Ferrybigger Author of thread below :
https://forum.xda-developers.com/windows-10-mobile/how-add-black-accent-color-t3543692
How to use :
-MainPage :
In MainPage you have to first select the color you want for your Tile . (An integer value always generate by the color you select)
After finding a good Color in the Color Preview at the top of application Tap on Copy and go to step *.
-Advanced Page :
type R , G and B values from the color you want . an Integer value will be generated and automatically will be copied to your clipboard ! go to step *:
* : Now use of Registry editors to paste the generated value in to the registry path below :
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Control Panel\Theme\Themes
SpecialColor
if you don't have the specialcolor value add a new DWord registry type and name it SpecialColor and paste value in it .
After setting value go to settings -> Personalization -> Colors and choose the latest accent color .
Note : Before changing SpecialColor value you have to choose a different Accent Color . if you have the SpecialColor selected you can't change the color .
Algorithm : (How to generate Color Codes)
-The Algorithm is very simple .
Step 1 : Change R value with B . (Input Color (1,2,3) -> (3,2,1))
So now you have color in BGR format .
Step 2 : Convert Hex code of color to integer using Int64.Parse
Source Code in C# :
Code:
var Col = ColorPicker.Color;
var tempcol = Col;
Col.R = tempcol.B;
Col.B = tempcol.R;
var Output = Int64.Parse(Col.ToString().Replace("#", string.Empty), System.Globalization.NumberStyles.HexNumber).ToString();
Suggested Color Codes :
MahGraphic Ghost : 4290289538
Feel free to share beautiful colors here with us .
We will add your colors here .
Have Fun .
Click to expand...
Click to collapse
is it possible to make a "transparent" color so i can make my navigation bar transparent ???
thanks
Micheal

megasounds said:
is it possible to make a "transparent" color so i can make my navigation bar transparent ???
thanks
Micheal
Click to expand...
Click to collapse
Unfortunately no .
Colors format are in RGB , for a transparent color you need A property in color (Opacity) .
So in lack of A you can't make a transparent color .

Its for windows 10?

Saeem said:
Its for windows 10?
Click to expand...
Click to collapse
Windows 10 Mobile . I didn't test it yet on W10 PC . I see MS add custom Tile color to W10 pc on redstone 2 but not on mobile yet

Can you please upload some screenshots?

Saeem said:
Can you please upload some screenshots?
Click to expand...
Click to collapse
Here you are

ngame said:
Here you are
Click to expand...
Click to collapse
@ngame cani I add only one accent colour at a time or can I add special colour data as much I want??

SBL. said:
@ngame cani I add only one accent colour at a time or can I add special colour data as much I want??
Click to expand...
Click to collapse
Seems only one is possible . if we can add more colors I don't know .

Whoa,Nice ! Thanks DHT Dev.

Help me
http://www.upsieutoc.com/image/YR01sp

Aries Prine said:
Help me
http://www.upsieutoc.com/image/YR01sp
Click to expand...
Click to collapse
Sorry for late !
a new app is coming in next days that completely do the procedure automatically and It's a real replacement for Settings -> Personalization .

ngame said:
Sorry for late !
a new app is coming in next days that completely do the procedure automatically and It's a real replacement for Settings -> Personalization .
Click to expand...
Click to collapse
Our new brand application , you can find it here :
https://forum.xda-developers.com/wi...tion-dynamically-manage-t3563949/post71203232
DHTPersonalization is the replacement for the current app you see here . So better to upgrade your experience with using our new app .
Thank you

Related

Change the display of the clock in the taskbar

i have tried this hack and it does not work for me. i have the htc x7500
does it work for you
thanks
Change the display of the clock in the taskbar
The clock in the taskbar can be changed to show not only the time, but also the date, or just the date, or nothing at all.
To show nothing:
HKLM\Software\Microsoft\Shell\TBOpt = 0 (DWORD decimal)
To show just the clock:
HKLM\Software\Microsoft\Shell\TBOpt = 1 (DWORD decimal)
To show just the date:
HKLM\Software\Microsoft\Shell\TBOpt = 2 (DWORD decimal)
To show both the date and the clock:
HKLM\Software\Microsoft\Shell\TBOpt = 3 (DWORD decimal)
date and time on the tb
for me following cab works ok, but I have other problem - when keyboard is closed on the visible bar I see only full hours - instead of 22:36 I see only 22:00 till 23. Anyone has a clue how to change it?
try moving the volume button up when the mini display is on
irus said:
try moving the volume button up when the mini display is on
Click to expand...
Click to collapse
Wow, I didn't even know that the mini display changed! I didn't have any problems showing the minutes, but I did not know about the volume button changing the display
thanks for the suggestion.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shell\
Create a binary value named "TBOpt" and set its value to "13 00 00 00
then
1) Open ur registry editor (either PHM Registry Editor or Resco Explorer 2003).
2) Go to HKEY_LOCAL_MACHINE\nls\overrides
3) Create 1st String Value: Name = S1159 & String = Am
4) Create 2nd String Value: Name = S2359 & String = Pm
5) Create 3rd String Value: Name = STFmt & String = hh:mm t'M '
6) Soft-reset.

[Q] Can someone make an app for me?

Hello,
I need an app and wanted to know if there is someone who has the "know how", the time and the willingness to make it for me.
The app shall ask me where 'the' folder of pictures is,
where I want to save the new pictures,
what the name the folder new folder is,
then for each picture in that folder it shall make 3 versions (jpg compression and picture size would be different),
save them "optimized for the web" and
write a a two dimensional Java-array with informations which are based on the height and width of each version and the filename (it would be awesome if I could configure that output via settings).
Code:
var bilder = new Array();
bilder[0] = new Array();
bilder[0][0] ="Bild-1"; //filename
bilder[0][1] =64; //hight of small version
bilder[0][2] =45; //width of small version
bilder[0][3] =512; //height of medium version
bilder[0][4] =362; //width of medium version
bilder[0][5] =864; //height of big version
bilder[0][6] =611; //width of big version
bilder[0][7] =35; //position in the gallery (to configure this would be awesome)
bilder[0][8] =7; //position in the mini-gallery (to configure this would be awesome)
bilder[0][9] =false; //loading state
bilder[1] = new Array();
bilder[1][0] ="Bild-2";
bilder[1][1] =45;
bilder[1][2] =64;
bilder[1][3] =356;
bilder[1][4] =512;
bilder[1][5] =802;
bilder[1][6] =1152;
bilder[1][7] =432;
bilder[1][8] =59;
bilder[1][9] =false;
...
Thanks for reading and helping me!?
Snorfes

[Q] ADWLauncher Power widget /drawer

Hi everyone,
Using apk changer, I want to add Power Widget in default_workspace.xml within ADWLauncher.apk
Edit : I've tried the following
Code:
<appwidget launcher:className="com.android.settings.widget.SettingsAppWidgetProvider" launcher:packageName="com.android.settings" launcher:screen="1" launcher:x="0" launcher:y="0" launcher:spanX="4" launcher:spanY="1" />
it works (after adb push via recovery) and after doing clear data of ADW Launcher, the power widget shows "Not configured Please add again" instead of usual buttons : wifi, bt, brightness ...
Is that Normal?
In addition to that, I'm trying to change drawer bgr color, I found it in integers.xml
The color's value is in integer, not in hex like #FFFFFF, and has default value : -2147483648 . I haven't understood how does it work
I want a black bgr with no tranparency . what value should I put ? I've tried 0 : wasn't the right value.
+ Any Idea about disabling default LiveWallpaper & put static wallpaper instead ?
The Rom is based on CM7 for HTC Desire.
Thanks.

Registry Tweaks for Lumia 710&800

Your phone must be Full Unlocked!
Then you should install WP7 Root Tools.
Unlock the hidden options in the settings:
LOCAL MACHINE/System/Accessibility/
Code:
"CompactMode"=dword: 0
"TTY"=dword: 1
"telecoil UI"=dword: 1
"telecoil"=dword: 1
Change Search Engine in Internet Explorer by vova1609
CURRENT USER/Software/Microsoft/Internet Explorer/SearchProviders
Google:
1. Create key "Google"
2. Create value:
value name: URL
value type: string
value data: http://www.google.com/m?hl=en&gl=us&client=ms-hms-tmobile-us&q={searchTerms}
3. Done!
Yahoo!
1. Create key "Yahoo!"
2. Create value:
value name: URL
value type: string
value data: http://search.yahoo.com/search?p={searchTerms}
Yandex
1. Create key "Yandex"
2. Create value:
value name: URL
value type: string
value data: http://yandex.ru/msearch?text={searchTerms}
Remove built-in applications from saintonotole's firmware by vova1609
As you know, if you delete application, like Bazaar, this application will be installed again after reboot. I have found solution:
Local Machine/Software/OEM/FirstBoot/InstallApps
Delete folder InstallApps
Nice. What about local nachine/software/oem/cloaking/appreinstaller
Maybe this reinstalls deleted apps?
Sent from my Lumia 710 using XDA Windows Phone 7 App
Also can we find any battery tweaks, cause battery really sucks.
Sent from my Lumia 710 using XDA Windows Phone 7 App
mariosraptor said:
Nice. What about local nachine/software/oem/cloaking/appreinstaller
Maybe this reinstalls deleted apps?
Sent from my Lumia 710 using XDA Windows Phone 7 App
Click to expand...
Click to collapse
no
For very low brightness(tested on lumia 710)
Current User/Control Panel/Brightness
"LowBrightness"
Value= 1
1 is the lowest I have tried, I don't want to try 0 lol. Value is probably 1-100.
Battery performance FTW now.
Sb know how to change the vibration pattern? I always miss the incoming calls due to poor vibration level!
There's any way to change the boot splash screen? (Not the nokia logo)
I really searched for anything on registry or file system... but can't find anything
My phone is the Lumia 710
vova1609 said:
Your phone must be Full Unlocked!
Then you should install WP7 Root Tools.
Unlock the hidden options in the settings:
LOCAL MACHINE/System/Accessibility/
Code:
"CompactMode"=dword: 0
"TTY"=dword: 1
"telecoil UI"=dword: 1
"telecoil"=dword: 1
Change Search Engine in Internet Explorer by vova1609
CURRENT USER/Software/Microsoft/Internet Explorer/SearchProviders
Google:
1. Create key "Google"
2. Create value:
value name: URL
value type: string
value data: http://www.google.com/m?hl=en&gl=us&client=ms-hms-tmobile-us&q={searchTerms}
3. Done!
Yahoo!
1. Create key "Yahoo!"
2. Create value:
value name: URL
value type: string
value data: http://search.yahoo.com/search?p={searchTerms}
Yandex
1. Create key "Yandex"
2. Create value:
value name: URL
value type: string
value data: http://yandex.ru/msearch?text={searchTerms}
Remove built-in applications from saintonotole's firmware by vova1609
As you know, if you delete application, like Bazaar, this application will be installed again after reboot. I have found solution:
Local Machine/Software/OEM/FirstBoot/InstallApps
Delete folder InstallApps
Click to expand...
Click to collapse
I only try to do the first tweak but i don't see any change... I'm using a custom rom (Rataplan v3)
what about lumia 800 Music enhacement (vol boost or sth like that) has anyone tried to find something?
I'm preparing my phone for testpoint bootloader swap with ATF so I'll help u out soon ,try
to work on that cuz Original setup sucks 4 real
cdbase said:
what about lumia 800 Music enhacement (vol boost or sth like that) has anyone tried to find something?
I'm preparing my phone for testpoint bootloader swap with ATF so I'll help u out soon ,try
to work on that cuz Original setup sucks 4 real
Click to expand...
Click to collapse
yes, i also want to change the standard volume!
In my case, for this huge range of 30, its way too loud on 1, and way to quiet on 30. In between, you can't really hear a difference for example 23 and 24.
It would be awesome to change this.
Have anyone interested in disabling prediction and auto correct?
I just found that tweak today! (Changing some registy values myself)
Go to: Local Machine\System\Input
enter in the folder that corresponds your alnguage id (in my case is lang_0416 for Portuguese Brazilian)
add the string ".disable" in the end of the values of "Dictionary File" and "HTR Dictionary File" and restart your phone.
Next time you type something, you should not be bothered again with the prediction and auto correct.
Hi guys! You problems with the phone vibration ends here!
Access the phone registry and go to "Current User\Control Panel\SoundCategories\Ring"
First go to: RingerOffVibrateOn
and change script value to: av0.1v2.2w2r
Now go to: RingerOnVibrateOn
and change script value to: av0.1v2.1w0.1v1.pr
DONE!
Reboot isn't required. Call your phone and you will see the classic vibration while on silent.
Unfortunately the phone cannot vibrate and ring... Only vibrate, then ring.
---------- Post added at 09:55 AM ---------- Previous post was at 09:07 AM ----------
I don't know if i'm really helping here...
If you found out that your alarm volume is too low... You can go to in registry: "Current User\Control Panel\SoundCategories\Alarm\RingOnVibrateOn"
Change script to: p
yes... just "p" (that means PLAY)
it will not change the volume at all... it will just play in the same volume as your ringtone ^^

[Q] Missing dot in date on lockscreen and sms

Hello,
i try this ROM = [ROM][ICS 4.0.3][15/04][XXLP7] SensatioN ROM 3.4 ICS by Crysis21 = http://forum.xda-developers.com/showthread.php?p=25774470#post25774470
Its great but in my language settings (Čeština = Czech) missing dot in date on lockscren and in sms.
For example:
I see format: 7 5.,"day" = ( missing dot )
It shout be: 7.5.,"day"
When i change language to UK setiings, format is Ok = 7.5.,"day"
Is for this universal solution or must this change creator of ROM?
Any idea?

Categories

Resources