* Google Search


Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - jdotcong

Pages: [1]
1
Lockscreens / LOCKSCREEN loader(for starEvo) Pre-release
« on: October 26, 2011, 06:31:17 PM »
 ;DJDOTCONG/ONESTYLE/SIRIS ;D

this would be the official lockscreen base for starEvo
Features:
7 changeable lockscreen
[all lockscreen load in external swf]

slideshow wallpaper(thanks to keeg.ru and nick for informing us) -optional
[5 images on slideshow, must be place in slide folder and in jpeg format]

weather forecast on background (again posted by nick) -optional
[also loaded in external swf]

password protection (all lockscreen requires password)-optional
[when set to on all lockscreen will require a password also when turning off it also require a password]
(use holdkeydisable patch for full security)

all the settings you made will be save even phone restarts - thanks to the poison sohandler script
things that script saves:
1.selected lockscreen
2.wallpaper selection(either default wallpaper or slideshow)
3.weather forecast (on/off)
4.password(not yet done) DONE!!

Note:
this lockscreen base will not be release until the release of starEvo
all lockscreen swf that can be found on net will be compatible
better prepare all your lockscreen choices
this lockscreen base load default wallpaper in default
so i suggest remove all backgrounds in your lockscreens also remove the script that loads
phone default wallpaper
slideshow, weather will not be seen if your lockscreen has background

Thanks to THE POISON without his saving script this lockchanger will be imposible

here is the link:
http://www.megaupload.com/?d=1HFS91KJ

2
first ill explain how do i make lockscreen work..
1. lockscreen.swf is external swf that loads when a lock button is press
2. to unlock (or remove the external lockscreen.swf we have to unload the loaded swf
3. loading external.swf on top of the main swf (gadget.swf) did not tottaly lock the main swf
icons below can still press even not visible
if you have sliding or moving gadget is can still slide so we have to make some modification to avoid that and make lockscreen.swf act like a real screen lock

here we go
to be able to have a lockscreen first we need a script that load the external swf
here it is

Quote

        this.createEmptyMovieClip("htcBar", 99);
        htcBar.loadMovie("HTC FILES/Lockscreen/lockscreen.swf");



but with that script lockscreen.swf will load on startup and we do not want that to happen so we have to modify the script to make the lockscreen.swf loads only when a lock button is pressed

the script should look like this

Quote

function loadBar1()
{
    if (barLoaded)
    {
        htcBar.unloadMovie("htcBar");
        barLoaded != barLoaded;
    }
    else
    {
        this.createEmptyMovieClip("htcBar", 99);
        htcBar.loadMovie("HTC FILES/Lockscreen/lockscreen.swf");
        barLoaded != barLoaded;
    } // end else if
} // End of the function



where:
function loadBar1() = name of function that need to be loaded
 htcBar = container of movieclip that will load
99); = location of loaded clip (i put 99 to make it on top)
("HTC FILES/Lockscreen/lockscreen.swf"); = root folder and file name of external swf that would be load

paste that script in timelime action script layer(not in any movieclip action tab)

now that we have a function script that waits for us to load him we need a lock button
make a button in your gadget and paste this script
Quote

on (release)
{
   
   fscommand2("set", "Menu", 1, 3, 0);
   _root.aamir._visible = false;
   _root.loadBar1();

   
}





_root.loadBar1(); is the script that make the function loadBar1() load




now we are all set with gadget.swf,now we need a lockscreen.swf
lockscreen is very easy to make
we just have to make a 240x400 with flashlite 2.1/action script 2.0 swf
put a button that will unload itself (unload the lockscreen.swf to return to main gadget)

make a button and paste this script
Quote

       _root.htcBar.unloadMovie();



htcBar  = is the container of the loaded movie clip meaning unloading the container unloads the lockscreen.swf

but who want a lockscreen that unlocked with just a press of a button we wanted a press and hold to unlock features so we will add script to do that

your button script should look like this
Quote

