Hi guys...
i've made this skin for the SCLPC++ cube (you can find it here)
the zip file "Buttons" is ok for English and Italian Users.
the zip file "menus" is for Italian Users
the zip file " English Menu" is for English users
to install "my cube" simply extract the folders and copy in SCLPC++ data directory. e.g. \application data\sclpc++\data
finally edit like below "textlist.ini" in ini files directory to have icons without name:
MainText1 = ""
MainText2 = ""
MainText3 = ""
MainText4 = ""
MainText5 = ""
MainText6 = ""
hope you appreciate...
sorry for my English...
How to let works the Links for italian ROM (e.g. UDK6.1 or some ITA rom else)?
Please Help me I cannot let it works.
For Example hot to link to the SMS inbox or a specific E-Mail-inbox or BlueTooth settings, or Office Folder?
Thanks
gnomo03 said:
How to let works the Links for italian ROM (e.g. UDK6.1 or some ITA rom else)?
Please Help me I cannot let it works.
For Example hot to link to the SMS inbox or a specific E-Mail-inbox or BlueTooth settings, or Office Folder?
Thanks
Click to expand...
Click to collapse
Ciao scusa per il ritardo ma in questi giornisono presissimo...
Per far funzionare i link devi editare in windows i file .ini.
mandami un pm se hai problemi...
You must edit the .ini file to set and path to italian wm6 directories.
Hi,
First, I am new as a poster on this forum, but I read it often for info (specially on CM 6 & 7) !
(And second "first" thing, sorry for my bad English, French is not a good situation for that !)
As an engineer student, I am very interested by two things : Android and µC !
So why not combine them !
So I would like to communicate via the USB/Serial port of my N1 (CM7, Build 33) with µControler (in this case Cortex M3 on mbed plateform or arduino like).
So after some research, I found a few informations and condition for that :
- rooted (no problem for that)
- Serial enable Kernel (no info for the CM7 Kernel...if someone know !)
- Chmod the Serial port (possibly the ttyMSM0 ?)
- Something to control the port !
I decided to use this combo :
SL4A + Python (module for SL4A)
And wrote this piece of code to test :
Code:
import android
import os
import serial
import time
droid = android.Android()
try:
arduino = serial.Serial('/dev/ttyMSM0', 9600)
except:
print "Failed to connect on /dev/ttyttyMSM0"
a = 0
while (a < 10):
arduino.write('e')
os.system("echo 'a' > /dev/ttyMSM0")
a = a + 1
print "ok"
time.sleep(2)
But it doesn't work !
The "arduino" object did not exist, because he cant access the port (and I don't know why !)
The line
Code:
os.system("echo 'a' > /dev/ttyMSM0")
was just something like that, without real hope !
All ideas are welcome ! everything !
Thanks,
Pacemk
{
"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"
}
We intend to sell millions worldwide on PlayStore but, for a limited time offer, you can have it for FREE!
Developer Edition
How to Install:
Method 1 (High Complexity)
1) Copy the below code (CTRL+C)
2) Open Notepad++ [INSERT 007 Theme 'Nobody Does is Better' BEFORE POSTING]
3) Paste into a new document (CTRL+V)
4) Click Save button (CTRL+S)
5) Select whichever folder you want
6) Name it Whatever_you_want.VBS
7) Confirm save
Click to expand...
Click to collapse
Method 2 (Medium Complexity)
1) Download The.Dethumber.Pro.zip
2) Extract the content to whichever folder you want
Click to expand...
Click to collapse
OK! You've proceeded the installation process successfully.
Note: you may save the file with other extension different from .VBS but it won't work.
How to execute:
ATTENTION: this can be harmful. Be careful to provide the exact path of your theme.
1) Double click the file you've saved in the installation process
2) When asked, provide the path of your theme.
Click to expand...
Click to collapse
That's it. No more Thumbs.db into your theme files!!!
How to Uninstall:
1) Delete the file
Click to expand...
Click to collapse
Support is granted only when you are executing the EXACT code below,
Click to expand...
Click to collapse
Code:
' *****************************************************
' * By Kdio to you on 2014-01-31 18:30 UTC
' *
' * You may edit this as you wish. I don't care.
' *
' * Removes any trace of Thumbs.db like files (*.db)
' * from a specified path tree
' *
' * input none
' * output congratulations message
' *
' *****************************************************
On Error Resume Next
'**Global Objects
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set filesToDelete = CreateObject("Scripting.Dictionary")
'**Global Variables
Dim bytesSaved, totalFiles
bytesSaved = 0
totalFiles = 0
'**Request and Set Folder to process
strFolderPath = Browse4Folder()
Set objFolder = objFSO.GetFolder(strFolderPath)
'**Process Selected Folder
ShowSubFolders objFolder
'**If found something to delete
If totalFiles > 0 then
' ** Process deletion
For Each dbFile in filesToDelete
objFSO.DeleteFile filesToDelete(dbFile), 1
Next
Wscript.Echo totalFiles & " Thumbs.db file(s) deleted. You've saved " & CInt(bytesSaved/1024) & " KBytes"
Else
Wscript.Echo "Congratulations. Your work is clean already."
End If
'**Clean up
Set objFSO = Nothing
Set filesToDelete = Nothing
'**End
Wscript.Quit
' *****************************************************
' * Recursively Loop Subfolders Processing each one
' *****************************************************
Sub ShowSubFolders(Folder)
On Error Resume Next
ProcessFolder Folder
For Each Subfolder in Folder.SubFolders
ShowSubFolders Subfolder
Next
End Sub
' *****************************************************
' * Process Folder Files
' *****************************************************
Sub ProcessFolder(Folder)
On Error Resume Next
For Each objFile in Folder.files
'** If any "*.db" file is found
If UCase(objFSO.GetExtensionName(objFile.name)) = "DB" Then
'** Accumulate statistics
totalFiles = totalFiles + 1
bytesSaved = bytesSaved + objFile.Size
'** Add File to Delete Collection
filesToDelete.Add totalFiles, objFile.Path
End If
Next
End Sub
' *****************************************************
' * Browse4Folder Function
' *****************************************************
Function Browse4Folder()
'On Error Resume Next
'**Browse For Folder Constants Definitions
Const WINDOW_HANDLE = 0
Const BIF_EDITBOX = &H10
Const BIF_NONEWFOLDER = &H0200
Const BIF_RETURNONLYFSDIRS = &H1
Dim objShell, wshShell
Dim objFolder, objFolderItem
Dim CrLf, msgBoxButtons
CrLf = Chr(13) & Chr(10)
msgBoxButtons = 308 'Yes/No + Critical + Default No
'**Create Objects to run Shell Commands
Set objShell = CreateObject("Shell.Application")
Set wshShell = CreateObject("WScript.Shell")
'**BrowseForFolder Parameters
strPrompt = "Please select the folder to process."
intOptions = BIF_RETURNONLYFSDIRS + BIF_NONEWFOLDER + BIF_EDITBOX
strTargetPath = wshShell.SpecialFolders("C:\")
'** Prompt the user for Folder
Set objFolder = objShell.BrowseForFolder(0, strPrompt, intOptions, 17)
'** If nothing selected, get out
If (objFolder Is Nothing) Then
Wscript.Quit
End If
Set objFolderItem = objFolder.Self
'** Make sure the user agree! It's harmful anyway.
If Not (MsgBox("Are you sure you want to delete every *.db file from" & CrLf & objFolderItem.Path, msgBoxButtons, "ATTENTION! This can be Harmful!") = 6) Then
Wscript.Quit
End If
'** Set Function Return Value
Browse4Folder = objFolderItem.Path
'** Clean up
Set objFolderItem = Nothing
Set objFolder = Nothing
Set wshShell = Nothing
Set objShell = Nothing
End Function
Click to expand...
Click to collapse
End-User Edition (updated on 2014-02-05)
How to Install:
1) Download The.Dethumber.Pro.END-USER.zip
2) Extract the content to whichever folder you want
Click to expand...
Click to collapse
OK! You've proceeded the installation process successfully.
How to execute:
ATTENTION: this can be harmful. Be careful to provide the exact path of your theme.
1) Double click the VBS file
2) When asked, provide the zip archive file of your theme.
At the end of the cleaning process, the tool (7zip actually) will generate a report regarding that execution into its same directory. It is just a text file and contain all the statistics of the Thumbs.db detected and deleted.
Click to expand...
Click to collapse
That's it. No more Thumbs.db into your theme files!!!
How to Uninstall:
1) Delete the entire folder
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Tiny-little-tool-dev's Request:
.
Dear Customers
As we are trying to improve our sells and don't have anything more useful to do, we do request from you to share with us the logs you've obtained during the use of our product. This way, the data collected with your effort will bring us more and more money!!! Please, share for nothing!!!
SERIOUS CONDITIONAL: logs can only be accepted IF, before posting, you remove any trace of the source zip analysed. This information is useless.
An example of a correct post would be this as @aki-saar competently did or the below.
Code:
7-Zip (A) 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18
Listing archive: C:\Users\Kdio\Desktop\xxxxx.zip
--
Path = C:\Users\Kdio\Desktop\xxxxx.zip
Type = zip
Physical Size = 8319796
Date Time Attr Size Compressed Name
------------------- ----- ------------ ------------ ------------------------
------------------- ----- ------------ ------------ ------------------------
0 0 0 files, 0 folders
Click to expand...
Click to collapse
For a more detailed discussion on the matter, you may read the below thread:
[THEMERS][ATTENTION REQUIRED] Minimum Theme Quality Control
Looks great.. can't wait to try it out.
I will keep this too
delete
aki-saar said:
delete
Click to expand...
Click to collapse
HI aki-saar
Good to hear your success with this tool :good:
As those horrible files are automatically created by Windows when you browse your images, it's advisable to run this tool whenever you are getting to release the theme, just before zipping.
Nice regards.
.
thanks for that simple tool.
time ago i found a big theme with a lot thumbs.db... and i deleted one by one.
i ask for this, into respective thread...but no answer...no big deal.
speedyranger said:
thanks for that simple tool.
time ago i found a big theme with a lot thumbs.db... and i deleted one by one.
i ask for this, into respective thread...but no answer...no big deal.
Click to expand...
Click to collapse
Hi speedyranger
Thanks for you words.
I've been experiencing the same reception for the matter as you've did.
Unfortunately I've could determine that YES ... it's a big deal!
See what I've found out there:
ZIP size: 220 Mb
Extracted: 251 Mb
Thumbs.db: 165 files accounting for 168 Mb [ 67% ] !!!!!!
Click to expand...
Click to collapse
This is ridiculous. And the themer was unaware that they are there. Yes! they are still there because yours exact description of the authors behaviour is what almost all of them has.
EDIT: WROST! All these junk are being flashed into users devices that are too unaware of what is happening.
If you wish, more details about this issue can be found in the below thread:
[THEMERS][ATTENTION REQUIRED] Minimum Theme Quality Control
Thank you very much.
.
Kdio said:
Hi speedyranger
Thanks for you words.
I've been experiencing the same reception for the matter as you've did.
Unfortunately I've could determine that YES ... it's a big deal!
See what I've found out there:
This is ridiculous. And the themer was unaware that they are there. Yes! they are still there because yours exact description of the authors behaviour is what almost all of them has.
EDIT: WROST! All these junk are being flashed into users devices that are too unaware of what is happening.
If you wish, more details about this issue can be found in the below thread:
[THEMERS][ATTENTION REQUIRED] Minimum Theme Quality Control
Thank you very much.
.
Click to expand...
Click to collapse
i see and read that thread.
when i write "no big deal", I mean no big deal if i delete all files by my self...up to 100mb.
now i don't remember what's that theme, but when i see the final result i rest like this
speedyranger said:
I mean no big deal if i delete all files by my self.
Click to expand...
Click to collapse
Hi speedyranger
I've just released a END-USER version specially dedicated for you and all other users.
Thanks a lot.
.
Kdio said:
Hi speedyranger
I've just released a END-USER version specially dedicated for you and all other users.
Thanks a lot.
.
Click to expand...
Click to collapse
will be very useful for users . :good:
I think too, my theme zip lost a lot of bits after cleaning,
Thanks again
7-Zip (A) 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18
Error:
cannot find archive
If log file say like this what mean sir
Or it mean no .db
idiot me
pas2001 said:
7-Zip
Click to expand...
Click to collapse
If you don't mind. Will answer you in the toll tool thread ... ok ?
EDIT: You senile old idiot bastard (ME, MYSELF AND I). He is in the right thread dumb senior!
.
pas2001 said:
7-Zip (A) 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18
Error:
cannot find archive
If log file say like this what mean sir
Or it mean no .db
Click to expand...
Click to collapse
Pas
I could not replicate the same behaviour you are having.
When you do not select a ZIP file the following window will open:
If the ZIP is informed correctly and there is no evidence of junk inside, you will receive the following message:
And the correspondent log file will look like this:
Code:
7-Zip (A) 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18
Listing archive: C:\Users\Kdio\Desktop\xxxxx.zip
--
Path = C:\Users\Kdio\Desktop\xxxxx.zip
Type = zip
Physical Size = 8319796
Date Time Attr Size Compressed Name
------------------- ----- ------------ ------------ ------------------------
------------------- ----- ------------ ------------ ------------------------
0 0 0 files, 0 folders
Can you upload the ZIP you've select so I could try to replicate the error here.
Can't imagine what is causing your behaviour.
.
@pas2001
Just replicated !
Code:
7-Zip (A) 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18
Error:
cannot find archive
It's my mistake. It's having trouble with paths that contain spaces or special chars.
As you may know its 03:00AM here and WE are not so young.
Will be promptly correcting the tool as soon as I wake up.
Thank you for your support and testing my flaws.
Nice regards.
.
Idiot's Sticky for tomorrow
Long filepath names needs double quotes to be passed to the OS.
.
Kdio said:
Idiot's Sticky for tomorrow
Long filepath names needs double quotes to be passed to the OS.
.
Click to expand...
Click to collapse
HA HA...Dont be worry friend... I just want to see how the smart tool work.
In this case I use the theme of my friend @aki-saar which I almost sure he use your tool to kill the junks already ( from his post on top of this page)
Your tool work correctly and say congratulation to me (sure it should be clean lol) . Only the log have error as you found .
I concern about you more than these junk files...If you sleep on 3 am every night please beware... your body growth will be disturbed and your height will be stop...Warning from DOC.:silly:
pas2001 said:
Dont be worry friend...
Click to expand...
Click to collapse
Hi pas2001 and ALL
Sorry for the delay.
Updated END-USER package is available at OP.
The problem (I've left inside) was that the script could not deal with Long Path Names.
Should work as expected now. Please report any problem.
Nice regards.
.
pas2001 said:
I use the theme of my friend @aki-saar
Click to expand...
Click to collapse
Hi Pas
Sure @aki-saar's theme is DETHUMBED ... He is one of the few aware of the matter AND have 'balls' to look after his own work with the necessary competence.
But I could not find his theme releasing post ... Where do we can delight our eyes with ?
@aki-saar ... don't be shy dude ... Your theme compared to what we had already seen from 'Recognizeds' sure will be light years ahead!
PUBLISH IT !!!
Nice regards.
.
I'll release the new "clean" version in a few days in a German speak forum. Will send u the link
Edit...
Is every *. dB file junk? I found a lot of in a Rom zip.
Edit :
Props to @Jackos, here's the flashable patched SemcClock.apk with max of 96 clock alarm.
Cheers
==========================================
Hi guys,
Need a little help here.
I'm trying to remove the 20 Max limit of adding clock alarm in SemcClock.apk.
I thought i found the limit here MAX_ALARM_COUNT:I = 0x14
in this file SemcClock\smali\com\sonyericsson\alarm\AlarmListFragment.smali
But changing it doesn't seem to work.
Any ideas ?
takagen said:
Hi guys,
Need a little help here.
I'm trying to remove the 20 Max limit of adding clock alarm in SemcClock.apk.
I thought i found the limit here MAX_ALARM_COUNT:I = 0x14
in this file SemcClock\smali\com\sonyericsson\alarm\AlarmListFragment.smali
But changing it doesn't seem to work.
Any ideas ?
Click to expand...
Click to collapse
Never had a need for something like that.
Why don't you just use calendar or scheduler for something like that?
BTW - this section is for apps and themes, not help thread.
Naming of thread is also wrong - it's not MOD, it's REQ or HELP thread.
Try to rename it and tag @Serarj and @niaboc79 - if anyone knows, they know...
Sent from my D6503 using Tapatalk
Thanks for the advise.
If @niaboc79 or @serajr can helped, that would be awesome
Please find attached the patched SemcClock .402. It allows to create up to 50 alarm clocks.
I also included two images of my Virtuous Ten Studio, showing what values need to be patched for the fix to work if you want to do it yourself.
Keep pwning!
BTW I usually recompile the smali code to java, so I get a better view what's going on. As you may see the toast alarm limit is hardcoded.
Thanks alot.
It works, to sum up it's basically editing 2 places in file
SemcClock\smali\com\sonyericsson\alarm\AlarmListFragment.smali
Code:
.field static final MAX_ALARM_COUNT:I = 0x14
Code:
.method public onOptionsItemSelected(Landroid/view/MenuItem;)Z
.locals 10
.param p1, "item" # Landroid/view/MenuItem;
.prologue
const/16 v9, 0x14
Update "x14" to the number of clock you need.
Cheers :good:
Hey friends, can you help me to create a Magisk module that works to edit scripts named "GameUserSettings.ini" on Fortnite Mobile?
This script is located in this folder:
data / data / com.epicgames.fortnite / files / UE4Game / FortniteGame / FortniteGame / Saved / Config / Android
in the folder there are words that must be changed from : UnlockConsoleFPS = False
bShowGrass = True
MobileFPSMode = Mode_30Fps
bUseVSync = True
To :
UnlockConsoleFPS = True
bShowGrass = False
MobileFPSMode = Mode_60Fps
bUseVSync = False
Please help me
maybe you can edit it with editors such as RootExplorer?
tiinktoonk said:
Hey friends, can you help me to create a Magisk module that works to edit scripts named "GameUserSettings.ini" on Fortnite Mobile?
This script is located in this folder:
data / data / com.epicgames.fortnite / files / UE4Game / FortniteGame / FortniteGame / Saved / Config / Android
in the folder there are words that must be changed from : UnlockConsoleFPS = False
bShowGrass = True
MobileFPSMode = Mode_30Fps
bUseVSync = True
To :
UnlockConsoleFPS = True
bShowGrass = False
MobileFPSMode = Mode_60Fps
bUseVSync = False
Please help me
Click to expand...
Click to collapse
hey i actually did this and saw this thread later but here it is https://forum.xda-developers.com/apps/magisk/module-fortnitetweaks-t4096881