[APP][3rd Aug] Convert your CPR Titanium or PLG file to different (all) resolutions! - Windows Mobile Development and Hacking General

Convert your CPR file to different resolution by one click
Hello guys,
TPC asked me for one tool - he has made his own Titanium plugin and wanted to convert it to Fuze, that has got different resolution than Kaiser that he built it on.
I've written that app and here ya go:
{
"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"
}
It converts all Height, Width, Left, Top, ItemHeight and ItemWidth attribs in .cpr file. It isn't perfect because some values you'll have to adjust manually, but rewriting all thousands lines of code takes much longer.
It was built for Titanium CPR file, but it will probably work on any different CPR file (since it is all the same XML).
You need only .NET Framework!
If you like my work and want me to continue developing tools, Buy me a beer!
Bugfixed:
v1.1: Now it can handle . numbers

PLG Resizer - convert your .plg to all resolutions
If you like my work and want me to continue developing tools, Buy me a beer!
V1: without generate landscape function
V2: added generate landscape function + some anti-crash fixes
V2.1: fixed bug that when in file were both landscape + portrait modes tool crashed (occured only in v2, v1 was working fine)

WOW! This is ground breaking, I will let you know what I find! Thank you!

really good man . i'll give it a try
thanx

What a great idea! And I'm not thinking about CPR alone...
What do you think: Would it be possible to take a .plg-File in any resolution (and perhaps landsape and portrait) - and the converter would make the output-plg-File for all resolutions in one file?
A .plg is a part of the .cpr - so it could be possible - your parser should only recogonize then <layer>...</layers>-Tags to know where the Resolution-Parts are to find and where the new resolutions should be inserted (Multi-Select instead of Single-Select)
For fine adjustings - perhaps there are some further algorithm to find - I think, it would work without very good.
That would be totally great!
And thanx for sharing your cpr-converter
Micha

since the cpr are realy xml could be good also if prssible to resize aplication skins (full screen player, audio manager) anyway I'll try it

congrats on the new tool, it works great
ps...i want everybody to know that i came up with this idea because im LAZY lol. great work by ondraster for making this happen

Great work man, works awesome. I just used it to port my NeoTitanium skin to all resolutions & so far so good.
EDIT: Make sure the paths don't have spaces. This will cause an error.

MichelDiamond said:
What do you think: Would it be possible to take a .plg-File in any resolution (and perhaps landsape and portrait) - and the converter would make the output-plg-File for all resolutions in one file?
Click to expand...
Click to collapse
It shouldn't be problem, but I couldn't find any .plg in SYS, so I haven't got it test on. Send me one/link me to one and I'll try it.
gullum said:
since the cpr are realy xml could be good also if prssible to resize aplication skins (full screen player, audio manager) anyway I'll try it
Click to expand...
Click to collapse
I took a look at FullScreenPlayer's XML file and I think it won't be hard.
drkfngthdragnlrd said:
Great work man, works awesome. I just used it to port my NeoTitanium skin to all resolutions & so far so good.
EDIT: Make sure the paths don't have spaces. This will cause an error.
Click to expand...
Click to collapse
It works with spaces in path OK for me.
Thanks from everyone.

OndraSter said:
It shouldn't be problem, but I couldn't find any .plg in SYS, so I haven't got it test on. Send me one/link me to one and I'll try it.
Click to expand...
Click to collapse
Thank you - I'll send you one with VGA portrait and landscape - if the Converter could make a difference betweend portrait resizing and landscape resizing - that would be real cool.
after <layers> the marks of the resolutions are to find
after </layers> the new resolutions should be inserted, that it works in each .plg of each Plugin
Thanx in advance for trying
Micha

MichelDiamond said:
Thank you - I'll send you one with VGA portrait and landscape - if the Converter could make a difference betweend portrait resizing and landscape resizing - that would be real cool.
after <layers> the marks of the resolutions are to find
after </layers> the new resolutions should be inserted, that it works in each .plg of each Plugin
Thanx in advance for trying
Micha
Click to expand...
Click to collapse
So When I got the beginning
Code:
<?xml version="1.0" encoding="utf-8"?>
<plugin>
<name>JMLToday</name>
<position>0</position>
<layouts>
Then becomes <layout screenWidth="480" screenHeight="640"> where are screen width and height and then starts the layout for this resolution right? Eg if I'd want to have this file from 480x640 to 240x320, all numbers since <layout ..> would change to half in all Left, Top, Height and Width + screenWidth and screenHeight would change and this all will be added as new <layout ..>?

OndraSter said:
So When I got the beginning
Code:
<?xml version="1.0" encoding="utf-8"?>
<plugin>
<name>JMLToday</name>
<position>0</position>
<layouts>
Then becomes <layout screenWidth="480" screenHeight="640"> where are screen width and height and then starts the layout for this resolution right? Eg if I'd want to have this file from 480x640 to 240x320, all numbers since <layout ..> would change to half in all Left, Top, Height and Width + screenWidth and screenHeight would change and this all will be added as new <layout ..>?
Click to expand...
Click to collapse
Yes - exactly
The .plg's - each "Layouts"-Section will added by installation from AT Plugin Installer in the different CPR's with the resolutions - so every .CPR is defined by the .plg's

OK, I'll look at it, but it will take some time, I'm pushed at work and also I'm pushed in Team Fortress 2 lol.

I understand - but would be real cool - whenever ( I think very much Plugins would use itfor their .plg's - no developer has all devices with all resolutions.. and Simulators... )
Meanwhile we can use the original CPR-Converter for the .plg's
Thank you
Micha

@MichelDiamond
I found out that there is in .plg both portrait and lanscape - are there always or aren't? Can I depend on it?

No - you cannot depend on it - if always x < y there's only portrait - and so the option to convert it to landscape - should be disabled then. Then the .plg-File has only all portrait-Skins in all resolutions.
Perhaps an extra option to turn the .plg in90 degrees then (it would be countable without changing the algorithm), when you don't discover any landscape in the .plg - but with the wisdom, that it works, but doesn't look so fine.
More important is to make a difference between portrait and landscape in one file.
What's also common:That 2 resolutions are already in the file (e.g. VGA and WVGA) - and the User could choose, which of the both Resolutions he want to have converted (That's easy for the algorithm).
The user should have the intelligance, that it's better, to convert the WVGA to WQVGA
And if your program always inserts the new Layout at the bottom of the .plg - after the last layout - you mustn't care by program for it.

