PDA

View Full Version : [Script] "Remove scroll bar"



nEMO
03-07-2004, 12:50 PM
This script should help those who want to create menu with fullscreen grafix :)
Tested on: 3210,331x,3330,3390,51xx,5510,61xx,82x0,8850.

Update: v1.1

ShadoW2004
03-07-2004, 05:33 PM
Cool script!!! ;)

And...can you explain how to do FULLSCREEN MENU?

yak
04-07-2004, 07:22 PM
@nEMO

Congratulations! This is the first script for NokiX not written by me! That means you are creative and learn fast! :)

I have looked at the script. Altrough everything is done very nice i suggest using SETBYTE/SETWORD/SETLONG for setting 1/2/4 bytes. This way we don't have to use a variable.

So instead of:

code=x2c(000000C0)
setdata rc "code"

I would put:

setlong rc x2d(c0) /* or 192 in place of x2d(c0) */

It's a little bit faster and shorter. The diffrence we must know about is that setdata uses strings of chars (that's why you have used x2c()) where setbyte/setword/setlong uses decimal values (and that's why i have used x2d()).

But this is cosmetic, script is great!

PS. I should tell you that on techtronic.pl but this way maybe someone else will learn something too :).

thedogcow
05-07-2004, 06:29 AM
Actually i believe i posted a nokix script already in the main nokix thread! :P Good work though!

nEMO
05-07-2004, 11:50 AM
@thedogcow
Yes, you have right, you was first :P

@yak
thx for advices :D And here is v1.3 of my script ;)

Thx Yak ;)

NokDoc
05-07-2004, 01:50 PM
Hi,

Just some idea on clearing the U-shape logo:

Pixels of the U-shaped logo in bytes: 41413EC0

'41413EC0' Found at: 0011D394

1st step, clearing the logo:
At 11D394: change: 41413EC0 into 00C046C0

Add 20.0000 to our 11D394, and search where that is being called from:

'0031D394' Found at: 00122E4C

So at 122E4C: we can change the logo size to 1x1:
0031D394 0030CA6C 03 07
0031D394 0030CA6C 01 01

Maybe U wizzards wanna put that to the script too?

NokDoc

nEMO
05-07-2004, 02:59 PM
@NokDoc
Yes, I know that, but I can't do this script yet :P I must learn Regina REXX language better :D

@yak
Can you help me with this ??
I know that I must read the adres from RC,add 20000 to rc... then search this in flash... then read
this 0030CA6C 03 07
and change to this 0030CA6C 01 01.... but how :(

yak
09-07-2004, 03:56 PM
@ nEMO

Take a look at techtronic.pl forum. You will find a short REXX code that does the job you guyz are talking about.

@ NokDoc

Hi mate! We haven't talked for a long time now...
Anyway, what do you think about setting the U-shaped logo dimensions to 0x0 instead of 1x1? 1x1 is still one dot that may cause problems for some people...

nEMO
09-07-2004, 05:09 PM
@ yak
Thx !! :D here is v1.5 of this script :)

@ All
Read 'i' info !! to v1.5

mestrini
09-07-2004, 06:48 PM
thx nemo

this is so cool seeing another prog being developed by users also and not only by the creator :D

this way we can expect a longer life to it and better functionalities

of course, thx yak

gotta test it myself 8this way won't need to edit file before patching other scripts. can be done all at once :)

cheers

yak
12-07-2004, 06:32 PM
@ nEMO

Nicely done! I like those rc checkings :) This is what is missed in my scripts and that's why people get errors that don't tell anything (for example: address out of range (0) - even i don't know what it means :)).

Thanks for mentioning my help in script info :)).

@ mestrini

This was the goal. Modding is our hobby and one person don't have enough time to program all the things we can do today with dct3 phones. And writing scripts for NokiX is really easy and fun - ask nEMO :).

kraze1984
12-07-2004, 08:13 PM
@ yak
Thx !! :D here is v1.5 of this script :)

@ All
Read 'i' info !! to v1.5

Cool! I hope i'll have as much REXX knowledge at least as you have. To convert NetGraph to NokiX...

mestrini
13-07-2004, 02:47 AM
@ yak

i know it's fun... i've done one for my flash based on nemo's script :D

i needed to change the values of some zones and for that used a flash editor; but the problem is that it's one extra step and an extra flash to edit when some tiny things, like bitmaps, are changed (i save separate flashes along the modding process)

so i found out the start address of the zones table and the address of the X1,Y1, X2, Y2, values for each zone and created a script to write the new values at chosen address.
works like a charm... and i could even write my own 'say' text to display in the 'processing' window :lol:

if you don't mind i'd like to contact you to discuss an idea based on this script. can you e-mail me your address? thanks

nEMO
29-11-2004, 05:23 PM
here You have the newest version of my script :)
Read "i" info :]