on (press)
{
    function pressed()
    {
        clearInterval(InterID);
        _root.druck = 1;
        _root.htcBar.unloadMovie();
        _root.screenLock = false;
        lock = false;
    } // End of the function
   
    _root.druck = 0;
    InterID = setInterval(pressed, 300);
}
on (release, releaseOutside)
{
   
    clearInterval(InterID);
    if (_root.druck != 1)
    {
        if (_root.druck == 0)
        {
            notifier.gotoAndStop(2);
        } // end if
    }
    else
    {
        _root.druck = 0;
       
        notifier.gotoAndStop(3);
    } // end else if
}







now we will put default wallpaper to a lockscreen
make a new movieclip
Insert>New symbol(ctrl+f8) type movieclip name it BGloader
on the timelime action script layer(or the layer1)
paste this code
Quote

fscommand2("set", "Mode", "Gadget");
backgroundClip = createEmptyMovieClip("bg1", 0);
backgroundClip._x = 0;
backgroundClip._y = 0;
var backgroundLoader = new MovieClipLoader();
fscommand2("Get", "idle", "InitWallPaper", "mainBGPath");
backgroundLoader.loadClip(mainBGPath, bg1);
delete mainBGPath;






go back to scene 1
go to library and find BGLoader movie
now drag the BGLoader movie to scene1 set the position

X=-240
Y=0

now we are almost done but as i said in top lockscreen does not really lock the gadget.swf icons can still press and desk still slide (if present)

to avoid that we use this simple method

on the main lockscreen timeline make a new layer
put the new layer at the very bottom of all layer click Text tool (press T)
make a textbox bigger than the movie 240x400







thats all now the icons below cannot be press

about gadget that has slide features

just paste this script in lockscreen.swf main timeline action layer frame
Quote

_root.screenLock = true;
lock = true;



thats's all now you have a lockscreen that looks like a star default lockscreen(almost look like)
i have attached here the lockscreen.swf and lockscreen.fla

the script posted here are not just for lockscreen you can use it to load external swf like  music player etc. etc.
i think me and onestyle deserved a credit for every mod that will use this script
but we are not into credits send the recognition to terry he badly needs it hehehe peace

===============================================================================
i hope you find this tutorial useful
if you like my mods just pray for my 3 yr old son to be okay
(he have congenital heart decease plus 3 holes in it)
that way you would help me a lot

3
Intermediate / Customize Color scheme tutorial
« on: September 04, 2010, 07:36:55 PM »
okay first what is ? Color scheme
- are the colors that seen in the submenu (messages, settings)

can we really customize it?
yes that is why im posting this tut

after changing color what will i do to port it in my phone?
you have to paste you edited color.bin into res folder its either phone/res or MMC/res
then patch your phone using rc2 that contains colorTbl patch

here is a tutorial how to patch your rc2 with colorTbl
http://darkforestgroup.com/starmod/index.php?topic=150.0;topicseen

okay lets start changing color

first download this

http://www.megaupload.com/?d=ZYK9W8XI
this program is mdde by [AlaSToR] (i think) thanks man!!

then download this
http://www.megaupload.com/?d=BINO4OZF
that include color.bin and colorTbl.smp (ignore other file if you do not know about making patch in Qub)

okay lets really start changing color this time

rename color.bin to color.tab
open colortab_edotv2.0



click the dropdown to see color locations


click the ????? i have circle with black to change color
then click ???? i circled with blue to save selected color



i you have done changing color click save


after saving rename again color.tab to color.bin then paste it in your res folder

as for now i did not know the the ID for each color just try it your self then post here the ID's so that others will make their decent color

sorry my english really suckkkssss

thanks to XZY and [AlaSToR]
now i believe the the saying "best human race live in russia :)"






4
HTC Based / StarHero FINAL V1.0 by jdotcong and Onestyle07
« on: August 28, 2010, 06:51:14 PM »
STAR HERO UPDATE!

MEGAUPLOAD LINK
MEDIAFIRE LINK (thanks for nick :)))


Here are the screenshots




starhero V1.0 video



Star Hero V1.0

Features:

1. 7 Desktop Extra Fast Gadget
2. Lockscreen Manager(idea by joalo)
3. 6 Preloaded Lockscreens
4. Important Widgets like Mini Music Player, Google search Bar and Top 5 Contacts On Gadget
5. Slide Menu Bar With weather widget
6. Star Hero Color.bin And MyFiles
7. New Modified Music Player and FM Radio Look
8. Fast Wallpaper Changer with 127 Preloaded Wallpapers (collected from Different Sources)
9. default wallpaper can use, it was wallpaper no. 2 (must be 480x400 too)
10. most lockscreen uses default wallpaper
11. quicklaunch (idea by aamir)