OK, since I didn't get your response in few minutes, I started working on it, grabbed my "multiplying" core from CPR resolution changer and here is screenshot:
It works!, but till I release it I'll do the "if missing landscape, do only portrait" failsafe.
I've spend on it few hours (no kidding!) and many pops to the desk.
PS: It works a bit different - I have specified resolutions it will generate, then it detects where start of port + landscape start and end, takes this part, runs it via multiplying core, adds <layout screenWidth...> and adds to file for each resolution both port + land.

OK, when is landscape part missing, it skips it.
Download: My Server [CZE] (17KB)

*umph* You know what you have done?
This program means now.. that each Titanium Plugin mustn't be anymore released only in one Resolution - it can be released in each resolution...
because the skins in the cprs can also be converted.
Everybody can make a Skin - and with your converter - he can provide it for each device
And for JMLToday it means the same... the first trials were successful - but in JMLToday all the skins have my resolution of course... so I will have a look for feedback from the Users with other resolutions.
You know that's a KillerApp for Titanium now... You're great (and also a typical Programmer like I know it from me Problems have to be solved - insomnia )
Thanx man! Will give Feedback
Micha

OK.
When I was reading "*umph* You know what you have done?" my stomach went really high because I was scared what have I done lol.
OK, I'll tomorrow add the "convert from portrait to landscape" function.
But since it is half past one after midnight (AM) I'm not sure how it is counted - Left is swapped with Top and Height is swapped with Width or should I recount it? If I'm thinking right this should be more accurate because of odd numbers.
Or not?
I've never been good to painting and virtually imagining 2D (or 3D).
// OK, not, it would have to be pointed right into middle.

Related

[UPDATE][10/10/2008] TouchLaunch 0.0.3! so beautiful ( NET2&NET3.5 ) with some skins

[UPDATE][10/10/2008] TouchLaunch 0.0.3! so beautiful ( NET2&NET3.5 ) with some skins
0.0.4 version: http://forum.xda-developers.com/showthread.php?t=437773
TouchLaunch is simple application launcher, which scans start menu shortcuts, and list them alphabetically. Kind of similar to scoll launcher
but this has new quick alphabetic scroll function. This is very early alpha and my first program release.
Features:
-finger scrolling
-quick alphabet shortcuts
-skinnable
-you can choose whether it closes after program launch or not
{
"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"
}
[0.0.1][10/06/2008]
[0.0.2][10/07/2008]
+Skin changer
+Better skinning support
+You can use bitmaps as list item highlight
+6 premade skins
+closeAfterLaunch feature
[0.0.3][10/10/2008]
+backgroundbitmaps
+you can use your today's screen background as this program's background
+ability to choose whether minimize or terminate on exit
+automatic closing ( either minimize or exit on closing )
+it's minimizes correctly, so you can leave it on running background
+should work on all different language roms!
Known "bugs":
-skin change takes about 5 sec... so don't panic
-if closeAfterLaunch feature is on and you switch to other application,
TouchLaunch will close in 2 seconds.
-if you try to launch phone ( or calendar ), it will launch softaware and after that it will crash...
-using bitmaps multiples memory usage, but you can avoid that using simpler skins
-menu is ugly
Requirements:
.NET CF 2.0
wm6 ( might work with wm5 ), i have only tested on emulator and on my elf
qvga or vga
Instructions:
Download and install the cab file
or download the zip file, extract it to any folder on your ppc and run the exe file.
Making new skins you can look example from premade skins in the skin folder at installation folder, two of them ( white.xml and original.xml ) are commented. Adding new just copy your skin xml file in the skins folder.
ToDo:
-better skin support
-adding some animations
-icons ( maybe someone could give me a hint )
-bug fixes
-landscape support
-performance tweaking
-optimizing memory usage
Feel free comment, and give me more ideas!
If like it, you can always donate to keep me motivated
Thanks to gingercat and dosfan for exellent work on KListControl!
Thanks to skinmakers!
Other's skins included in package:
Manila 2D Blue ( by shadowmike )
Diamond ( by Azimuth21 )
DiamondVGA ( by Mr Gee )
nice work can we change background skin
awh damn. just when i had made my mortbuttons program launcher skin.
thanks buddy.
i bet its MUCH easier than my way...
munnna73 said:
nice work can we change background skin
Click to expand...
Click to collapse
Yes, you can change all the colors and also change placements of different elements by modifying skin.xml file. It doesn't support using background bitmaps, but i'm planning to make that for nex release.
Every object has these attributes, which you can modify:
Code:
<ELEMENT>
<NAME>mainList</NAME>
<BGCOLOR>105105105</BGCOLOR>
<FORECOLOR>245245245</FORECOLOR>
<X>12</X>
<Y>0</Y>
<WIDTH>228</WIDTH>
<HEIGHT>268</HEIGHT>
</ELEMENT>
the colors are 9 digit RGB values ( example. BGCOLOR is 105105105, so it has 105 red, 105 green, 105 blue ). Make sure you always use three numbers, even if value is under 100, for example 5 -> 005.
i cant wait till we can have background images. and select images like scroll launcher(by l5v3y)
kidnamedAlbert said:
i cant wait till we can have background images. and select images like scroll launcher(by l5v3y)
Click to expand...
Click to collapse
Actually you can use select image, because it use the same KlistControl code base. Just copy png bitmap to execution folder and name it as select.png. The dimensions must match the dimensions configured in the skin.xml. So, by default it's 228x40.
Looks nice
Few pointers if I may it starts kind of slow it takes about 4 seconds to open it on my kaiser. And the search engine is kind of not finger friendly it,s hard to select a letter with your thumb. I think that bigger letters would do the trick for example you could place half of the alphabet on the left side of the screen and the rest on the right side or introduce the search engine similar to the one present in IContacts.
Great job
-Arturo- said:
Looks nice
Few pointers...
Click to expand...
Click to collapse
Thanks for responses and ideas!
The slow start time is mostly compact framework's fault, one idea is to let it run on background or switch to WIN32 api... but i did look up Icontact's source and felt it was not my kind of cookie But there's some tweaking that could be done. About the scroll touch, i find it quite good on my touch.
It helps to not really trying to hit right alphabet but instead follow what the on screen indexshower shows, and if it's wrong letter just slide your finger up or down. have to say that i'm not big fan of the idea dividing the alphabets but the Icontact alphabet's style could be an idea...
Btw. out of concept, but does anyone know any free coctail databases? Because i have done earlier a program that displays coctail recipes, but the database i use is something that i can't publish. firstly because i don't have authors permission and secondly because it's in Finnish It would perfect if database would be in XML format.
Just added a cab installer.
If the memory footprint is low and by saying low I mean less than 500kb then it's a good idea. WIN32 api??? Well that's double dutch to me
Well I think I've got too big thumbs While holding the phone in one hand I'm not able to access the alphabet with my thumb. I've tried pressing the alphabet area and then slide it up or down to choose a letter but I end up scrolling the list with applications up or down. So maybe widening the alphabet touch area would do the trick. Also I think that moving the indexshower to the upper or even upper right part of the screen would prevent it from being covered by a thumb while picking a letter.
I don't know any cocktail databases at least not free ones
Would it be possible to map it to the "all programs" soft key in TF3D?
Looks nice, thanks for the good work.
Installed and tried it. A pgm which works great. Very handy as I do not have every programs set for my iFonz icons. I couple of suggestions:
1) To group pgm names by alphabet, something like iContact. When the scroll reaches a particular alphabet, the alphabet will appear in the middle, more like you're selecting from the left alphabet option.
2) A handy A to Z table like iContact rather than the alphabets tiny-ly arranged on the left.
I can live with the color but if there's skin to select, it will be prefect.
Thank you for such brilliant pgm.
why netcf
New Version 0.0.2!
It's more skinnable, you can change also font. And I made 6 example skins. I would love see few good custom skins in this thread, which i could add to next release.
uniqueboy said:
Would it be possible to map it to the "all programs" soft key in TF3D?
Looks nice, thanks for the good work.
Click to expand...
Click to collapse
I have no idea never tried TF3D. Maybe someone else could answer?
avellant said:
It's more skinnable, you can change also font. And I made 6 example skins. I would love see few good custom skins in this thread, which i could add to next release.
Click to expand...
Click to collapse
Any chance it could use the today wallpaper for background?
stutzedward said:
Installed and tried it. A pgm which works great. Very handy as I do not have every programs set for my iFonz icons. I couple of suggestions:
1) To group pgm names by alphabet, something like iContact. When the scroll reaches a particular alphabet, the alphabet will appear in the middle, more like you're selecting from the left alphabet option.
2) A handy A to Z table like iContact rather than the alphabets tiny-ly arranged on the left.
I can live with the color but if there's skin to select, it will be prefect.
Thank you for such brilliant pgm.
Click to expand...
Click to collapse
Thank you!
1) That's possible and a good idea.
2) I'm going with tiny alphabets for now, but that would be nice option to add later versions, though i have to make whole new control for that.
The new version has the old color scheme and new white one, i would like i have some darker on like on scroll launcher also.. maybe some talented skinning artist in this forum could provide me that I'm not so talented with skin creating.
uniqueboy said:
Any chance it could use the today wallpaper for background?
Click to expand...
Click to collapse
oh, it would be nice....
btw, great app!
uniqueboy said:
Any chance it could use the today wallpaper for background?
Click to expand...
Click to collapse
That's really great idea Anyone know, how to get path for todaywallpaper? I added background bitmap function to alphabet bar, but haven't yet tested it. I have also modifying the list control to support bg bitmaps... I think it would be in next version.
Hi avellant
great work, thx for that
asking if you can add
1- app font changer size
2- ability to add or not programs icon

[Online tool] Titanium CPR/PLG helper v0.8

Did a online tool in flash to help skinners and developers code the CPR / PLG files easily:
{
"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"
}
Use it here: http://twolf.sytes.net/Titanium_Helper/
This basicly allows us to see the result and the code on-the-fly of the text or image we want to position.
Was going to do a flash EXE for our devices, but it would be too small to use, so went for the online tool.
To use:
-----------
- Right-click with the mouse and select FULLSCREEN for a better use.
- Drag the toolbar windows to wherever you work best.
- Choose plugin name and resolutions.
- Add images and texts.
- Drag and resize the texts and images to whatever you need.
- Use the up, down left and right cursor keys and grow + / - for a more precise use.
- Also the backspace and space to delete and edit objects.
- In the end simply paste the codes to separate notepads (by clicking the button you are doing a COPY action).
Enjoy.
v0.1:
-------
- Drag to move.
- Drag the bottom left tip to strech.
- Copy code to PLG.
v0.2:
-------
- Added more precision, with cursors and + / - keys.
v0.3:
-------
Added:
- Choose plugin name
- Choose screen size (QVGA/VGA, Portrait/Landscape)
- Add image
-- Add image ID
-- Add image size
-- Add image filename
- Add text
-- Add text ID
-- Add text font
-- Add text font style
-- Add text size
-- Add text color
- Export CPL/CPR
- Started the Export REG routine (registry setting to import to the final CAB file)
v0.4:
-------
- Added:
-- Choose plugin size
-- More screen sizes (SQVGA/WVGA, Portrait/Landscape)
-- Export REG
-- Developer useful links,
- Changed layout a little.
v0.5:
-------
- Added Remove item
- Added Edit item
- Dome bug fixes
- Some visual cleanup.
- Instead of a Wizard tool, I simple added 1-2-3 steps on the menus to create a full CPL/REG.
- Added fullscreen option on mouse right-click, for smaller monitors.
v0.6:
-------
- Fixed QVGA landscape/VGA portrait wrong settings (thanks, chriscsh )
- Added WQVGA screen settings.
- Added a simplified color picker on text objects.
- Cleaned up the layout a little.
- Fixed bug that allowed negative image and text sizes (would be great if it rotate them, hehehe)
- Corrected misspelled CPL with PLG (my mistake)...
v0.7:
-------
- Added option to drag toolbar windows around, for a easier use (carefull where you put the DELETE AREA ).
- Added button menu.
- Fixed CHOME name in the registry window.
- Added field for the condensed size of the plugin.
- Added a lot of missing CPL/REG codes (still need to see about the GUID reg code...)
- Separated the CPR code from the PLG code (just remove the first and last fields).
v0.8:
-------
- Added ENTER as OK key.
- Fixed digits resize.
- Added more text options:
- Added Chome Visual Editor by Kane159
To do:
-------
- Add pages.
Dude, once you get that todo list of yours done,
I will be using this almost everyweek to make a new skin.
Thank you for your hard work!!
That is very nice Twolf. Can't wait to see it working for the Omnia.
v0.3 released, lots of extra stuff.
If you cant see the registry window its ok, its not fully working yet.
Great stuff!
So, finally will we be able to make a cab too with your app...?
flaviopac said:
Great stuff!
So, finally will we be able to make a cab too with your app...?
Click to expand...
Click to collapse
Thanks, but thats not only up to me...
I wont be able to do that alone.
That envolves php hosting, online cab tools, etc...
v0.4 updated.
v0.5 updated.
Dont know where to go from here...
I really have to say this is one of the most useful tools i've seen out there. amazing work and thanks for sharing!
a suggestion could be to pack the .swf inside a flash projector .exe and maybe distribute it as standalone for faster access. but that's just a suggestion. it's really great!
nice twolf
wow, that very useful, thanks
Problem:
when select QVGA landscape, the layout show 480x640
VGA portrait, the layout show 320x240
Very cool thanks for sharing twolf, i'm adding as a useful resource in my 6.5 guide.
rpereira said:
I really have to say this is one of the most useful tools i've seen out there. amazing work and thanks for sharing!
a suggestion could be to pack the .swf inside a flash projector .exe and maybe distribute it as standalone for faster access. but that's just a suggestion. it's really great!
Click to expand...
Click to collapse
Thank you, I was going to do a EXE at first, but this way it always updated to the last version, also a swf version is less heavy than the EXE and its compatible to all OS's (its flash 7 so it even runs on WM, if we had the screens for it ) but ppl can always simply save the page as a file (mht) or get the swf from the browser's cache, but again, when a update comes out their version would be outdated... Theres no ads or banners nor there will be, so the page is only those 25kb to load.
chriscsh said:
wow, that very useful, thanks
Problem:
when select QVGA landscape, the layout show 480x640
VGA portrait, the layout show 320x240
Click to expand...
Click to collapse
Good catch, thanks, will fix that on the next version.
twolf can u please make also for WQVGA?
if u need any code im here to help
Wow, that's an giant leap forward.
Nice work man!
giorgosm said:
twolf can u please make also for WQVGA?
if u need any code im here to help
Click to expand...
Click to collapse
LOL, I just did that, didnt even noticed it was missing before fixing the QVGA landscape bug...
v0.6 released!
v0.7 released !
(yes, I have nothing better to do, )
Some major code fixes and extra options added.
The floating draggable toolbar windows changed the layout completly... its the small details that make me smile. ^_^
Hm nice one.
In landscape QVGA and WQVGA have different dimensions, but in portrait they have the same?
gekas said:
Hm nice one.
In landscape QVGA and WQVGA have different dimensions, but in portrait they have the same?
Click to expand...
Click to collapse
Well, yes, the 240 pixels are the same. And you are not going to do a plugin bigger than 320 pixels.
I did the same in SQVGA.
This makes less clutter on the editor layout.
I have some issues on my 1366X768 screen. Even full screen the bottom section is cut off. Can you make it scroll or something so I can see the whole image?