Its FINAL version!!

The StarHero Is quite Usable...As i said it is KABOOMMMM just still with some Bugs hehe

Enjoy The Mod...

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
Modded by jdotcong(philippines) and Onestyle(Bosnia)

Special thanks/credits:
Darkforestgroup.com/starmod and its team
aamir
joalo
Xzan23
gaurav.stallion
xyz
joe earl
TerryCee
DEMONIC HAWK(without him there is no starhero)


please send feedbacks here
http://darkforestgroup.com/starmod/index.php?topic=532.0

5
me and onestyle07 agreed to post a new topic for htc and the old topic will be locked since it was flooded with question that was answered over and over again

this new topics has the latest version of HTC HERO

contains:
gadget.swf(7 changeable desktop)(bug reported - icons must be drag outside the widget bar to make it work on some screen)(glitch image on music player fixed)
imagen.swf(7 wallpaper for gadget)
menu.swf(updated! now with signal strength, battery indicator and digital clock)
thanks to allanas (provides update files and useful info)
HTC FILES folder(contain all the files needed to make htc menu work)
myfiles.swf(modded myfiles to fit the theme)


PREVIEW















INSTRUCTIONS

download the file
delete your previous htc theme files in your res folder (whether in phone memory or mmc it depends on your changeswf patch
(5 files and 2 folders)
menu.swf
HTCHeroItemData.xml
HTCHeroConfig.xml
myfiles.swf
gadget.swf
wallpapers(folder)
widgets(folder)

then extract the downloaded HTC MENU.rar
copy all the content to your res folder
restart your phone thats it your done

LINK MEGAUPLOAD
http://www.megaupload.com/?d=NC7FI5CE

also attached here for mirror download

Pages: [1]

Chat

Refresh History
  • White Rider: @fare1180, port/driver problem. reinstall the drivers and try different usb ports. are you able to use the media player mode with computer?
    April 29, 2013, 09:13:30 PM
  • farey1180: :-[
    April 27, 2013, 11:10:07 PM
  • farey1180: my phone is not seen in multi loader. why?
    April 27, 2013, 11:02:04 PM
  • CookieMen: @goku i know it, but i have other patch menu? but i downloaded it from this topic. can you make screens with enabled patches?
    April 26, 2013, 05:05:33 AM
  • beginnerPRO: can you help me to make scrolling background for gadget.swf please..!!
    April 25, 2013, 09:25:18 PM
  • wahyuaire: :(
    April 23, 2013, 07:16:07 AM
  • wahyuaire: i miss U all Guys
    April 23, 2013, 07:16:04 AM
  • Goku: Deactivate all patchs and activate nly the ones i postd ther..
    April 19, 2013, 11:10:27 AM
  • CookieMen: default eabled patches, not settings
    April 18, 2013, 05:10:44 AM
  • CookieMen: white screen, but with default settings phonebook and lockscreen doesnt work
    April 18, 2013, 05:10:10 AM
  • CookieMen: pb
    April 18, 2013, 05:08:33 AM
  • Goku: Wat help u want??
    April 17, 2013, 11:28:28 AM
  • CookieMen: anyone can help me with this theme? http://darkforestgroup.com/starmod/index.php?topic=1999.msg24556#new
    April 17, 2013, 05:31:34 AM
  • iXamueL: Good ol' forum where everything started :D
    April 13, 2013, 11:44:00 PM
  • White Rider: @it , and nothing has changed since you left....  :(
    April 10, 2013, 07:01:30 AM
  • it: it's been so long since my last visit.. :)
    April 09, 2013, 08:12:51 PM
  • onlook: ...
    March 25, 2013, 02:35:41 AM
  • White Rider: Bored....
    March 20, 2013, 10:56:00 AM
  • null14: yeah
    March 14, 2013, 11:13:46 PM
  • Goku: Thats true...
    March 14, 2013, 11:14:48 AM

SimplePortal 2.3.3 © 2008-2010, SimplePortal