[update 09/19/09][Titanium]CManila menu beta 5.1[Test for All Res]

OK beta 5.1 comes
if you use NeoTitanium Rev1.0a theme see post 2
fix remove icon issue............................done
and new page,next page,preview page ........ done
support the oreginal Titanium skin.....done
add .exe support...........................done
fix add new page issue...................done
VGA support................................done
different language support..............done
fix add new page..........................done
WQVGA support...........................done
allscreen size..............................done
delete link..................................done
[to do]
Code:
1.add backup function
2.try to use the start menu icon(if you have icon for the link,if no you have to choose a pic)
4.Landscape support
1.0...add previous page, next page, add new page
1.1...support the oreginal Titanium
2.0...add .exe support
3.0..VGA support( thanks climber1872000 and teorouge)
differen't language support
( some one tells me that not everyone's "Program Files" names "Program Files")
[beta 3.3]
support WQVGA
and fix QVGA
still need tester for SQVGA,WVGA
VGA still testing
[beta 5]
this time you can put it any where you like !!!!!
skinable, skinner can rock and roll LOL(you can change the button pic you like this time)
you can use this plugin after install (no need to reboot anymore)
add delete function on right soft key
don't use color_code( save lot's of RAM, and save your CPU LOL)
support all screen size, all theme,but only 4 apps in a page(slide just like other plugin)
and 6 pages for "now"
[5.1]
fix6 pages
[preview]
{
"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"
}
[how to use]
Code:
remove CManila menu in Settings→System→Remove programs
install kane159 CManila menu beta 5.cab
enjoy :-D
I'm a poor student if you can make a DONATIONS I'll very happy
support to drkfngthdragnlrd's NeoTitanium Rev1.0a
you can find it hereNeoTitanium Rev1.0a
[how to use]
if you never use this before
Code:
1. download the zip and [6.5]kane159 CManilamenu beta1.cab file :) their are two files in it
(1).needs to add this to your cpr.txt
(2).[6.5]kane159 my work alfa 1.cab
2.add the code in the needs to add this to your cpr.txt to your cpr file in \windows
3. instill the cab file:)
4. reboot your driver
5.use CHome editor to start up this plugin :(
6.instill [6.5]kane159 CManilamenu beta1.cab
7.unzip 2.0 update for NeoTitanium Rev.zip and put the file to "\Program Files\CManilamenu" to over write the old file
8.enjoy:D
if you had used 1.0 before
Code:
just unzip 2.0 update for NeoTitanium Rev.zip and put the file to "\Program Files\CManilamenu" to over write the old file
[what's new in beta2.0]
add .exe support
for this theme you can put it every where
file release now
check post 1
kane159 said:
file release now
check post 1
Click to expand...
Click to collapse
Looking good, I'll add your layouts to the CPR's my CAB so people don't have to manually edit the CPR's in a future release of my theme. Downloading now to check it out.
The "future release" will probably come in a few days. Taking a break for now. My brain is hurting from all this code lol.
sure
it's not harder then I think before only problem is a lot's of reg key lol
and how to support the oreginal Titanium is a big problem for me
hope you can help...because I'm not really understand how the buttons work
kane159 said:
sure
it's not harder then I think before only problem is a lot's of reg key lol
and how to support the oreginal Titanium is a big problem for me
hope you can help...because I'm not really understand how the buttons work
Click to expand...
Click to collapse
cherish might be able to help with regular Titanium as his plugin is for it & he's adding buttons to it. Really the only difference is the script will need different X/Y values & the user needs to have a TitaniumListView (Plugin always recenters itself onscreen) type theme. If the theme using BronzeListView, there's be only one way to support it as the X/Y value would be different depending on order of plugins. It'd have to be either the first or last plugin enabled.
Noticed an issue, the script is deleting the Add.png image. This causes you to get the "RED X" that CHome draws for missing images.
You need to remove the script that deletes the image. There's no need for it as the image gets changes in the registry upon adding an app anyway.
thanks !!
I already fix that just forget to update
here is the fix app.mscr just replace it
by the way new page,next page,preview page are almost done
Outstanding work!!!!!!!!
kane159 said:
thanks !!
I already fix that just forget to update
here is the fix app.mscr just replace it
by the way new page,next page,preview page are almost done
Click to expand...
Click to collapse
Cool cool, doing great, just copied it in.
Trying to see if I can get the buttons to work inside the <Layer ID="Page" section and link the images to cprs. After that going to see if there's a way to do buttons w/o the color script. The script is nice because it works, but hoping there's an easier way to make buttons launch app. That would also increase performance with less scripts running.
beta 1 release
check the first post
kane159 said:
beta 1 release
check the first post
Click to expand...
Click to collapse
Looking good, 1 small note though, I won't change the application name inside the cab. This way updated cab's will ask to uninstall the previous version on install instead of user having to uninstall it manually first.
don't need to uninstall
just some reg key and new file
and fix something ,the file name is the same , it will cover the old file
waiting for VGA version
OK give me your cpr file because I don't have vga drivers
and do you want more buttons or just 12 in a page??
I think VGA can have 12*4=48 buttons
or drkfngthdragnlrd ,did you make an VGA one?
can you please give me your CPR file
then I can start on VGA's
kane159 said:
OK give me your cpr file because I don't have vga drivers
and do you want more buttons or just 12 in a page??
I think VGA can have 12*4=48 buttons
Click to expand...
Click to collapse
You want to keep the same # as buttons between QVGA & VGA as the image needs to be increased in size to look the same size on screen. Double the Height & Width of the values of the cpr for VGA. It should be noted also that right now I don't have support for VGA in NeoTitanium so they'd be adding the layout to their Theme CPR's unless someone made their own VGA version of the my CPR's
kane159 said:
don't need to uninstall
just some reg key and new file
and fix something ,the file name is the same , it will cover the old file
Click to expand...
Click to collapse
The main reason I say this is because the old version will remain on the "Remove programs List and you won't be able to uninstall it to get it off the list. It's not a big thing, but makes for a cleaner "Install Programs" list.
drkfngthdragnlrd said:
You want to keep the same # as buttons between QVGA & VGA as the image needs to be increased in size to look the same size on screen. Double the Height & Width of the values of the cpr for VGA. It should be noted also that right now I don't have support for VGA in NeoTitanium so they'd be adding the layout to their Theme CPR's unless someone made their own VGA version of the my CPR's
Click to expand...
Click to collapse
I thint is not very hard....when I start mapping cpr file I just count
like full screen wight is 240, and there is 45 at left so...I just do like this 240-45=195
then 195/3=65 squeeze so 65-1=64
then I try my first button then take a screen shot then mapping.....
all just like that
kane159 said:
I thint is not very hard....when I start mapping cpr file I just count
like full screen wight is 240, and there is 45 at left so...I just do like this 240-45=195
then 195/3=65 squeeze so 65-1=64
then I try my first button then take a screen shot then mapping.....
all just like that
Click to expand...
Click to collapse
the color code will also be different as the dot gets stretched & therefore the color changes slightly at the selected pixel.
That's what I worried about
but all fine now for QVGA Portrait I'll Taking a break for now
so Landscape have to wate ...because I don't use Landscape....I'll try to map the cpr file then can you help me for the screen shot? then I can make the color code works too

[APP][09/07/20][PreviewPlugin Titanium english]JMLToday5.1-need Skins all resolutions

NEW VERSION IS ONLINE - please go to:
-> *Newest Version of Titanum-Plugin JMLToday with Download*
--> *Skins & AddOns for JMLToday*
Please read this before:
Here is in accordance with JMHL the Preview for JMLToday in English.
I discovered JMLToday some time ago in the web and there it was only for French language, but I liked the style and variability and so I got in contact with JML to translate it to other languages - at first Germany.
At first it was only a translation/changing of script - but then we got closer and the changes will be directly implemented in JMLToday - with the goal to have a multilanguage JMLToday.
Then I made also a multilang cab and looks for improvements - but the it's not good to have too much cooks - the developer of JMLToday is JMHL -> please visit his Blog: http://www.jmlacou.com/wpJML/?p=24
This "Collect-Thread" is opened in accordance with JMHL.
With the help and testing of some Users from Diamond-Section we have now a Preview of JMLToday in English Language - full functionality! (Thanks to donsalari, xxmarkosxx)
Some questions are already answered there: *Diamond JMLToday5.1-Thread*
But the Plugin can work on all resolutions - I made the installer, that it will be installed in every ROM - independent from the language - but the complete development was on the Diamond - and it's to difficult to estimate the other resolutions - especially in Titanium with the different styles.
But it runs on VGA,WVGA,QVGA,WQVGA,...!
But first have a little look to it (don't mind about foreign languages in Screenshot):
{
"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"
}
Further informations and Skins:
*French Developer Forum - The Home of JMHL*
*German Developer forum*
Important and what we need:
VGA/WVGA-Users:
The Plugin should work by default - you can change the skin, how you like. In the links above you will find much more skins and Icons.
But very much Skins have no Landscape support - and also new Skins would be really great! It's not difficult - if you look with CHome into the Vars - you will see, that very much different Skins are easy to make.
User with other resolutions like QVGA WQVGA:
First trial with additional setup instructions in Post #23 -> *QVGA/WVGA-Trial AddOn* - then it works on your resolution!
But we need more input: The Plugin can be installed, but there's only one .plg which has your Resolution. So all VGA-Themen - they won't be added to the right .cpr - nothing to see.
But you have the others default .plg-Files in the JMLToday-Directory... and you can add the sections for your resolution and resize the Icons and texts, that it looks nice.
Copy complete
<layout screenWidth="480" screenHeight="640">
...
</layout>
Section and add it with your resolution.
With the "Change Skin"-Contextmenu by tapping on the Main-Screen (or by starting "jmltodayskins.mscr" you can always test.
The Plugin works very stable - so I don't think you can do something wrong - but nevertheless: JMHL or me can't be made responsible for that what you do
Features 5.1 preview:
- Digital Clock
- Weather for Today and next 5 Days ( you'll find your town with http://weather.msn.com -> e.g. NewYork is "USNY0996" )
- Short description of weather
_ Battery, Appointments, Bluetooth, Wifi, Alarm-State
- Notifications for SMS and Phone (with extended Contextmenu!)
- Support of S2U2-UserWeather
- Support for Titanium7-Project and "custom" Titanium - what you prefer
- no costs
- ... much more - you'll see
The Program is written in C++ - so minimal Battery-Drain in opposite to 24/7-Mortscripts, complete skinable because everything to change is outside the C++ in Mortscript (but no 24/7 )
Why not Accuweather? In MSN it's a very small size to load (in next version only 1,5 Kb) - and you'll find much more small villages - perhaps yours)
Please help us to geht Skins for all Resolutions and for Portrait and Landscape.
We hope with the Multi-Language-Release of JMLToday - which will be made by JML - your Skins could be inside.
You can also looking forward to:
- configurable Clock/Alarm-Path (if U use e.g. G-Alarm, Pocket-Alarm,...)
- Interface for Skinners to add more informations, wherever they are (2nd weathercity, more Appointments, Birthdays,... whatever you like)
- Analog Clock
-...
Notes because of questions:
- The default Plugin is "JMLToday.plg" - for this file we would need the qvga,... as most urgent
- the default.plg is only the hook for ATPluginInstaller - no need to change anything.
- Everything with "WM7" inside Skin-Name is for Titanium7-Project
- Use CHome-Editor from Showaco to see, what informations can be displayed in JMLToday
- switch from Fahrenheit to Celcius -> *klick to #31*
Thank you for your help - I will send working skins to JML and your Skin could be inside the next Releases - feedback is appreciated that we can see, that a skin is working on other resolutions - also new Ideas are welcome.
Thanks to everybody, who will help!
Micha
Thank you - works great!
Hope also for additional skins
Nice app. Installed perfect. Is there a way to dispaly 12 hour time format instead of 24 hour format?
dougdelong : In next version (v5.2)
Soon.
A++
Sorry if i ask the obvious... is this a Titanium plugin like stated in the title or is it a CHome Titanium replacement with plugins?
hope you will in next version put temperature to be shown in celsius....
@benko286:
Yes - in 5.2 it will be chooseable for us and en (Fahrenheit <-> Celcius). Also for 12/24h
But meanwhile you can change it immediately to Celcius:
you will find in jmlmeteo.mscr the line with
raw=ReadFile("http://meteo.msn.com/RSS.aspx?wealocations=wc:"&location&"&weadegreetyp e=F&culture=en-US", "latin1")
- change it to:
raw=ReadFile("http://meteo.msn.com/RSS.aspx?wealocations=wc:"&location&"&weadegreetyp e=C&culture=en-US", "latin1")
@claus1953:
No - there's no replacement of something - you should have to do it manually to overtake the CClock, if you want. But by default: New Panel - don't be afraid
@ll: The 5.2 is really great in first Tests - we really need at least the "JMLToday.plg" and the "JMLToday_WM7.plg" very urgent in QVGA and WQVGA (and perhaps in landscape, too)
Please help - we don't have the devices to make it in perfect fit for this resolutions.
Otherwise the Release for all Resolutions (besides VGA and WVGA) must be postponed
Please have a look in the Diamond-Thread, too - there are some answers for common questions: -> *Diamond Thread*
MichelDiamond said:
@claus1953:
No - there's no replacement of something - you should have to do it manually to overtake the CClock, if you want. But by default: New Panel - don't be afraid
@ll: The 5.2 is really great in first Tests - we really need at least the "JMLToday.plg" and the "JMLToday_WM7.plg" very urgent in QVGA and WQVGA (and perhaps in landscape, too)
Please help - we don't have the devices to make it in perfect fit for this resolutions.
Otherwise the Release for all Resolutions (besides VGA and WVGA) must be postponed
Click to expand...
Click to collapse
I installed the plugin, then a new panel appeared with the setup. I did the setup then CHome refreshed but the new plugin did not show up anymore. In CHome Editor it shows up as the top plugin but not on my screen.
I did try to install it in the default theme for Titanium to avoid problems with compatibility.
claus1953 said:
I installed the plugin, then a new panel appeared with the setup. I did the setup then CHome refreshed but the new plugin did not show up anymore. In CHome Editor it shows up as the top plugin but not on my screen.
I did try to install it in the default theme for Titanium to avoid problems with compatibility.
Click to expand...
Click to collapse
Might have something to do with your screen size according to the first post.
Very Cool! Works well. VGA
Only way for me to have English for all the words is to change the Skin to Chelsea.
I like the JMLToday standard Skin better but the Day and Month is still in some other language "French"?
Got the City worked out and weather shows but the icon is chopped on the top.
Thanks! Looking forward to 5.2
blazingwolf said:
Might have something to do with your screen size according to the first post.
Click to expand...
Click to collapse
Oh ok, i tought that if the setup panel appears it should be fine, but well...
I like this plugin. However, I have two questions. On my weather panel, the days are not capitalized. How do I change that. Also, how do I go from 24h clock to 12h clock? Again, nice looking plugin and thanks for any help.
Very classy , all in one solution. Thanks!
Very Nice
Really nice! Great job. One of the few multi plugins that is useful and yet classy.
how it's gonna be install, i installed the cab to the phone memory, i click ChomeRefresh in programs/ utilities/jmltoday/ but nothing happens, do i have to close touchflo 3D from today or not?? please someone tell me how it'll work??? my device is diamond also...
MichelDiamond said:
@benko286:
Yes - in 5.2 it will be chooseable for us and en (Fahrenheit <-> Celcius). Also for 12/24h
But meanwhile you can change it immediately to Celcius:
you will find in jmlmeteo.mscr the line with
raw=ReadFile("http://meteo.msn.com/RSS.aspx?wealocations=wc:"&location&"&weadegreetyp e=F&culture=en-US", "latin1")
- change it to:
raw=ReadFile("http://meteo.msn.com/RSS.aspx?wealocations=wc:"&location&"&weadegreetyp e=C&culture=en-US", "latin1")
@claus1953:
No - there's no replacement of something - you should have to do it manually to overtake the CClock, if you want. But by default: New Panel - don't be afraid
@ll: The 5.2 is really great in first Tests - we really need at least the "JMLToday.plg" and the "JMLToday_WM7.plg" very urgent in QVGA and WQVGA (and perhaps in landscape, too)
Please help - we don't have the devices to make it in perfect fit for this resolutions.
Otherwise the Release for all Resolutions (besides VGA and WVGA) must be postponed
Click to expand...
Click to collapse
Michel,
Changing F to C for degrees didnt work out. After making a change it always gives an error in mscr file.
nec85 said:
how it's gonna be install, i installed the cab to the phone memory, i click ChomeRefresh in programs/ utilities/jmltoday/ but nothing happens, do i have to close touchflo 3D from today or not?? please someone tell me how it'll work??? my device is diamond also...
Click to expand...
Click to collapse
Of coure you need to close tf3d... And u need to enable "windows default" from the today settings...
ManUtd07 said:
I like this plugin. However, I have two questions. On my weather panel, the days are not capitalized. How do I change that. Also, how do I go from 24h clock to 12h clock? Again, nice looking plugin and thanks for any help.
Click to expand...
Click to collapse
I am annoyed with that too... Tried a lot.. But apparently it picks up the days from system clock...(Atleast i think so)
dougdelong said:
Nice app. Installed perfect. Is there a way to dispaly 12 hour time format instead of 24 hour format?
Click to expand...
Click to collapse
Not yet
Ok here is one more theme "I HAVE NOT MADE THIS."
THIS THEME IS MADE BY "ric69"
Click to expand...
Click to collapse
Thanks to report my thème, will try to adapt it on 5.2 when it's over

[APP] Pocket Gforce v2.04 RC (04-11-2009)

Hi all If you already follow my Thread of" Pocket Gforce" you know that i stop working on it because of the lack of time.
Atm igot myself whit some spare time and whit lots of requests to continue the project.
So i start developing a new Pocket Gforce (v2) that is fully customizable and works in any Resolution(VGA, WVGA, etc and Landscape or Portrait) as long you got a proper skin.
This is where you come in.
This is the skin that i made and i will explain how you can make one.
{
"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"
}
BIG UPDATE
The "basic.png" is the skin that i create (i advice to use paint.net or other program to make the skins using layers)
The "basic.ini" is the configuration of the skin like this
//Starts Here (don't change the lines order)
Basic Skin (skin name)
Landscape=1 (0= portrait 1= landscape)
Gforce X axis
dial_enable=1 (is thedial visible 1/0)
dial_scale=1 (scale in G)
dial_x=324 (x coordinate (remember uper left corner is x0 y0))
dial_y=360 (y coordinate )
dial_l=80 (length)
dial_z=0 (where is zero value)
dial_a=29 (aperture of the dial)
dial_color_r=255 (dial red color 0~255)
dial_color_g=255 (dial green color 0~255)
dial_color_b=255 (dial blue color 0~255)
digital_enable=0 (digital value enable 1/0)
digital_X=300
digital_y=250
digital_size=30
digital_color_r=0
digital_color_g=0
digital_color_b=255
graph_enable=0 (graph enable 1/0)
graph_x=0
graph_y=0
graph_Width=0 (width of the graph)
graph_Height=0 (height of the graph)
graph_max=1 (max value of graph)
graph_show_max=0 (show max value or not 1/0)
graph_color_r=0
graph_color_g=0
graph_color_b=0
graph_frame_enable=0 (show frame around graph 1/0)
graph_frame_color_r=0
graph_frame_color_g=0
graph_frame_color_b=0
graph_background_enable=0 (show background on graph or transparency 1/0)
graph_background_color_r=0
graph_background_color_g=0
graph_background_color_b=0
// the file continues for the Y Z T and Speed dials (at the moment speed dont work)
(Midle dial is "S", left one is "Y", right is "Z" and bottom is "X"
And this is the part that show all the skins that you have in the skins folder and where you can change them. To access it push middle button or open "Pocket gForce 2 Options"
Unbaliveble only one person post something and actually no one contact me about skins or beta testing so i suppose no one really cares... but i had 1215downloads of it
So if the community don't want to help i just gonna sell my project as i was always for open source but...
Any way the program is now working whit the Sensors and in the next week i will test whit the gps part.
So do you really care/like about Pocket Gforce ? What to see Pocket Gforce 2 at max capacity, the way you like and above all FREE?
So Start making some skins...
Log Version
2.04 Touch Menu for Dpad-less PDAs, Extra Costume Skins, beta GPS system, beta Log system. More info on page 4 post 35
2.03 Sensor Working, New Installer, Graph implemented, More skins
2.02 More skin customization (Digital dials and easy skin changer)
2.01 release of Pocket Gforce 2 whit skins customization
Skins already on the installer
Basic VGA Landscape (XYZT dials and Digital T)
Carbon VGA Portrait
gfAnaliser VGA Portrait (XYZ dials and XYZ Graphs)
sismo VGA Landscape (XYZT Graphs and digital XYZT)
Also 4 Future use
can I use it on my omnia
any way i already downlodad ir lets see if its work on my omnia ill let you know
Please keep up the good work, if you received no big feedback for your apps, this might be just because the people are happy with it and got no problems. I see most of the replies for any application is based on errors and bugs.
Hi all i made some major updates as the Sensores are now working and i implemented a graph system.
Check the skins i made so you can understand the possibility of this program, and ppl plz contribute whit some skins tips or critics cuz i need some incentive to keep it free
jr_daza said:
any way i already download ir lets see if its work on my omnia ill let you know
Click to expand...
Click to collapse
It should work but back then the sensors where not activated, check the latest versions, but as the originals skins don't have the proper size you will not use the full size of your screen.
lony said:
Please keep up the good work, if you received no big feedback for your apps, this might be just because the people are happy with it and got no problems. I see most of the replies for any application is based on errors and bugs.
Click to expand...
Click to collapse
I suppose your right but no comments at all is very frustrating...
I have downloaded it. I will reply after the use.
Ah thats awesome
I love the version befor, hmm i dont remember the version number but i truly love it!
One thing i think you implement or change is a tab or mode that the speedometer is the same size as the overall g-meter.
That i think would be nice
Just PM me if you need any testing!
//linkus
EDIT
I noticed one thing, I have SPB Mobile Shell, on a Touch Diamond, and when i start the app and it change the display to landscape, it wont change back to regular mode after exit.
Cheers
//linkus
hi !!
i've never used your app, but i can test the last version if you want !!
I'm searching such an app for a long time, because i can't buy me a Nissan GTR !! (To understand the joke, ask google to show you the computer screen of that car !!)
Have a nice day !!
love the v1 app but couldn't get it to show in MPH, so thought i'd give the new version a try. Looking good so far but the screen doesn't fill properly on my TouchHD. Also, can't find a way to exit the app, other than taskmanager which leaves the screen in landscape mode. Thx
gilberti69 said:
Looking good so far but the screen doesn't fill properly on my TouchHD.
Click to expand...
Click to collapse
As i say there is a need to some one to make some skins for other resolutions so my one skins fit best on VGA devises, wi dont you try to make some skins and post them here for other also? And dont forget that is not only backgroud is also what you whant to display.
gilberti69 said:
Also, can't find a way to exit the app, other than taskmanager which leaves the screen in landscape mode. Thx
Click to expand...
Click to collapse
Actualy i forgot that not all devises have the Dpad so my new vertion will be totaly TouchScreen controled, sorry for that.
Any way the new vertion will be release next monday or so whit the GPS working.
I've no idea how to make a skin, but if you give me some pointers, or links to tutorials i'll have a go, I mean, how hard can it be?? LOL (ducks)
gilberti69 said:
I've no idea how to make a skin, but if you give me some pointers, or links to tutorials i'll have a go, I mean, how hard can it be?? LOL (ducks)
Click to expand...
Click to collapse
I supose my explanation on the first post is a ls some what confuse, so here is a temporaty tourial as i supose i can make a video and post in youtube
I recommend you grab a copy of the free Paint.Net whit as me tool "magic wand" for select parts of images and have multi layer capability. There are lots of tutorials about it.
1. google some gauge dials like this one for example
2. find some nice background for it
3. use Paint.net and the tool "magic wand" to cut only the dial (normally you need to adjust the % of the tool to get the part you need.
4. you wil get a clean image of the dial without the background, remove also anything you dont want, like needles if it there is any or any text you dont need.
5. make a new image whit you device resolution whit the background
6. Put a new layer on top of the background and copy/past the dial in the spot you want
7. repeat the last step fot the rest of the dials
8. save it as "test.png" MUST BE PNG
9. Open one of the already created skins like "basic.ini"
(check post one for a explanation of the ini file)
10. disable anything that you dont use (like some dials digitals or graphs)
11. start putting coordinates and sizes (use paint.net to get the coordnates for some poits like the center of the dial.
12. save it as "test.png"
13. copy the "test.png" and "test.ini" to the skins folder
14. enjoy
Ok, thought I'd try something simple to start with so i just made an HD version of your basic skin. I wanted to put the speed on there too, but it shows as huge 'g' numbers so i just turned it off in the ini. Once i figure out the concept of skinning properly i'll come up with some others (i prefer a portrait style). Incidentally i the middle dial is 'T' not 'S' as stated in your instructions. Couldn't figure out how to make the dials eliptical rather than round either.
I think i'm getting the hang of it. Tweaked gfAnalizer for the HD and created a new skin from scratch. Let me know what you think, obviously the speedo isn't working but i've left it enabled anyway.
Nice start whit the skins, im going to put the layer files of basic so ppl can use them easy.
Im compiling users skin on then 3post, after some more skins appear
Just been for a test drive
There are a few things i think this app needs:
Exit option
Calibrate or Zero option when installed in car.
0-60 time which starts when car moves off and stops when reaching 60.
Log facility, ideally with gps info stored for overlay on google maps
Regards
gilberti69 said:
Exit option
Calibrate or Zero option when installed in car.
Click to expand...
Click to collapse
D-Pad only, will be fixed in the next release
gilberti69 said:
0-60 time which starts when car moves off and stops when reaching 60.
Log facility, ideally with gps info stored for overlay on google maps
Click to expand...
Click to collapse
Already on the Pocket Gforce 1 so its just a matter of time. (~two weeks?)
Good job!
You develloped a great app! keep on going the good work man!
Plz implement the 0-60 timer and keep working at this app

Categories

Resources