PDA

View Full Version : Script Ideas - Only in this thread



Pages : 1 [2]

deadspot
09-01-2006, 01:37 AM
hi again....

can we include this in animated screen saver w/ temp diplay???

10x

deadspot
09-01-2006, 01:43 AM
can we use number key when selecting character map or symbols instead of up/down function???to many press when using up/down func...

10x again

spaceimpact33
09-01-2006, 02:38 AM
@deadspot
check improved_chars_dialog.nrx.

deadspot
09-01-2006, 04:27 AM
can we add this info in our phone just like capital cities.....from genesis to revelation....or old testament and new testament!

10x

deadspot
11-01-2006, 02:48 AM
can we convert picture viewer from list to grid type just like symbian phones!

10x

deadspot
11-01-2006, 04:02 AM
i think possible to have this function...we have now binary , decimal conversion if we can add,subract,multiply and divide binary or decimal function.

10x

deadspot
11-01-2006, 04:10 AM
can we add this function for calculator????


10x

deadspot
11-01-2006, 06:20 AM
can we add this function also???

ex.
sinh(30)deg

deadspot
12-01-2006, 01:03 AM
hi....

i think possible also to have small or big letters when making text messages like 2300....i noticed when pressing 111.... and so on it will fill the screen 2 layer of 1111 ...then it will changed small 1111...if they enter 3 layer

10x

deadspot
12-01-2006, 04:19 AM
we have software that can select keypad tone source ,buzzer output or
phone output?????....possible to have script for that function!

http://www.republika.pl/nokia_by_mf/

deadspot
14-01-2006, 02:42 AM
hi...
i think it is possible to have this script to select tones output of buzzer...
if someone can make combination of 2 tones much better..

we have software that can select buzzer tones...

10x

deadspot
14-01-2006, 08:56 AM
can we add other function????


Operations
The following operations are available through the menu system. Some of the operations are explained more thoroughly in the notes section.
Basic
- : Subtract x from y
* : Multiply x and y
/ : Divide y by x
+/- : Change sign of x
repeat : As a shortcut, this menu position repeats the last operation selected from one of the other menus. Some operations (e.g. "clear stack/mem/stat/finance") will not be repeated
Math
Simple
1/x: Calculate the reciprocal of x
x²: Calculate the square of x
√x: Calculate the square root of x
% : Calculate x percent of y. This operation leaves y standing, so you can add or subtract the result directly using + or -. To add 24% to 42, press "42", "ENTER", "24", "%", "+"
%chg: Calculate percentage of change from y to x, i.e. 100·(x-y)/y
Power
ex: Calculate the natural exponential
ln: Calculate the natural logarithm
yx: Calculate y to the power of x
x√y: Calculate the x'th root of y
10x: Calculate 10 to the power of x
log10: Calculate base-10 logarithm of x
2x: Calculate 2 to the power of x
log2: Calculate base-2 logarithm of x
Probability
P y,x: Calculate number of permutations (unordered subsets) when x elements is taken from a population of y
C y,x: Calculate number of combinations (ordered subsets) when x elements is taken from a population of y
x! : Calculate the factorial of x. For non-integer values, Γ(x+1) is calculated
Γx : Calculate the gamma function
erfc: Calculate the complementary error function, 1-erf(x), equal to the integral from x to infinity of 2/√π ·e-t² dt.
Matrix (*)
new: Create new matrix with y rows and x columns
concat: Concatenate matrix in y and matrix in x. Plain numbers can be concatenated into row vectors
stack: Stack matrix in y on top of matrix in x. Plain numbers can be stacked into column vectors
split: Split matrix in y at row or column specified by x. If x is positive, matrix is split horizontally after x rows. If x is negative, matrix is split vertically after -x columns
det: Calculate determinant of matrix in x. (This operation is just as slow as calculating the inverse by "1/x")
Tr: Calculate the trace of matrix in x, i.e. the sum of all the elements along the diagonal
AT: Transpose matrix in x
AT: Transpose and conjungate matrix in x
|A|F: Calculate the Frobenius norm of matrix in x, i.e. the square root of the sum of the squares of all the matrix elements. For row and column vectors this calculates the length of the vector
size: Pushes the number of rows and columns of the lowest matrix on the stack
aij: Pops the column (x) and the row (y) off the stack, then pushes the element identified by this row and column, taken from the lowest matrix on the stack
Miscellaneous
mod: Calculate y modulo x, i.e. subtract (or add) x from y until the remainder is between 0 and x. Works the same for negative x. Actually, y-x·floor(y/x).
div: Complementary to mod it calculates how many times x must be subtracted from y to get a remainder between 0 and x. Actually, floor(y/x)
random: Calculate a random number uniformly distributed in the range [0.0, 1.0)
factorize: Find greatest prime factor (of integer input less than 2³¹). This factor and the original number divided by the factor is placed on the stack... repeat! If input is not integer, it is rounded. If input is too large, the result will be nan (*). Factorizing large random numbers is fun: Press "31", "2x", "random", "*", "factorize", "factorize", ...
Integer operations
round: Round x to nearest integer
ceil: Round x towards positive infinity
floor: Round x towards negative infinity
trunc: Remove fractional part of x (round towards zero)
frac: Remove integer part of x, i.e. calculate x-trunc(x)
Trigonometric
Normal
sin: Calculate the sine of x
cos: Calculate the cosine of x
tan: Calculate the tangent of x
Arc
asin: Calculate the arc sine of x
acos: Calculate the arc cosine of x
atan: Calculate the arc tangent of x
Hyperbolic
sinh: Calculate the hyperbolic sine of x
cosh: Calculate the hyperbolic cosine of x
tanh: Calculate the hyperbolic tangent of x
Arc hyperbolic
asinh: Calculate the arc hyperbolic sine of x
acosh: Calculate the arc hyperbolic cosine of x
atanh: Calculate the arc hyperbolic tangent of x
More
RAD/DEG: Switch between radians and degrees as measure of angles
→RAD: Convert from degrees to radians
→DEG: Convert from radians to degrees
π: Enter the number π
Rectangular/polar coordinates
r→p: Convert rectangular coordinates (x,y) to polar (x=radius, y=angle)
p→r: Convert polar coordinates (x=radius, y=angle) to rectangular (x,y)
atan2: Calculate the arctangent of y/x, in the range -π to π (or -180 to 180 in DEG mode)
hypot: Calculate √x²+y²
r→cplx: Convert rectangular coordinates (x=re, y=im) to complex number
Complex numbers (available instead of coordinate menu if x or y is complex) (*)
cplx→r: Convert complex number to rectangular coordinates (x=re, y=im)
abs: Calculate absolute value (complex modulus) of complex number
arg: Calculate angle (complex argument) of complex number in the range -π to π (or -180 to 180 in DEG mode)
conj: Calculate complex conjugate
Bitwise operations (available instead of math/trig in HEX/OCT/BIN mode)
and: Calculate bitwise AND of x and y
or: Calculate bitwise OR of x and y
xor: Calculate bitwise XOR of x and y
bic: Bit-clear, clear all bits from y that is set in x, i.e. calculate y AND NOT x
y<<x: Shift up y by integer number of bits in x
y>>x: Shift down y by integer number of bits in x
not: Invert all bits in x. Fractional bits are ignored, i.e. the calculated value is x XOR -1
Special
Stack
LAST x: Recall value of x before last operation
undo: Undo previous stack operation. Memory, statistical and financial operations, in addition to clear stack, cannot be undone. In operations involving both stack and one of the other modules, such as x↔mem, only the stack is restored
x↔y: Exchange x and y elements of the stack
rolldn: Roll stack down (rolling with as many elements as is currently in the stack)
rollup: Roll stack up
RCL st#: Copy any stack location into x
x↔st#: Exchange x with any stack element (y is element 1)
clear: Clear the stack
Memory
STO: Store x in memory location
STO+: Add x to memory location. (Useful with memory monitoring for keeping score in a game ;-)
RCL: Recall memory location
x↔mem: Exchange x with any memory location
clear: Clear memory
Statistical
Σ+ : Add x and y to statistics
Σ- : Subtract x and y from statistics
clear: Clear statistics
Results
average
x,y: Calculate mean x and mean y values, i.e. Σx/n
xw: Calculate mean of x values weighted by the y values, i.e. Σxy/Σy
sx,sy: Calculate sample standard deviation of x and y values, i.e. [Σ(x-x)²/(n-1)]½
Sx,Sy: Calculate population standard deviation of x and y values, i.e. [Σ(x-x)²/n]½
draw: Draw data points and plot average
Linear regression: y=ax+b
a,b: Calculate coefficients, x=a, y=b
y*: Calculate estimated y for current x
x*: Calculate estimated x for current y
r: Calculate correlation coefficient
draw: Draw regression curve along with data points
Curve fitting: y=a·lnx+b
a,b, y*, x*, r: (see linear regression)
Curve fitting: y=b·eax
a,b, y*, x*, r: (see linear regression)
Curve fitting: y=b·xa
a,b, y*, x*, r: (see linear regression)
Sums
n: Recall number of statistics entered
Σx: Recall sum of x'es
Σx²: Recall sum of squared x'es
Σy: Recall sum of y's
Σy²: Recall sum of squared y's
Σxy: Recall sum of x·y product
Σlnx: Recall sum of lnx
Σln²x: Recall sum of ln²x
Σlny: Recall sum of lny
Σln²y: Recall sum of ln²y
Σxlny: Recall sum of x·lny
Σylnx: Recall sum of y·lnx
Σlnxlny: Recall sum of lnx·lny
Financial (*)
STO: Store x in financial register (pv, fv, np, pmt, ir%)
RCL: Recall financial register (pv, fv, np, pmt, ir%)
solve: Solve one financial value with respect to the others
pv: The present value in an account
fv: The future value after a certain number of payment periods
np: The number of payment periods
pmt: The amount of each periodic payment
ir%: The interest rate on the account per period (in percent)
clear: Clear financial registers
END/BGN: Switch between end of month payments and beginning of month payments
y%*x: Interest multiply. Convert from nominal x-times-a-year (e.g. monthly) interest rate to effective annual rate
y%/x: Interest divide. Convert from effective annual interest rate to nominal x-times-a-year rate
Conversions and constants
Time and date (*)
→H: Convert x, interpreted as date, hours, minutes and seconds (format yyyymmddHH.MMSS) to hours. If year (yyyy) is zero, the format is instead understood as ddddHH.MMSS, where dddd is number of days.
→DH.MS: Convert x from hours to date, hours, minutes and seconds. If x ≤ 8784 hours, it is instead converted to the format ddddHH.MMSS, where dddd is the number of days.
now: Get current date and time in DH.MS format. Useful to remind yourself how this format is
time: Get current time only in DH.MS format
date: Get current date only in DH.MS format
DH.MS+: Add x and y as date, hours, minutes and seconds
DH.MS→unix: Convert from yyyymmddHH.MMSS format to unix time
unix→DH.MS: Convert from unix time to yyyymmddHH.MMSS format
DH.MS→JD: Convert from yyyymmddHH.MMSS format to Julian Day
JD→DH.MS: Convert from Julian Day time to yyyymmddHH.MMSS format
DH.MS→MJD: Convert from yyyymmddHH.MMSS format to Modified Julian Day
MJD→DH.MS: Convert from Modified Julian Day time to yyyymmddHH.MMSS format
Metric conversions (*)
Length
in/cm: Enter the length of one inch in centimeters ≡ 2.54
ft/m: Enter the length of one foot in meters ≡ 0.3048
yd/m: Enter the length of one yard in meters ≡ 0.9144
mi/km: Enter the length of one mile in kilometers ≡ 1.609344
n.m./km: Enter the length of one nautical mile in kilometers ≡ 1.852
Weight
oz/g: Enter the weight of one U.S. ounce in grams ≡ 28.349523125
lb/kg: Enter the weight of one U.S. pound in kilos ≡ 0.45359237
ton/kg: Enter the weight of one U.S. short ton in kilos ≡ 907.18474
gr/mg: Enter the weight of one U.S. grain in milligrams ≡ 64.79891
Volume
cup/l: Enter the volume of one U.S. cup in liters ≡ 0.2365882365
gal/l: Enter the volume of one U.S. gallon in liters ≡ 3.785411784
pt/l: Enter the volume of one U.S. pint in liters ≡ 0.473176473
fl.oz/ml: Enter the volume of one U.S. fluid ounce in milliliters ≡ 29.5735295625
Energy
cal/J: Enter the energy of one international calorie in Joules ≈ 4.1868
Btu/J: Enter the energy of one British thermal unit in Joules ≈ 1055.06
hp/W: Enter the value of one horsepower in Watts ≈ 745.7
Temperature
°C→°F: Convert from degrees Celsius to degrees Fahrenheit, i.e. calculate x*1.8+32. This operation and the next are different from the others in the "metric conversions" module because they work as a function changing the x value instead of just entering a value on the stack.
°F→°C: Convert from degrees Fahrenheit to degrees Celsius, i.e. calculate (x-32)/1.8
°K-°C: Enter the difference between degrees Kelvin and degrees Celsius ≡ 273.15
Scientific constants
Universal
c: Enter the speed of light in a vacuum ≡ 299792458 m/s
h: Enter the Planck constant ≈ 6.6260693·10-34 J s
µ0: Enter the permeability of a vacuum, ≡ 1.256637061435917...·10-6 N/A²
ε0: Enter the permittivity of a vacuum ≡ 8.854187817620390...·10-12 F/m
Chemical
NA: Enter the Avogadro constant ≈ 6.0221415·1023 mol-1
R: Enter the molar gas constant ≈ 8.314472 J/mol K
k: Enter the Boltzmann constant ≈ 1.3806505·10-23 J/K
F: Enter the Faraday constant ≈ 96485.3383 C/mol
Physical and electromagnetic
α: Enter the fine-structure constant ≈ 0.007297352568
R∞: Enter the Rydberg constant ≈ 10973731.568525 m-1
a0: Enter the Bohr radius ≈ 5.291772108·10-11 m
µB: Enter the Bohr magneton ≈ 9.27400949·10-24 J/T
Atomic
e: Enter the elementary charge ≈ 1.60217653·10-19 C
me: Enter the mass of an electron ≈ 9.1093826·10-31 kg
mp: Enter the mass of a proton ≈ 1.67262171·10-27 kg
mn: Enter the mass of a neutron ≈ 1.67492728·10-27 kg
mu: Enter the unified atomic mass unit ≈ 1.66053886·10-27 kg
Astronomical
G: Enter the Newtonian constant of gravitation ≈ 6.6742·10-11 N m²/kg²
gn: Enter the standard acceleration of gravity ≡ 9.80665 m/s²
A.U.: Enter the length of one astronomical unit ≡ 149597870691 m
l.y.: Enter the length of one light year ≡ 9460730472580800 m
pc: Enter the length of one parsec ≡ 3.085677581305729...·1016 m
Mode
Number
normal: Set normal number mode, shows all digits but removes trailing zeros
FIX: Set fixed-decimal number mode, shows a fixed number of digits after the decimal point
SCI: Set scientific number mode, shows a fixed number of digits after the decimal point in scientific format
ENG: Set engineering number mode, shows a fixed number of digits after the decimal point in engineering format, i.e. exponent is a multiple of 3
Separators
point
. : Display the decimal point as a period
, : Display the decimal point as a comma
keep: Keep the decimal point even if no fraction is shown
remove: Remove the decimal point if no fraction is shown
thousand
. or , : Display thousands separator as period or comma (depending on decimal point)
space: Display thousands separator as space
' : Display thousands separator as '
none: Display no thousands separator
Programming (*)
new: Start entering a new program. If you pick a used entry in the menu that program will be overwritten
run: Run a program
clear: Clear a program
draw y=f(x): Draw program function y=f(x). Prior to using this operation, you should enter min-x, max-x, min-y and max-y on the stack, in that order
draw r=f(θ): As above, but this time the program calculates a polar graph r=f(θ), where the input is the angle and the output is the radius. Input will be in range [0,20·π], i.e. 10 "rounds".
draw z=f(t): As above, but this time the program calculates a parametric curve z=f(t), where the input t is in the range [0,1] and the output is a point in the (complex) plane
integrate: Integrate program function f(x). Prior to using this operation, you should enter the integration limits a and b, and the desired accuracy on the stack, in that order. a and b may be complex
diff.: Differentiate program function f(x). Prior to using this operation, enter the x you want to differentiate for, which may also be complex
solve: Solve program function f(x), i.e. find a root where f(x)=0. Prior to using this operation, enter two limits x1 and x2 on the stack, so that f(x1)·f(x2)<0
min/max: Find local minima or maxima in program function f(x). Prior to using this operation, enter two limits x1 and x2 on the stack, so that at the mid-point between x1 and x2, the function f((x1+x2)/2) is either greater or less than both f(x1) and f(x2).
Programming 2 (available while entering a new program)
finish: Finish entering current program
purge: Start entering current program from scratch. Faster than pressing "finish", "new" and selecting a free spot and a program name again.
Conditionals for programming
x=y?: Enter 1 on stack if x exactly equals y, otherwise 0
x!=y?: Enter 1 on stack if x does not equal y, otherwise 0
x<y?: Enter 1 on stack if x is less than y, otherwise 0
x<=y?: Enter 1 on stack if x is less than or equal to y, otherwise 0
x>y?: Enter 1 on stack if x is greater than y, otherwise 0
Utility operations for programming
abs: Calculate absolute value of x
max: Select maximum value of x and y
min: Select minimum value of x and y
select: Select y or z based on x, i.e. calculate x·y+(1-x)·z. With this you can e.g. simulate "max" by pressing "x>y?", "select". When selection criterion x exactly equals 1 or 0, y or z is copied directly instead of calculating it. This enables selecting away inf's and nan's.
sgn: Keep only the sign of x as ±1. With this you can e.g. simulate "abs" by pressing "ENTER", "sgn", "*". Also ±0 becomes ±1
Indirect memory operations for programming
RCL[x]: Recall memory location indirectly, using x as index (must be between 0 and 15).
STO[x]: Store y in memory location indirectly, using x as index.
STO+[x]: Add y to memory location indirectly, using x as index.
Base (*)
DEC: Set decimal (base-10) number mode
HEX: Set hexadecimal (base-16) number mode
BIN: Set binary (base-2) number mode
OCT: Set octal (base-8) number mode
Monitoring (*)
mem: Monitor first n memory locations in upper part of the display
stat: Monitor first n statistical registers
finance: Monitor financial registers
matrix: Monitor n rows from the lowest matrix on the stack
off: Turn monitoring off
System menu
Fonts (this menu is available if you have a color screen, otherwise system font is used)
small: Set small font
medium: Set medium font
large: Set large font
xlarge: Set extra large font
system: Set system font (should be mono-spaced, but this is not the case on T610)
exit: Exit the application. The the stack, memory, statistics, finance and programs will be saved until next time
reset: Reset the application and exit. All setup information, all values saved in the stack, memory, statistics, finance and all programs will be erased. You will be asked for a confirmation. Use this operation if you have gone through the setup dialogs and picked the wrong settings

with gpaphic and complex number capability

deadspot
14-01-2006, 09:06 AM
just like symbian phones appz can we duplicate this function???

Reject unwanted calls (blacklist feature)
rejects dialled #

deadspot
14-01-2006, 09:11 AM
just like symbian appz...can we make script for that appz!

Reject unwanted SMS!

deadspot
14-01-2006, 09:18 AM
idea:if someone calling us and i dont want to answer the phone ....i will activate busy tones or if i will activate the busy tone ,every time he/she called me it will heard busy tones!

deadspot
14-01-2006, 09:25 AM
idea again:possible to have script only numbers w/c are save in our SIM or phone accept the calls???

deadspot
14-01-2006, 09:29 AM
script that rejects all incoming call ....

heheheheh even your wife or GF...heheheh

deadspot
16-01-2006, 05:19 AM
just like symbian appz ....possible to have this script???

deadspot
16-01-2006, 05:24 AM
possible only on selected countries or cities???

just like this....

GeoViewX Feature List:

Intractive World Map - allows user to scroll across the world finding major cities

Major world cities with their latitude and longitude information

Find distance between any two points on the face of the earth

GPS enabled - location plotted on the map

Time zone information to find world time

Bearing and Speed shown as meaningful dials

GPS connection to Blue Tooth GPS receivers is automatic

Phone Blue tooth is used in secure mode, shutting down BlueTooth as soon as the application closes

deadspot
16-01-2006, 06:03 AM
can somesone make color combination output like primary and secondary colors

ex.
red+yellow=??

10x

deadspot
16-01-2006, 07:34 AM
can we change template messages w/ insult message w/ shortkey???

same as symbian appz!

Have your handset invent joke insults for you, as fast as you can click a button ! SMS them to your friends for a good healthy laugh ! (or tell them what you really think of them!)


With InstantInsult, you can have your phone automatically invent joke insults,

as in "Your freaked out pet fish tries to sell a pair of shoes in a cave!"

and you can SMS them to your friends for a good healthy laugh!

You can add more words to your InstantInsult dictionary so even more crazy

(or even personalized...)

insults can be created !

Requirements
200KB RAM

Compatible Devices

Nokia 3600
Nokia 3620
Nokia 3620-AT&T
Nokia 3620-Cingular
Nokia 3620-TMobile
Nokia 3650
Nokia 3660
Nokia 3660-AT&T
Nokia 3660-Cingular
Nokia 3660-TMobile
Nokia 6600
Nokia 6620
Nokia 6630
Nokia 6670
Nokia 7610
Nokia 7650
Nokia N-Gage
Nokia N-Gage QD
Nokia N-Gage-AT&T
Nokia N-Gage-Cingular
Nokia N-Gage-TMobile
Nokia Series 60

deadspot
16-01-2006, 09:33 AM
@druidbartek

can u add this function to your script..."distance from the Earth for each day"

just like this symbian appz!

My Moon Calendar

My Moon Calendar is a full featured moon calendar showing moon phase, age and distance from the Earth for each day. It is ideal for women who are frequently on a diet and who always wonder when is the best time to start it.
Each day can be marked as water, fruit or juice fast, which allows you to easily keep track of the diet.

deadspot
17-01-2006, 05:44 AM
i think possible to make script to schedule the time to turn on/off the lights of the phone...just like shutdown down time and turn on time!


just like symbian appz!...like this one!
Another feature allows you to set a day period during which the phone will light the display after any key activity. Thus, unlocking keypad in the night will be as easy as in the day

deadspot
17-01-2006, 06:50 AM
Are you borring w/ keypad locked/keypad actived "UNLOCK" + "*"...can we
change the combination...

deadspot
17-01-2006, 06:55 AM
just like symbian appz!

LockMe" also provides a way to protect your phone and its data in case you have lost it. By sending one SMS with the last 4 digits of the IMEI and a text, you will lock your phone remotely and the text will appear on the screen. So you can ask the conscientious person that finds the phone to signal you on another address/phone. Or you can use the feature in your own creative way. In case of a going phone call, your SMS will end the call before locking the phone, thus saving you a lot of troubles if the phone has been stolen

Main features description:


Keypad
Auto Lock period definition
"Light" day period definition. During it every pressed key will light the display, even in case of the keypad is locked
Easier unlock combination selection
Phone
SMS Lock Management. Enabling this function allows you to lock you phone from a distance just by sending one SMS
SMS Confirmation. If you enable this feature, after your locking SMS, the phone will reply with SMS containing its IMEI code and its location cell ID

SMS format:
Code Lock Text
where Code are the last 4 digits of the phone's IMEI code for security reasons. Lock is the command for the phone.Text will be displayed on the phone after the SMS is received.

Example: If you have a device with IMEI 352350-10-248688-8 and you want to display on the phone 'The phone has been forgotten! Please call +1887389675', you should send the following SMS:
6888 Lock The phone has been forgotten! Please call +1887389675

deadspot
17-01-2006, 07:38 AM
possible to have shutdown or shut off the phone after 3 hrs without any usage or idle within
a selected period of time ....just like alam set on even we turn off the phone!
(sleep mode )

10x

deadspot
19-01-2006, 02:19 AM
idea only:posibble to make constelation of star like orion,big deeper,big star etc etc,,,...

10x

deadspot
19-01-2006, 02:21 AM
possible to add this function in our calendar ....like comulus ,nimbus etc etc...

10x

deadspot
19-01-2006, 02:24 AM
idea: can we add this function for road sign like no turn,left turn ..and so on

10x

deadspot
19-01-2006, 06:23 AM
next idea:im thinking about automatic menu setting....for ex. if we left behid our cell in txt mode or in other menu like tones,game after a few seconds it will retun back to original menu...


10x

deadspot
27-01-2006, 12:09 PM
idea:possible to have script just like computer keyboard delete messages...we can use backspace and delete function knob....likewise in our
phone we can only delete message from end letters..


10x

deadspot
27-01-2006, 12:26 PM
just like symbian appz!!!

MyDiet helps you to set and achieve your nutrition and fitness goals. MyDiet applies a scientifically proven approach to weight loss: Eat less, exercise more. To lose weight, you must consume fewer calories than your body burns. It seems simple. But how much less? And how do you know you are achieving the proper levels of nutrition and exercise?

MyDiet provides the support and information you need, all in the palm of your hand. The Goal Wizard helps you set a daily calorie budget, based on your personal metabolism (calculated using the scientifically validated Harris-Benedict algorithms), weight-loss goals, and exercise level. Daily Meal and Exercise logging help you stay on track with your program. The handy MyDiet Today page gives you instant information on your daily activities, so that you can stay on target. The Weight Log and Chart provides positive reinforcement on progress towards your goal.

MyDiet is scientifically based throughout. Goal setting uses the Harris-Benedict algorithms to determine your metabolic rate based on your personal profile. Exercise logging uses data from the CCC to determine calories spent on over 50 diverse exercise activities, including aerobics, weight training, dancing, tennis, and many more. Exercise calories are calculated based on your profile (for example, a 200 pound man will burn more calories playing tennis than a 110 pound woman). The built-in calorie log includes over 600 items, and is based upon the official USDA Nutrition database.

The 6.0 version upgrade features numerous improvements such as integrated Backup and Restore, support for Metric system, enhanced user interface, greater performance and stability, bug fixes, Instant Activation, and more! Upgrades are FREE for registered users.

MyDiet gives you the proven tools you need to achieve your goals.

deadspot
30-01-2006, 04:51 AM
just like car alarm possible to have this function also???

10x

deadspot
30-01-2006, 10:35 AM
idea: can we add in received calls ,call duration/how many sec/min they talked to each other.

10x

deadspot
31-01-2006, 12:00 PM
idea:possible to freeze or stop the word "message not send" or "message failed"
so that we know what happend to our text message if we overlook the word "message send".

10x

spaceimpact33
31-01-2006, 01:37 PM
@deadspot

I might add this to my mail suite, Maybe even save the send status to the saved sent messages.:D

deadspot
01-02-2006, 02:24 AM
next idea:if someone missed call us ,we can saw the number of times he/she called us.But after we cancel the screen and the we go to missed calls it will show only time of call.Possible to have missed calls history so that we can know how many times he/she called.

10x

deadspot
02-02-2006, 05:30 AM
just like digital video camera....can we monitor the time/usage of bat before it will drain ex.how many minutes still the bat can deliver in calling???or
how about text message number we send???


10x

deadspot
03-02-2006, 09:48 AM
i think possible to display freq band in our screen
in our netmonitor 01 we can see what band we are using now...just like dvirus temperature already in screen...


ex.0~100 =900Mhz
100~700=1.8Ghz

10x

deadspot
03-02-2006, 10:50 AM
same as my previous suggestion possible also batt voltage display in screen??


10x again

deadspot
04-02-2006, 03:57 AM
idea:i know it its hardware modification ....every time we removed our batt in 3315 it will not save the clk/date setting.My suggestion possible to store our clk/date setting in RAM IC????

10x

deadspot
04-02-2006, 04:22 AM
i think possible to have this script....we will have 2 sub menu
1.normal values
2.text values(letters)

10x

deadspot
04-02-2006, 08:03 AM
pls. add 2 more profile setting headset and car .


just like 6150

10x

deadspot
07-02-2006, 05:18 AM
idea:can we have script for auto reminder in sms/text messages and balance account in our phone.....


10x

deadspot
07-02-2006, 05:22 AM
next idea:possible to select or switch which type of logo we want???
ex
providers logo like Tmobile vodafone
or
MMC+MNC ex. 51502

deadspot
07-02-2006, 05:26 AM
possible to increase sound volume of the phone ..let say vol 6,7,etc...

or
vol1 to vol 1.5 setting...before we go to vol 2

deadspot
07-02-2006, 12:22 PM
idea again : possible to have "number of send message" let say i have an option :
a.1 send
b.3 send
c.5 send and so on...

SmaRkieS
07-02-2006, 12:36 PM
just like in N2300 while your talking in the phone... can browse back to menu and check messages or send messages.. or maybe play game..

deadspot
08-02-2006, 08:22 AM
just like in 3330,3350.3410....in vibrating alert we have an option of
off
rhythm
vibra then ring
on

10x

SmaRkieS
09-02-2006, 06:57 AM
Just like in 2300...

Right key extra menu.
-Ring tones
-games
-volumes
etc.

deadspot
09-02-2006, 11:51 AM
just like in 3510i in calendar

pls. add this option
1.remider
2.call
3.birthday

10x

deadspot
10-02-2006, 04:52 AM
just like this symbian appz..

CimWireless.SMS.Automated.Responder


http://img231.imageshack.us/full.php...ponderd1ch.jpg

Main functions:

Automatically send an SMS reply to the received SMSes or calls. Reply could be default, personal or advised to group.

User can define the default reply message.

User can define personal reply messages to each person find from Contacts who has GSM number.

User can create groups consisting of bunch of persons find from Contacts.

User can define different reply message for each group.


Other functions:

User can view from log to whom and when the automated responses had been send.

Everyone, who doesn't belong to group or don't have personal reply message, will be sent default message.

When you once had defined a personal message, group or group message you don't have to define it again unless you don't want to do that.

SMS Automated Responder stores the personal replies and groups.

You can only change the messaging mode of one specific person to change the content of the reply message.

The defining of personal reply messages and groups and group reply messages are done when the SMS Automated Responder is in inactivated state. In inactivated state SMS Automated Responder don't reply to any calls or SMSes.
When you activate the SMS Automated Responder it activates the reply to any incoming calls and SMSes.

deadspot
11-02-2006, 12:40 AM
possible to make script to discharge the batt????

10x

SmaRkieS
12-02-2006, 11:14 AM
possible to make script to discharge the batt????

10x

hehehehe.. you can use the vibra_power script or any vibra script..... :-D

deadspot
13-02-2006, 02:13 AM
just like symbian appz!

Astrologer (Series 60), 3.0.2
by Total Wireless Solutions


A complete Astrology Software which gives you the option of using the 2 most popular Astro Sciences namely - Zodiac Signs & Numerology to know more about you and your Future.

Overview:
Astrologer provides you 3 options to choose from:
1. Zodiac Signs
2. Numerology
3. Today's Forecast

Zodiac Signs:
Contains typical information for each Zodiac Sign
1.PERSONALITY TRAITS
2.LIKES & DISLIKES
3.WHATs LUCKY:

Lucky Numbers
Lucky Colors
Lucky Days
4.IDEAL PARTNERS
It answers all your queries regarding:

Finance & Business
Personality and Mood
Profession
Physical Appearance
Love & Romance
Safety Measures
Accessories You should use
Numerology:
Here you get to know about your Nature, Ruling Planet and

Lucky Days
Lucky Colors
Lucky Stones
Lucky Flowers
Lucky Metal &
Lucky Numbers
it also tells you about the Diseases you are prone to and how to Prevent yourself from them.

Today's Forecast:
Here you get prediction about how your day is going to be, based on your Zodiac Sign.

deadspot
13-02-2006, 07:24 AM
just like samsung phone!...can we add the function of lights only when receiving text msg.


10x

deadspot
13-02-2006, 07:29 AM
again same as samsung phone...when checking ringing tone it will not stop playing until we cancel and change the tones.


10x

deadspot
15-02-2006, 11:57 AM
just like new phone of nokia can we add "split timing"


10x

deadspot
15-02-2006, 12:00 PM
can we add in profile...."pager" option??


10x

deadspot
15-02-2006, 12:01 PM
can we add caller groups like family,freinds,business and others...

deadspot
15-02-2006, 12:53 PM
can we add this function to game setting or import/duplicate warning tones setting to the games.

10x

deadspot
18-02-2006, 05:18 AM
can we make script for reset of sec.code ???

just like this symbian appz!

Phone Unlock

Some of us often forget the Lock Code of the phone minutes after the change. It is not such a problem any more. Phone Unlock resets phone’s Lock Code in case you don’t know it. The new code is the Phone Unlock Registration Key. You can first run Phone Unlock on your device and then register the program only after the successful reset of the Lock Code.

Note: The application may run up to one hour depending on the phone.


Requirements
Series 60 v2.0

Compatible Devices


* Nokia 3230
* Nokia 6600
* Nokia 6620
* Nokia 6630
* Nokia 6680
* Nokia N70

mestrini
18-02-2006, 10:14 AM
There is one already. in fact there are two, one allowing unlimited tries and another resetting security code to 12345 (or any other since script can be edited ;) )

cheers

deadspot
23-02-2006, 05:16 AM
like symbian appz

This application will help you to find the planets in the sky at night with your respective location

deadspot
23-02-2006, 05:19 AM
possible to have this script like barometer,altimeter and speedometer


10x

deadspot
27-02-2006, 11:49 AM
complete info about the phone!

deadspot
27-02-2006, 11:54 AM
just like symbian appz!

No need to bring them into your house when you can bring them into your phone. Turn your calls into a wildlife experience with the cackles, howls, and cockle-doodle-doos of the animal kingdom. Cows, sheeps, roosters, frogs, monkeys, cats, dogs, jaguars and a big old elephant, are all now available for your conversations. Inject their sounds one at a time, or play the entire zoo. It's your mobile. It's nature. It's Animal RAZZ.

deadspot
27-02-2006, 12:03 PM
possible to have this appz just like in symbian phones!

deadspot
27-02-2006, 12:50 PM
just like this symbian appz!

This is a simple program to help remind you not to sit too long. (Tested on Nokia 3650, 6630 and Siemens SX1)

You can also use it for many other purposes! Just set the alarm cycle time for your objective!

Sitting for long periods of time could probably cause many back and neck strains/pains. It is good to stand up and do some exercise between long hours of sitting. This program helps remind you not to sit too long. This version 1.0 of SitSatSat is FREE.

Bütyök
27-02-2006, 05:46 PM
Hi!

I like to send a ringtone in SMS.
(Let's a new menu called Ringtones inside Profiles menu with options key, and below options we can send the selected ringtone to other Nokia phones or we can Accept it to actual profile)

BR,Bütyök

deadspot
28-02-2006, 03:57 AM
like this one in symbian appz!

Night Clock

When the charger is connected, application switches to the Night Clock mode. In this mode, it shows current time in digital format, as well as charging progress stylized under phases of the Moon. Until charging is completed, backlighting is on and you can see current time almost from any place and angle. When charging is completed, NightClock mode is automatically disabled

deadspot
28-02-2006, 04:03 AM
possible some function???

Description:
The best all-round audio tool for the Nokia 3650/3660/N-Gage

Key Benefits
Feature-packed audio Spectrum Analyzer
Superb accuracy
Instrument tuner
Oscilloscope function

Feature List
Audio Spectrum Analyzer Bar/Color Bar/Line/Dot selectable display
1/1, 1/3, or 1/6 Octave display
Multiple level zoom in/out down to 1Hz range
Pan left/right
Decibel grid
Marker readout- seek max, move left/right, find next peak left/right
Pause function for closer signal inspection
Selectable windowing: Hanning, Flat-Top, Triangular or None
Max hold function- decay or max hold
Selectable Automatic Noise Reduction (ANR)

Oscilloscope Selectable Time Grid
Time readout in milliseconds
Freeze function for closer signal inspection
Zoom in function to view signal in best resolution
Pan left/right on zoomed-in signal

Tuner Aids in tuning any equal-tempered instrument
Works reliably from C2/C3 through to C8
Large note readout
large dial display for cents offset, color coded for ease of use
Better than 1 cent accuracy across entire range
Superb 2nd- and 3rd- harmonic rejection
Adjustable sensitivity level, with decibel readout

Backlight on/off feature for ease of use in any environment

deadspot
28-02-2006, 04:08 AM
can we add in rpn calculator???

KElectriKal v1.00 (KM Technologies) - 15 different Calculators organized for doing 30+ Calculations. Ohms law,Power, Horse power, RLC, Efficiency.Here is a full stop for all your Electrical Calculation worries.

deadspot
28-02-2006, 04:16 AM
possible???

NutriData (L3Solutions) - NutriData makes it easy for you to find reliable information regarding the nutrient, mineral, and vitamin contents of the foods you eat, organized into 21 categories -- including fast foods! NutriData is based on official USDA nutrient tables, so you can be assured of accurate values.NutriData provides 31 different measures for each food, including: Calories, Protein, Fat, Saturated Fat, Monounsaturated Fat, Polyunsaturated Fat, Cholesterol, Carbohydrate, Fiber, Ash, Calcium, Phosphorus, Iron, Sodium, Potassium, Magnesium, Zinc, Copper, Manganese, Selenium, Vitamin A, Vitamin E, Thiamin, Riboflavin, Niacin, Pantothenic acid, Vitamin B6, Folate, Vitamin B12, Vitamin C, and Water. Each nutrient value is presented according to typical portion amounts, with most foods having multiple portion sizes to choose from

deadspot
28-02-2006, 04:19 AM
possible like this???

MorseTexter (Nokia) - Nokia has filed a patent for an optical messaging system that can generate symbols and Morse Code, as well as decipher the information on the receiving end. They plan to equip handsets with a large light emitting matrix to generate scrolling or blinking symbols recognizeable up to four meters away. Phones using this technology will also come with a single, high-power LED than can be used manually to transmit Morse Code, which can be deciphered on the remote end using a cameraphone.Morse code is a system of representing letters, numbers and punctuation marks by means of a code signal sent intermittently. It was developed by Samuel Morse and Alfred Vail in 1835.Morse Texter is an app for Nokia/Symbian Series 60 phones for tapping in some Morse code and then sending it as as SMS

deadspot
28-02-2006, 04:21 AM
same like this symbian appz!


Lunar Eclipse ^f^ - This app will calculate the details of lunar eclipse of any year (maximum phase time, magnutudes, semidurations very accrately)

deadspot
28-02-2006, 12:22 PM
i think possible to have this script just like in 6510 ,when making txt msg and then press the option kindly add "insert name".

10x

deadspot
28-02-2006, 12:28 PM
from my previos post can we add this also in option menu????

10x

deadspot
01-03-2006, 12:47 AM
idea:i think possible to have this script.....We have now message alert tone for incoming message how about outgoing msg ??

10x

newknaber
01-03-2006, 04:16 PM
it is possible to make a script to reset security code like security mastercode generator besides mobile unlocker is possible they has also in symbian

this the site: http://nfader.z-host.ru/

tnx

mestrini
02-03-2006, 12:55 AM
read posts #312 & #313 of this thread ;)

Bütyök
02-03-2006, 09:17 PM
When I receive a SMS, let's display the number (or name) of the sender bottom of the "1 new messages received" message.

joci2000
02-03-2006, 11:23 PM
When I receive a SMS, let's display the number (or name) of the sender bottom of the "1 new messages received" message.

the new mail suite has this great function ;)

rhonnz
04-03-2006, 06:22 AM
Just asking if it is possible to add some sort of SPY Mode on SMS.. So that you will be able to send 2 SMS one on preprogrammed number and the other to the number the sender want to send..
Thanks

deadspot
08-03-2006, 05:13 AM
idea: possible to toggle or turn off the keypad leds only???...to minimized current consumption during morning or daylight.

deadspot
08-03-2006, 09:38 AM
idea:possible to reject or cancell all or selected incoming message???


10x

deadspot
10-03-2006, 03:21 AM
idea:possible to combine alarm setting status and spy mode???if we activate
sleep mode setting it will turn idle the unit but when when we receive msg and call it will turn on the diplay..

10x

deadspot
10-03-2006, 03:29 AM
next idea:i know it is network dependent....possible to have script even our phone is off .....we will know the # or whos calling us after we turn on our
phone...


10x

deadspot
10-03-2006, 05:32 AM
just like this symbian appz!

JavaMania's SimWatcher Helps Track Stolen Cellphones



Dutch company JavaMania has released a program for GSM mobile phones called SimWatcher, what it does is sends out an SMS message when someone replaces the SIM card in the phone. If your handset is stolen this is probably your only chance to find out the number of the thief to maybe get your phone back, so don’t set the SMS message to your own phone or you won’t have any luck.

deadspot
15-03-2006, 05:25 AM
same as symbian appz!!!


This app allows you to manage diferent Menu Profiles. You can save and restore your menu profile configuration when you want.

The menu profile is where are your icons and folders in your menu. Now, you dont need to reorder all your icons when format and reinstall all apps again. Just save the data in:

\system\apps\MenuPro\data\

In this folder will be your menus configuration.

Nice app.

deadspot
23-03-2006, 06:12 AM
possible???

Prepare for your important days or projects by knowing how many days you will have until a specified date. Get to know what DATE AND DAY OF WEEK it will be after a number of days. You'd probably don't want to count the calendar when there are like hundreds of days to count (or even less), but this app can count up to millions! Many other uses as well!

Improvements from V1.2:

- The new algorithm used in this version is NOT LIMITED TO JUST 1970 OR OTHER DEVICE-DEPENDENT LIMITS! This version can deal with dates thousands of years away, whatever the device. There are many important dates far away from our time!

- New quick date input replaces the device-dependent calendar chooser of the previous version.

- Two new practical functions: "Coming DayOfWeek" and "Previous DayOfWeek" for you to get answers to usual questions that might come to your mind like "what's the date for the coming Friday?" or "what's the date for the previous Saturday?" quickly and easily.

Twelve functions:

1. Now To Future: Enter a future date and find out how many days you have left until the date and what day of week is the date.

2. Past To Now: Enter a past date and find out how many days you had from date until now and what day of week is the date.

3. Between Dates: Enter two dates and find out how many days are between them.

4. Coming DayOfWeek: Choose the day of week (e.g., Saturday) and get to know what's the coming date for it instantly (e.g., the date for the coming Saturday).

5. Previous DayOfWeek: Choose the day of week (e.g., Saturday) and get to know what's the previous date for it instantly (e.g., the date for the previous Saturday).

6. Monthly DayOfWeek: List all the chosen day of week in each month (e.g., find out what date is the first, second, third... Monday in March 2004.)

7. Date -> Day: Enter a date and find out what day of week is it.

8. Days Plus Now: Find out what date and day of week will it be after an entered number of days.

9. Days Minus Now: Find out what date and day of week was it an entered number of days before today.

10. Days Plus Date: Find out what date and day of week it is for a number of days after a date.

11. Days Minus Date: Find out what date and day of week it is for a number of days before a date.

12. Leap Year Check: Find out if the year entered is a leap year.

deadspot
27-03-2006, 12:32 PM
i think already posted ...

possible????

Menstral (Menstrual Calendar) tracks and predicts your periods and fertile/infertile intervals. You mark your period on the calendar and the days change color to show fertility information.

deadspot
31-03-2006, 08:25 AM
idea: i think possible to make script when openning the phonebook and the light stay or dont turn off...it it good for dark or night time during calling to the land line..

10x

BlinK_
31-03-2006, 10:34 PM
i have few ideas for all the reverse engineerers and programmers. There are three or four separate scripts for turn on/ shut down animations/tones. Why not to make all these scripts use the same animations/tones database? We would definately save space.

Another idea is to broaden the variety of ringtones. Now nokia menu system only allows 71 menu object. So i cannot add more than 71 ringtones to my nokia. So making a script with unlimited ringtones like "1st ringtone, 2nd ringtone, ... , 70th ringtone, MORE..." is possible or not?

I was thinking of making a nokia to work as a radio station. Like communicating beetween each other via the radio waves. Is this posible? If not, why? What are the restrictions? I want to know as much info as possible.

As you noticed i am refering to nokia 3310. So any responce will be appreciated.

P.S. I was waiting for my activation email for about 2-3 weeks. Isnt it too long?

deadspot
03-04-2006, 12:56 AM
i think someone can make script for mic option
like ...mute mic or unmute mic

10x

deadspot
03-04-2006, 01:05 AM
idea: just like in mobile phone in japan like sharp (vodafon )or DOCOMO...when using the phone the lights normal bright but when standby the brightness will become dim(user setting ex. 5 sec, 20sec etc...) before it will turn off the light.

10x

deadspot
03-04-2006, 11:25 AM
i think possible to have counter in messages like in motorola phones...ex.
inbox...xx or outbox...xx

10x

deadspot
04-04-2006, 08:23 AM
just like symbian appz!possible????



Tired of regular dial tone when you are calling someone? Ringout Tone allows users to customize their own dial tone by selecting the ringtones or songs from the users' phones.

Instead of hearing the ringout tone, with this Symbian application, you can play your preferable music which can be any type of the music file when you are calling someone. (Note: the music file type must be supported by your phone device.) As soon as the recipient answers the phone call, the ringout tone is stopped right away.

deadspot
04-04-2006, 08:39 AM
idea same as symbian appz!script that counts down days,hours and minutes or can be set to count down time up to particular date

10x

deadspot
08-04-2006, 01:40 AM
same as motorola phones!....when selecting network we have 2 option automatic and manual if possible to add speed selection like low, med, fast selection


10x

deadspot
18-04-2006, 10:52 AM
hi again...

possible to have script for 82xx models to have IR test???

10x

deadspot
20-04-2006, 04:47 AM
possible????...heeheh

already have in symbian phones!

check this link ...http://www.binaural.com/binbb.html

NokDoc
20-04-2006, 04:35 PM
Hi Mr. Ds,

Sound in my opinion is always 3d, whetter it is mono, stereo or even 9 channels pro logic.

But to reply on Ur modding idea, I think it is not possible.

The 'suggestion' of this 3d sound is that processors do add effects, delay etc to the current sound input.

These extra processors, digital signal processors (dsp), are rather fast.

Without such extra dsp chip, the current phone's processor should generate these extra sound effects (bytes).

And this processor alone is not even fast enough to generate just normal sound.

(Technically, for 1 second normal cd quality sound, a processor should be able to generate 176.400 bits per second in realtime)

So, sorry, -Myth Busted- ;)

NokDoc

Zandis
01-05-2006, 11:28 AM
Have an idea.

Auto-scrool menu. If I hold down up or down button in menu, it auto-scrools (after relasing that button ;) ).

deadspot
04-05-2006, 01:49 AM
as the title appeared ,possible just like 3220 application?>>>>>???



10x

deadspot
04-05-2006, 04:35 AM
possible add this function like delay setting ...

ex.

5 mins
10 mins
etc...

10x

deadspot
04-05-2006, 04:39 AM
possible to add seconds in time???
ex.
HH :MM :S

just like in 3230

10x

Zandis
04-05-2006, 03:49 PM
Another idea.
If there is no sim card inserted, phone goes directly to main menu no showing that message: "Please insert sim card".

NokDoc
04-05-2006, 09:41 PM
Another idea.
If there is no sim card inserted, phone goes directly to main menu no showing that message: "Please insert sim card".

Hi,

http://nokiafree.org/forums/t62913/h/s.html

U mean like this?

NokDoc

Zandis
04-05-2006, 11:42 PM
Yes, I mean like that, but only it should be automatic not manual :)

deadspot
05-05-2006, 09:03 AM
just like new dct4 phone (3220) when keypad locked ,it will light when pressing menu and cancel button .Unlike in dct3 when keypad locked it will not light any button unless you press menu and *

10x

deadspot
06-05-2006, 01:38 AM
hi....

idea: possible to have script for conversion of 3310 to 3315 without using mbus cable????


10x

Zandis
06-05-2006, 09:32 AM
I don't get it. Why do you need such thing if to apply that "mod" you will need to use MBus cable?

Zandis
06-05-2006, 02:13 PM
OK, another idea. /x03 as Class 0 SMS ;)

nuukiaworld
09-05-2006, 09:11 AM
A script that monitors the current cell ID and silenty sends the MCC, MNC, LAC, CID values (available e.g. on netmonitor page 11) as an SMS whenever the cell changes. Sending the messages would be completely silent and does not affect the phone operation so that the thief continues to use the phone normally. (May be you don't need to find your old DCT-3 phone but the more valuable things stolen at the same time.)

This tracking mode would be activated if the SIM differs from the one specified during patching. This happens when the thief starts use his own SIM card after the stolen SIM has been blacklisted.

The destination number for the messages would be fixed (specified during patching) so that there is no way to disable or stop this tracking without re-flashing (or starting to use the original SIM again).

I could try writing this kind of script but I am so busy at least during the summer so that I write this idea here. May be some else want to try writing it. ;-)

dvirus666
09-05-2006, 12:14 PM
A script that monitors the current cell ID and silenty sends the MCC, MNC, LAC, CID values (available e.g. on netmonitor page 11) as an SMS whenever the cell changes. Sending the messages would be completely silent and does not affect the phone operation so that the thief continues to use the phone normally. (May be you don't need to find your old DCT-3 phone but the more valuable things stolen at the same time.)

This tracking mode would be activated if the SIM differs from the one specified during patching. This happens when the thief starts use his own SIM card after the stolen SIM has been blacklisted.

The destination number for the messages would be fixed (specified during patching) so that there is no way to disable or stop this tracking without re-flashing (or starting to use the original SIM again).

I could try writing this kind of script but I am so busy at least during the summer so that I write this idea here. May be some else want to try writing it. ;-)

I already made a script that checks the SIM card ID which is different on all SIM cards. I would make the rest but not sure on the sms sending rountine.

deadspot
10-05-2006, 12:28 PM
i think possible to have this script w/ option of enng or field test etc...

10x

deadspot
17-05-2006, 01:19 PM
hi....

this new phone from nokia 5500....which have the function of "check the status of your friends before you call them."

10x

spaceimpact33
17-05-2006, 03:46 PM
@deadspot
These functions in the newer generation dct-4 nokia's are based on tcpip over pgsm packet data (GPRS) and are also network dependant. GPRS AFAIK requires hardware and gsm functions to be changed in dsp ect, this is a verry un documented and unkown area of dct3 development and i doubt we will ever see gprs on a dct3 handset.

BlinK_
17-05-2006, 08:01 PM
A script that monitors the current cell ID and silenty sends the MCC, MNC, LAC, CID values (available e.g. on netmonitor page 11) as an SMS whenever the cell changes. Sending the messages would be completely silent and does not affect the phone operation so that the thief continues to use the phone normally. (May be you don't need to find your old DCT-3 phone but the more valuable things stolen at the same time.)

This tracking mode would be activated if the SIM differs from the one specified during patching. This happens when the thief starts use his own SIM card after the stolen SIM has been blacklisted.

The destination number for the messages would be fixed (specified during patching) so that there is no way to disable or stop this tracking without re-flashing (or starting to use the original SIM again).

I could try writing this kind of script but I am so busy at least during the summer so that I write this idea here. May be some else want to try writing it. ;-)

Great Idea. I have something like that in my motorola E398. When someone inserts other SIM than specified, then mobile phone silently sends SMS to the specified number. But there is no Cell ID tracking. I wish there would...

deadspot
20-05-2006, 01:13 AM
hi....

when u set security in phonebook ,u cant access but when u used navi key down u can see ur contact .My request is to put also security for down button...

10x

deadspot
25-05-2006, 09:38 AM
hi...

idea:can we add script for dialed Number??
when we press the # we can see in te navi key call only .my suggestion is to add number option...
ex
xxx + phonebook number

because when dialling a number, we need to memorize or write the prefix number+ phonebook no.

10x

deadspot
30-05-2006, 12:40 AM
hi all....


can someone include codes for nokia or other brand in the unlocker script...

like :

master reset:*#7378#
hard reset :*#7970#
phone reset :*#7979#
etc


10x

deadspot
30-05-2006, 05:17 AM
possible????like symbia appz!!!

This application allows creating lists of ringtones played randomly at each incoming call. Make your smartphone more attractive and ringtones - more sophisticated!


RandomRingtone application allows creating and editing "random ringtones". Each "random ringtone" represents a list of ringtones (any sound files you can normally use as ringtones as well as video ringtones), one of which will be played randomly at each call. Intuitive and simple user interface lets you easily create and edit "random ringtones".

After you created a "random ringtone" you have to set this file as ringtone for a profile or for a contact of your choice.

deadspot
31-05-2006, 06:07 AM
hi...


just like newer phones like 1100 ....theres an option which have clear text rather than pressing "C" key longer to delete our message..

i think possible to have this script!

10x

deadspot
31-05-2006, 06:12 AM
i think it was discuss long before but now maybe possible to add numbers+letters in phonebook


ex.

name: jose
tel #: 14344

new :

jose143
tel #:1gdgg=14344

10x

LoMaster
03-06-2006, 10:25 PM
It would be nice to have an option in the screen saver script to leave network and/or battery bars visible. This would be especially useful when charging (one can easily see if the charging is complete), and also in regular use.
Thanx!

Bütyök
07-06-2006, 07:47 PM
Have an idea.

Auto-scrool menu. If I hold down up or down button in menu, it auto-scrools (after relasing that button ;) ).

It's in 6110 already works.

soulhd
08-06-2006, 09:34 AM
Hi everybody... :grin:
I'm wondering if there's anyone scripting for Nok DCT3 to be able to send SMS _at_ specified time. So, we first compose the message and then we got option not to send it immediately, but we specify the date and time the SMS to be sent later, instead.

I'm planning to script it myself to be my first script to share with you all, but I don't understand the ARM programming. I'm familiar with VB, is there any documentation for me to start learning? I need Nokia's ARM constants, functions, or APIs.

So, @Mr. Yak, spaceimpact33 or other Nokix experts, plz give me links or documentation to start :-)

joci2000
08-06-2006, 10:06 AM
on NokiX site you can find an usefull sdk for dct-3 in help section. :wink:

deadspot
08-06-2006, 10:22 AM
Hi everybody... :grin:
I'm wondering if there's anyone scripting for Nok DCT3 to be able to send SMS _at_ specified time. So, we first compose the message and then we got option not to send it immediately, but we specify the date and time the SMS to be sent later, instead.

I'm planning to script it myself to be my first script to share with you all, but I don't understand the ARM programming. I'm familiar with VB, is there any documentation for me to start learning? I need Nokia's ARM constants, functions, or APIs.

So, @Mr. Yak, spaceimpact33 or other Nokix experts, plz give me links or documentation to start :-)


welcome here....we are expecting ur great script!

deadspot
13-06-2006, 12:21 AM
hi....

possible to read pin2 of SIM card????just like dvirus script which read pin1 of SIM..


10x

deadspot
13-06-2006, 02:50 AM
idea:i dont know if there is cache memory of CPU like 3310
if applicable possible to increase the memory???


10x

deadspot
13-06-2006, 04:30 AM
same like symbian appz...

deadspot
15-06-2006, 08:37 AM
@spaceimpact33

hi sir can u add or intergrate ur mailsuite to phonebook memory to the phone not only in messages.....


thanks in advance

joci2000
15-06-2006, 01:13 PM
hi....

possible to read pin2 of SIM card????just like dvirus script which read pin1 of SIM..


10x

in my opinion it doesn't read it just shows what you typed at startup. If you write pin2 after you started the phone pin2 will be shown. They use the same memory address for storing pin.

deadspot
15-06-2006, 01:29 PM
just like mailsuite of SI33 ,when someone send u a message it will automatically or pop out the number /name of the sender....
how about missed call it will show automatically the name / number of the calling party...

10x

deadspot
17-06-2006, 01:55 AM
idea:possible to make script that we can personalized the serial # of ur phone just like *#0000# nokia model code/software version....but the provider still detect ur orignal SN # like 35xxxxxxxxxxxx also if we want to read in Mbus still the original SN # will appear...


10x

Daryl Saludares
29-06-2006, 01:21 AM
a script that can control the backlight "dimmer_script.nrx". the idea is to minimize at a minimum the battery consumption while using the backlight. vibra and lcd contrast is controllable now, how about backlight dimmer?

10q

deadspot
14-07-2006, 01:45 AM
hi....

can we have vibra menu option

like this:
1 vibrate
2 vibrate
...
continous vibrate


10x

deadspot
14-07-2006, 02:56 AM
hi again...


same as SE phone when playing tone it change automatically no need to press down button...


10x again

deadspot
28-07-2006, 01:27 PM
hi all....

possible to make script like this...

http://www.tapgsm.com.ph/showthread.php?t=30772&page=3

deadspot
28-07-2006, 01:32 PM
another one....

deadspot
01-08-2006, 04:11 AM
hi ...

just like 6210 can someone make script for message sent default #..


10x

Donkro
01-08-2006, 04:01 PM
@deadSpot

Whee should i get it

deadspot
02-08-2006, 12:11 AM
i think its not free.....maybe u can contact the author...

or u may use this....its free

http://www.tapgsm.com.ph/showthread.php?t=31600

deadspot
02-08-2006, 12:16 AM
hi to all...

just like DCT4 phone possible to have warning message like this:

"Memory All Most Full" or Message Inbox All Most Full"



10x

deadspot
02-08-2006, 09:06 AM
hi again....

possible to make script w/ different message tone per person????

ex.if i have many girlfrieds...hehehheehe
GF1 assign message tone1
GF2 assign message tone2
and so on.....


10x

deadspot
02-08-2006, 09:11 AM
hi again...

just like N70 function...when we want to change from "ON" to "OFF" or vice versa...we need to press menu 2x , no need to scroll up/down.

10x again

deadspot
08-08-2006, 08:48 AM
just like symbian phone....

can we make this function..

ex.
no log
1 day
3 days
etc...

10x

deadspot
08-08-2006, 11:56 AM
hi....

we have script for incoming/outgoing calls counter , how about call timer for incoming/outgoing just like SE phones!

10x again...

deadspot
10-08-2006, 08:13 AM
hi....


script for name list then automatically /switching/ changes to cell number...

just like SE phones!

10x

deadspot
14-08-2006, 09:29 AM
hi..

present write message:

1.write message then send then phone number

new idea just like symbian phones!

2. phone number/name then write message then send

thanks

deadspot
04-09-2006, 02:16 AM
hi...

just like N70 phone when setting to alarm it will state or show remaining time left.

ex.

time :6 AM
alarm : 12 PM

it will show 6 hours remaining

10x

deadspot
07-09-2006, 11:29 AM
like this proggy....can we add script for more function in dct3


Functions:

-ADC (Analog - Digital Converter) values reading implemented.

Could read phone's :

Battery Voltage;
Charger Voltage;
Charger Current;
Battery Size Indicator;
Battery Temperature;
Headset Interconnection;
Hook Interconnection;
Power Amplifier Temperature;
Initial Battery Voltage.

-Blinking LCD lights test (works on selected dct4 units).


LCD pattern test....

Alignment pattern
All pixels off
All pixels on
Alternate pixels
Chess pattern
Contrast pattern
Inv. alternate pattern
Inv. chess pattern




1).Reads
MCU Software version;
Security Code (edit/change);
RFIC version;
PDC;
PPM version;
IMEI Spare to net;
IMEI SV to net;
UPP version;
Product code;
Production SN;
LCD version;
DSP version;
UEM version;
HW version;
and Simlock data.

2). Tests
Self Test (not yet fully operational );
Vibra Test;
Lights Test;
Buzzer Test;
Factory resets;
and could change operation mode to LOCAL,TEST and NORMAL modes.

Now microphone gain adjustment is implemented:

-Could set mic gain of the unit to default value
or higher value if needed, when tx audio is
weak;

10x

deadspot
07-09-2006, 11:52 AM
also like this proggy....



Phone Mode
LOCAL,TEST,NORMAL and RESTART

Direct Power ON Button
(no need to press power button manually)

Fast Scan Product Button
(used for detecting if phone is attached)

Restart Box Button
(in case of abnormal use of program press restart box)

Read Complete Phone Information Such As;

- MCU SW Version
- PPM Version
- HW Version
- PCI Version
- UEM Version
- UPP Version
- RFIC Version
- DSP Version
- LCD Version
--
- Product Serial Number
- Product Code
- Basic Product Code
- Module Code
- Flash Code
- Order Number
- Long Production Serial Number
- ATO
--
- IMEI Plain (OTP)
- IMEI Spare 2 Net
- IMEI Sv 2 Net
- PDC
--
- SIMLock Config
- SIMLock Profile
- SIMLock Var
- SIMLock Aux
- ASIC Type
--
- MasterCode
- Security Code
- MCU Checksum

Product Edit

- Product Code / allows you to change in alphanumeric Maxlength(8)
- Basic Production Code / allows you to change in alphanumeric Maxlength(8)
- Order Number
- Production Serial Number / allows you to change in alphanumeric Maxlength(10)
- HW Version / Maxlength(4)

Product Type Tune
(Single Click Button)

- Convert CDMA RH-17NA > R, RH-46 > RH-48, etc...

MMC Reset
(Could Unlocked and Erased Memory Card with Password Protected sometimes can fix also MMC Corrupted)

Write Product Profile

- allows you to write product profile to phone

Contrast Settings
- Selectable Range: 0-255 / view with [hex value]

Read Permanent Memory

- Read important gsm in pm

Factory Reset

- Set Full Factory
- Set Full UI
- Set UI Factory
- Software Upgrade
- Service Center
- Production Tune
- Force User Code

Direct Reset LifeTimer Button
(reset phone lifetimer without loosing any data on phone and very fast resetting.. tested already on most DCT4/WD2/BB5 also in 11xx phones)

Format File System
(for now only in Drive C of the phone thats support to format.. i promise soon it will support in high-level/low-level formatting)

1st in the World myTools support with all usb memory card reader
allows you to format MMC Cards using your personal computer.

After you format you will see a folder in MMC Cards

- Images
- Nokia
- Nokia\Install
- Others
- Sounds\Digital
- Sounds\Simple
- Videos
- System [hidden folder]

!! Meaning parehas siya mag format ng mga symbian phones !!
- Advantage specially in 6600,3650,3660 or yong ibang phone
na mababagal mag format ng mga high capacity mmc cards 512/256, etc...
automatic na siya gagawa ng mga folders like in symbian phones.

Phone Test

- Selectable Vibra Test
Range: 0-255 / 00-FF / Slow to Fast

WatchDog Timer
(it helps you for testing of nokia phones dct4/wd2 to check if phone
restart in 32 seconds and maybe 48 seconds)

Microphone Gain
Range: 11-255 / 0F-FF

Selectable Buzzer Test
From Low to High Pitch
(you could hear something like DO RE MI FA SOL LA TI DO)
Range: 0-255 / 00-FF

LCD Pattern Test

- Alignment Pattern
- All Pixels Off
- All Pixels On
- Alternate Pixels
- Chess Pattern
- Contrast Pattern
- Invert Alternate Pixels
- Invert Chess Pattern

- LCD Lights
- Keypad Lights
- Blinking Lights

Selectable Brightness Settings
Range: 0-255 / 00-FF / view with [hex value]

IMEI Tool

DCT4 IMEI Patching (For educational purposes only)
allows you to patch on most DCT4 Phones.

- Auto-Generate CheckBox ; Uncheck if you want to enter
IMEI Manually
- Scan Phone ; it helps you do detect if phone is supported

deadspot
08-09-2006, 07:24 AM
just like ngage application...

can we patch to increase the size of RAM

10x

http://www.iphone-forum.org/symbian-s608090-apps/t-100kb-ram-patch-120955.html

deadspot
12-09-2006, 04:19 AM
hi....

i dont know if already posted ....


possible to make script for generating the PUK code of SIM card...i know only
service provider have secret code..

just like sec. code,openline or unlock only imei needed....

at the back of SIM card there is Serial number maybe we can generate or make algo for resetting the PUK...heheheheh

10x

Burungi
13-09-2006, 01:01 PM
* fake call *
Set date, time, ringtone and phonenumber (or partner/phonebook entry) and get calls whenever you want. :)

deadspot
26-09-2006, 12:23 PM
hi

possible to this script???

deadspot
26-09-2006, 12:24 PM
hi

possible to this script???

deadspot
02-10-2006, 04:12 AM
hi to all..esp.mr.indear

possible to upgrade our unlocker to have asic 11

ex.

nokia 2610 asic 11


10x

deadspot
02-10-2006, 04:19 AM
hi...

need our 3310 become powerful nokia phone....

possible like this???

c5_monster
13-10-2006, 09:24 AM
Hey I found a site that can teach you how to use the T9 Dictionary on you phone. T9 Tutorial (http://www.t9.com/learn/) :razz:

deadspot
14-10-2006, 05:25 AM
hi...

not only recive message w/ tones...possible also when message transmit or send..


10x

deadspot
14-10-2006, 09:00 AM
idea only from other forum....


usage:

Send SMS with following syntax from your mobile phone to +ZZZZZZZZZ (provided by us). After your message is sent to SMSC you will receive confirmation message with remaining balance.

SMS syntax:

+XXXXXXXXX>+YYYYYYYYY: Message text

where +XXXXXXXXX is desired SMS originator and +YYYYYYYYY SMS recipient.

Message text + SMS originator + SMS recipient must not exceed 160 characters.

http://gsmhosting.com/vbb/showthread.php?t=289146

deadspot
16-10-2006, 10:18 AM
hi....

just like N70 function can we make script for light duration from 1 sec to 5 minutes.This one different from fading it will automatically turn off the lights.

10x

ex.
if we set to
1 sec
30 sec
1 min
etc....

deadspot
27-10-2006, 09:17 AM
hi...

another idea.....!!!! possible to have script w/c limit only one network to send sms or call....but when receiving call & text it will accept any network...

here i our country we have unlimited text for 1 day to 5 days but if you send accidentally 1 msg to other network you will loose ur unlimited txt....

deadspot
27-10-2006, 09:51 AM
hi,,,,

possible to have auto profile base on time????

ex.

nyt time :
silent mode

day time:
general

or

base on every hour???

ex.
6AM to 12PM
silent mode
1PM to 6Pm
general
6PM to 12AM
loud or set ur own profile

and so on...

or base on calendar...

ex.

jan...general
feb...loud

etc...



ty

deadspot
04-11-2006, 06:04 AM
hi...

just like this symian appz...


SMSAlert is an application designed for Symbian Series 60 phones which can associate different tones to different SMS senders. SMSAlert can also be used to mask the SMS ring tone for any given contact by substituting the default tone with silence. This feature makes applications such as MumSMS even more effective. Both system tones and gallery tones can be associated.


http://www.ipmart-forum.com/showthread.php?t=129935

deadspot
06-11-2006, 02:11 AM
hi....
i think already posted here....

WomanMobile is a medical calendar for the S60 platform designed to assist women in keeping accurate records of their menstrual cycle. It is also a handy assistant when it comes to contraception, family planning and getting control over one's body... and life.


Menstrual Calendar
The software predicts the future menstrual cycles and ovulation periods. You can keep track and view in a glance information on:
Menstrual Cycle Days
Ovulation Days
Future Cycles



Daily Diary
Keep the important information about your body and life in one safe depository. With Woman Mobile your can record daily information of your
Basal Temperature
Sex Intercourses
Protection
Doctor Appointments
Personal Notes
Moreover, Woman Mobile allows you to see visual charts of your menstrual periods and temperature.
Your diary, charts and notes are password protected and encrypted.


Assistance in Everyday Life at Hand
Woman Mobile is also indispensable help when it comes to:
Planning of vacations or travels, sport competitions, and special events- Now you will always know the time when you will not be having your period and plan your activities.
Natural Family Planing- your fertility periods are determine by your ovulation. The software will calculate your fertility days and indicate them in green.
You Life- if you have heavy PMS you will be prepared when to expect bad disposition and the upcoming emotional changes, and plan your life accordingly.
Sex Life- if you are dating it will be good to choose the appropriate time for a special night.

http://www.ipmart-forum.com/showthread.php?t=130415

deadspot
10-11-2006, 04:16 AM
hi...


possible like this ....

Night Clock

When the charger is connected, application switches to the Night Clock mode. In this mode, it shows current time in digital format, as well as charging progress stylized under phases of the Moon. Until charging is completed, backlighting is on and you can see current time almost from any place and angle. When charging is completed, NightClock mode is automatically disabled.


http://www.ipmart-forum.com/showthread.php?t=76464

deadspot
10-11-2006, 04:25 AM
hi to all esp to mr.yak...

possible to intergate flashlite software from macromedia to nokix????

10x


Flash Lite is the Flash technology specifically developed for mobile phones and consumer electronics devices. Flash Lite dramatically accelerates the delivery of rich content and browsing, and customized user interfaces. Designers and developers now have a new level of expressiveness, efficiency and interactivity for content creation.

http://www.macromedia.com/mobile/gallery/

http://www.macromedia.com/cfusion/ex... te%20Exchange


http://www.ipmart-forum.com/showthread.php?t=92134&highlight=flashlite

deadspot
10-11-2006, 04:41 AM
....dvirus made block unwanted calls how about sms????


possible like this????

Best SpamKiller version 1.00

Be protected against SPAM and unwanted persons! Learn how to stop junk messages on your phone. Best SpamKiller is the easiest way to eliminate spam effectively. Discover the safe way to stop unwanted messages that get to your smartphone. It also can be used as an excellent privacy tool.


Features and benefits


Analyse. Best SpamKiller analyses every incoming message as it arrives, checking and filtering it if it is suspected to be a junk message. It uses a customizable list of blacklisted senders numbers and even content filters to filter out potential spammer messages.

Delete. Automatic deletion of unwanted messages. When a junk message arrives you won't be disturbed by a message alarm. You even won't know about junk message. Best SpamKiller will handle it. Your time is only your time, don't waste it on spammers.

Friends List. Add your friends addresses here and they will always be recognized.

Log. Curious how much spam comes to your phone? Or want to be sure that no non-spam message is blocked? Then Best SpamKiller log is for you. Here you find messages deleted by Best SpamKiller. You can even define for how many days a deleted message should be kept in a log. After this time a junk message will be automatically and permanently removed from your phone not to waste your device space.

Easy to use. The user interface is very simple and easy to understand and allows you to create and manage custom messaging filter rules in seconds.

How to start



After starting the program you'll see the main program view. By pressing the right arrow button you'll switch to the list of automatically deleted messages (log), by pressing left button you'll switch back to the main view.

Main view (Filters view) consists of the filters list. Only one filter called 'Friends' is set by default.

Friends list: Add your friends (trusted) addresses here and they will always be recognized. You'll always receive messages from persons defined in this list regardless of other filters. Like any other filter 'Friends' filter has to be activated to start filtering messages.

Adding new filters.

To create a new filter use 'Add filter' submenu. You can create 2 kinds of filters:

• Correspondent filter - in this filter you define a list of known spammers addresses. All messages coming from addresses listed here will be blocked by Best SpamKiller automatically (if this filter is activated and the filter behaviour is set to BlackList). In this filter you can list persons from your contacts book, groups of persons from your contacts book or simply custom phone numbers.

• Text filter - content filter allows you to filter out potential spammer messages. In Text field you should specify keyword or keywords that Best SpamKiller will try to find in all incoming messages. If they are found the message will be blocked (if this filter is activated and filter behaviour is set to BlackList)

As a text you need to specify an exact keyword you want to filter out! All spaces are counted as well. You can use a combination of some keywords in one filter, uniting them with '&'-character. If so, all keywords listed in a filter have to be found in target message for the message to be blocked automatically.

Example of text field:
• Viagra - if 'viagra' word is found in any place of the message then the message will be blocked

• Viagra&Order - if BOTH words 'viagra' and 'order' will be found in any place of the message, in any order, etc, the message will be blocked (Message example: 'Preorder the cheapest viagra today! ...')

Hint: you can have any number of content filters. Best SpamKiller will apply all activated filters to the incoming message and if at least one filter blocks the message then it will be filtered out automatically.



You can set up behaviour for each filter. There are 2 types of behaviours:
• BlackList - Default one. If a sender address is found in Correspondent filter or a filter keyword is found in a message (content filter) then the message will be blocked.

• WhiteList - Good to be used when you want to use Best SpamKiller as a privacy tool. E.g. if Correspondent filter has WhiteList behaviour it will block all messsages from all senders except the ones listed in this filter.


Remember: you MUST activate a filter for it to be applied in filtering messages. To activate a filter, select it, press joystick or use menu 'Enable filter' command in the menu. To deactivate a filter press joystick again on an active filter or use 'Disable filter' command in the menu. 'Friends' filter is not an exception to make it work it must be activated as well.

To allow Best SpamKiller to analyse your incoming messages and filter spam you should turn it on. You can turn it off again any time if you want to stop Best SpamKiller activity.


Annoying spam will never disturb you again with Best SpamKiller!


http://www.ipmart-forum.com/showthread.php?t=130622

deadspot
10-11-2006, 05:28 AM
hi...

just like toshiba 803 from japan cell...possible to add on and off function for
low batt notification....i dont like warning tone to be on condition....

10x

deadspot
14-11-2006, 04:49 AM
hi,,,

good for engineers and technician....


color coding of resistor...


http://www.ipmart-forum.com/showthread.php?t=131418


10x

deadspot
17-11-2006, 01:08 PM
hi...

can we make script for power supply alculator for PC???

like this..


http://extreme.outervision.com/psucalculator.jsp


10x

deadspot
20-11-2006, 01:03 AM
hi....


can we modify the function of erase message all even messages not yet read???

10x

deadspot
21-11-2006, 04:31 AM
hi....

improve picture message viewer no need to open one by one like picture1 then exit picture2 the exit and so on...

my suggestion is only scroll up/down you will the picture just like screen saver message..


10x

deadspot
21-11-2006, 04:45 AM
hi....

just like ordinary clock w/ every hour bells or sounds
like ding dong

same as this remind missed script!

10x

deadspot
23-11-2006, 09:19 AM
hi...

just a suggestion....

My Moon Calendar 1.03 is a full featured moon calendar showing moon phase, age and distance from the Earth for each day. It is ideal for women who are frequently on a diet and who always wonder when is the best time to start it.
Each day can be marked as water, fruit or juice fast, which allows you to easily keep track of the diet.

You can choose from three skins which will give different appearance of the application.


http://www.ipmart-forum.com/showthread.php?t=132566

deadspot
23-11-2006, 09:22 AM
hi....


possible to add random ringing tone for every person on your phonebook ..

10x

deadspot
24-11-2006, 06:05 AM
hi...

i dont know if already posted here...


This is a simple tiny-miny program (5 KB) that runs on any symbian mobile including the P800, P900, P910i...etc. The only thing it does is simply an neatly calculate age based on the birth date. It's a handy and easy to use mini-app.

It is free and fully functional.

deadspot
30-11-2006, 08:55 AM
like this symbian appz...


Overview


mCountDown

MobilyT brings mCountDown to the palm of your hand. You can now use your mobile phone as a timer. You can use mCountDown at:

Football games, basketball games, other sporting events,

exam room,

in your kitchen,

and many other places.

Figure 1. mCountDown

mCountDown features:

4 separate timers individual starts and stops
Start/stop all timers
Easy to operate user inter face
Short keys to start and stop individual timers
Individual reset timer to initial time
Warning Beep
Back Light
Supported Phones:
N-Gage/7650/7610/3650/3660/6600/6620/SX1/Sendo-X/X700
Other Nokia Series 60 Phones
Support:

Please contact [email protected].



Note: Please also check out mStopWatch from MobilyT. Please visit htttp://mobilyt.com/app_register.asp to obtain the unlock code.

http://www.ipmart-forum.com/showthread.php?t=67298

deadspot
30-11-2006, 09:37 AM
i think already posted the idea.....

like this symbian appz!!!

Veto V1.0

Veto is a simple to install utility that blocks unwanted text messages on your mobile phone. You can block bullying messages on your mobile

Stop threatening messages from unknown sources

No longer receive unwanted messages from ex-spouses or partners

Ensure you receive no more of those messages tempting you to phone a number to claim a holiday or lottery win

Make your phone safe and stop intrusions

Protect your children from phone bullying

When a message arrives at your handset VETO checks the sender's number against your address book. If the senders number doesn't exist in your address book VETO rejects it ensuring you never see it. VETO keeps track of the number of rejected messages. Configurable to allow or disallow all messages or messages from people in your address book only.


After installation pls register wth:

PIN: 6788
KEY: 4598EE8


http://www.ipmart-forum.com/showthread.php?t=69503

deadspot
13-12-2006, 05:26 AM
hi....

just like this symbian appz....

Keep call logs and masseges private to yourself. Once you have specified a list of private contacts, their incoming call logs and the SMS cannot be viewed without a valid password.


Keep incoming call logs and messages private to yourself. Once you have specified a list of private contacts, their incoming call logs and the SMS will not be shown in the regular call logs and messages. In other words, the private contacts’ call logs and messages will be shown in this application only.


The main page of the application shows the list of private contacts where the contact’s messages and call logs are shown right below the private names. Now, if you would like to change the configuration of this application, click ?Options? and the configurations of the application are:

Set On – the status of the application. When it is on, the application is running in the background checking whether the incoming call or messages are from a private contact. If so, the logs and the messages will not be shown in the regular call logs and SMS inbox.


http://www.ipmart-forum.com/showthread.php?t=100079

deadspot
20-12-2006, 03:50 AM
hi....

same as symbian appz...


Alarm Calendar is a Symbian S60 application designed to organize and keep track of your personal alarms. It makes the tasks of recording and organizing alarms easy and will help you organize your time. Alarm Calendar is perfect as a desk, bed or travel alarm reminder.

Main Features:
Easy entry and editing of alarms.
Maintain any number of alarms entries.
One-time and recurring custom alarms - daily, workdays and weekly.
Calendar view keeps you informed about the alarms on any day of the month.
All alarms view for control any time information.
Alarm disabling without loosing its preferences.
Define your own set of workdays.
Functional user friendly interface.
Snooze option.
Note for each alarm.


With Alarm Calendar you will never miss any important thing.


http://72.36.246.194/showthread.php?t=135896

deadspot
05-01-2007, 10:06 AM
hi...

just like SE function can we add the function of "edit no. before call"


thanks

szab
25-01-2007, 12:09 PM
make nokia phones to display the report more detailed.... like siemens :P :

Status of: <number> <SENDdate> <SENDtime> Delivered: <DELIVEREDdate> <DELIVEREDtime>

yes of course, the delivered date & time are available just in the 2nd report.
by the way the first report is almost useless ;)

szab
25-01-2007, 12:20 PM
it is possible to create a sheduled script, what runs after a phone call,
and writes into a textfile the next ones?:

incoming or outgoing was the call
phone number
starting date, time
duration


with file_system and file_manager it will be amazing :)

deadspot
30-01-2007, 04:38 AM
hi...

possible to make script for electric bill usage....


10x


http://e-services.meralco.com.ph/mecowebapps/ces/ces.jsp#

deadspot
31-01-2007, 11:21 AM
hi all...

like this appz for symbian phones....


Frustrated because of not being able to answer your incoming calls or messages? SMS Assistant is the solution. SMS Assistant for Series 60 is an "out of office assistant" for Series 60-based smartphones. SMS Assistant sends your predefined message automatically to people calling you or sending messages to you. You can concentrate on your work or favourite hobby without having to think about people trying to reach you. Please uninstall any earlier SMS Assistant before installing this version.


http://www.ipmart-forum.com/showthread.php?t=63868

deadspot
31-01-2007, 12:33 PM
hi again....

can we make this script...very important when we make mistake the dialled #...


Automatically correct your phone numbers: add prefix to those numbers missing one and fix malformed phone numbers imported from Outlook.


http://www.ipmart-forum.com/showthread.php?t=64586

deadspot
06-02-2007, 09:52 AM
hi...nuukiaworld

pls. add this measurement for RPN calculator....


Measurement Units Convertor
Version: 1.0.3

You might find a utility like this one useful. This software can prove real handy. It allows conversions for:
Distance
Area
Volume
Weight
Speed
Temperature
Angles
Astronomical Units
Pressure
Energy
Frequency
Each item has a comprehensive list of measure units -- which can be even extend with your own! The application provided is also an expandable framework for you to add your own conversions if you need to. Visit http://www.liviutudor.com/tech/programming/mobile/j2me/convertor.shtml for details on how to customize this app and extend it with new functionality.


http://www.ipmart-forum.com/showthread.php?t=134260

druidbartek
06-02-2007, 11:34 AM
@deadspot

look at this rpn calc screen shot
http://www.panuworld.net/nuukiaworld/download/nokix/convert1.gif
:razz:

demon_lite
08-02-2007, 04:03 PM
How to make warning tone of "low level battery" in dct-3 phones more silently?

lempacks
10-02-2007, 04:36 AM
Hi.

Just an idea. How about if we use 3310's picture editor tool to create not just picture sms but also operator logos. We can then save those files to filesystem and also able to send them (directly w/o MBUS :-P ).
Also, a filetype script for those two so that we can able to manage it in filesystem..

Cheers.. :D

deadspot
10-02-2007, 04:38 AM
@druidbartek

i need astronomical calculator....pressure already have

10x

nuukiaworld
10-02-2007, 06:18 PM
Anyone can add their own units and unit groups in RPN Calculator. No NokiX programming skills are required. Just edit files convert_units.rx and convert_units_ppm.txt carefully:

To add new units to an existing unit group: just add a new "call unit" command with your unit symbol and conversion factor (relative to the other units in the group) in file convert_units.rx.
To add a new group of units: insert a copy of an existing group in file convert_units.rx. Remember also to add the new group in the main units menu list later in the same file and the name of the new group in file convert_units_ppm.txt.

The unit conversion data is separated in those two files just to allow everybody to add their own units in RPN Calculator. Please use that functionality!

deadspot
21-02-2007, 02:53 AM
hi....

script for vibration duration...


ex.

1 virbate
2 vibrate
...
continous vibration

10x

minimize the use of battery consumption...

deadspot
06-03-2007, 08:42 AM
hi....

idea:when writting a message we cant delete a letter when the cursor before the letter also we cant up/down the cursor..

possible to write a script for improve up/down and delete a lettter in any direction..


10x

deadspot
06-03-2007, 08:44 AM
hi ...

possible like this software...

deadspot
19-03-2007, 06:21 AM
hi...

same as computer function can we add script for not totally delete our messages.


10x

deadspot
23-03-2007, 12:58 PM
hi...

anyone can make script for SMS tones w/ different peoples...

like this one in symbian appz!


SMSAlert is an application designed for Symbian Series 60 phones which can associate different tones to different SMS senders. SMSAlert can also be used to mask the SMS ring tone for any given contact by substituting the default tone with silence. This feature makes applications such as MumSMS even more effective. Both system tones and gallery tones can be associated.


http://www.ipmart-forum.com/showthread.php?t=132592&highlight=SMSAlert

deadspot
18-04-2007, 02:53 PM
hi....

some of my freinds have a problem they received lots of SMS...possible to make anti sms script...

10x

deadspot
11-05-2007, 12:12 PM
hi.....


possible to convert all script from symbian to dct3...

mShell Makes Smart Phones Smarter
The easy way to program your smart phone. m helps to gain full control of its features and realize its potential.
The power of modern smart phones is in many ways comparable to the power of a PC. But access to this power is limited: the preinstalled software merely scratches at the surface of the phone's capabilities. Additional software you can buy and install typically only covers specialized needs.

mShell closes this gap between power and accessibility, allowing you to explore the full potential of your smart phone. It combines an easy to learn programming language with a rich phone specific function library, thus serving as glue between the phone's components.

Realize Your Ideas
Be it a long awaited small detail or a fully featured personal application, m removes barriers which prevented realizing your ideas and fulfilling your demands.

Thanks to simple syntax and context sensitive help with coding assistant, m scripts can be written directly on the phone with few keystrokes. m has been designed towards a flat learning curve and low frustration tolerance, so you quickly obtain the results you want. Tayloring your phone becomes fun - if you want, anytime and anywhere.

We wish you many inspiring hours with m!

mShell is a complete, unlimited m implementation with the essential modules of the function library. m scripts and own modules can be run, developed, and communicated.

mShell must be activated before first use via SMS. Your expenses are limited to the cost of sending a simple SMS to Switzerland.


Contains: mShell Base
Tutorial (PDF)
Reference Manual (PDF)

Module Library: builtin
array
audio
contacts
files
graph
gsm
io
math
sms
system
time
ui
+ full edition library
agenda
app
bigint
bt
cam
mms
net
obex
phone
proc
vibra


or



mShell Makes Smart Phones Smarter

The easy way to program your smart phone. m helps to gain full control of its features and realize its potential.
The power of modern smart phones is in many ways comparable to the power of a PC. But access to this power is limited: the preinstalled software merely scratches at the surface of the phone's capabilities. Additional software you can buy and install typically only covers specialized needs.

mShell closes this gap between power and accessibility, allowing you to explore the full potential of your smart phone. It combines an easy to learn programming language with a rich phone specific function library, thus serving as glue between the phone's components.

Realize Your Ideas
Be it a long awaited small detail or a fully featured personal application, m removes barriers which prevented realizing your ideas and fulfilling your demands.

Thanks to simple syntax and context sensitive help with coding assistant, m scripts can be written directly on the phone with few keystrokes. m has been designed towards a flat learning curve and low frustration tolerance, so you quickly obtain the results you want. Tayloring your phone becomes fun - if you want, anytime and anywhere.

We wish you many inspiring hours with m!

mShell is a complete, unlimited m implementation with the essential modules of the function library. m scripts and own modules can be run, developed, and communicated.

mShell must be activated before first use via SMS. Your expenses are limited to the cost of sending a simple SMS to Switzerland.

Download MShell from here :
http://www.ipmart-forum.com/showpost...09&postcount=1


http://www.ipmart-forum.com/showpost.php?p=1231709&postcount=1

deadspot
15-05-2007, 10:39 AM
hi...

we all know that mr.dejan already released his calculator for bb5 phones...

can anyone make script????

10x


http://users.net.yu/~dejan/

deadspot
02-06-2007, 06:03 AM
pls. follow the link....


http://www.ipmart-forum.com/showthread.php?t=163372

http://www.m-shell.net/Download.aspx

http://djdonatas.com/

I THINK this SW like nokix but this one for symbian phones only....

deadspot
27-06-2007, 03:27 AM
hi...

need to stay alive nokix program...........

idea just like call counter possible to add after message send it will pop out how many already send.....

also for incoming message after reading the text it will automatically pop out how many already received..

thanks

deadspot
04-07-2007, 12:39 PM
hi....

we need to update or make script same as new nokia phones ..


1.Instant messaging enhanced with Presence. Presence shows you if your contacts are available and the messaging capabilities of their phones


2.Demo mode allows you to use your phone without a SIM card

3.Offline mode: all transmission-related activities turned off

4.Countdown timer (normal and interval timer)

5.Control your talk time. Time Tracker allows you to pre-set call times and
disconnects calls when the pre-set time is up

6.Manage your calling costs. Cost Tracker* lets you pre-set the cost limit for calls


7.Monitor your pre-paid balance. With Pre-paid Tracker* you can view your pre-paid account balance information whenever you need


8.Get the right sound for any environment with adjustable ringtone and call volume

9.Multiple message sending: a quick and easy way to send the same message to several people


10.Call history and call duration summary for monitoring your calls

11.Jumbo font makes it easy to see who you’re dialing


thats all....4 now

deadspot
16-07-2007, 09:36 AM
same as this symbian application....


SMSC Viewer 1.00

This little app for Symbian OS & S60 devices displays the sender, SMS message centre number, the date and time of arrival and other details for each of the SMS messages in a device's Inbox folder. This app is free (FOSS), its UI is available in English and Greek and it requires the S60 FE or SE platform.

Install files are in SMSC Viewer for S60 First Edition.zip or SMSC Viewer for S60 Second Edition.zip.
There's also the app's source code.

http://www.ipmart-forum.com/showthread.php?t=173015

deadspot
24-07-2007, 05:58 AM
HI....

JUST LIKE THIS SYMBIAN APPLICATION....

SMS Forwarder, Spy SMS text messages
SMS Forwarder Lite is an application that allows forwarding of sms messages in a number that you'll chose!
After installing the application will run in background (tray) without letting the user of the phone that his messages are being hijacked!
so have fun!!!
Filesize : 15 KB
Filetype : .sis
Version : 1.0.1


http://www.maxishare.net/en/file/947...v1-01-rar.html

updated....


SMS Forwarder v2.2 Lite edition

is A freeware application from Wireless lab, the makers OF power boat, that allows you to automatically forward incoming SMS text of messages to of A specified mobile phone NUMBERs.

Key feature OF this application include:


- Forward incoming short messages to more another cellular NUMBERs automatically.
- User CAN SELECT on of forward of all messages or forward of messages from A specific NUMBERs only.
- Support on start automatically upon phone boat. (by adding “SmsFwDaemon_0xA0002021.exe” on power boat)
- Encoding OF SMS (GSM 7bit/8bit/UCS2) is configurable ton match your operator.
- Record OF forwarded message CAN removed from call log.
- Prevent forwarding message which is from/to configured NUMBERs.
- Support ton remove delivery report OF forwarded messages.

deadspot
26-07-2007, 09:37 AM
hi all,

if possible can duplicate or make script for animated logo....
this application for symbian OS 9.1/9.2


AniSimb - Animate your operator logo!

--------------------------------------------------------------------------------

Here is little python app that can install animated operator logo.
Tested on E70 and 3250 and N93.
If you have find some bugs say i'l try fix )
Logos at c:\system\apps\AniSimb\Logo
Instalation notes
1) You must install Python Pack INTO PHONE MEMORY
2) When install app select ONLY YOUR MODEL OF PHONE!
P.S Working only with English lang of phone (( want other modify source code and enter name of your Standby mode app name (get using BestTaskMan)

follow this link...
http://www.ipmart-forum.com/showthread.php?t=141336

deadspot
26-07-2007, 12:25 PM
again like this symbian appz...


Stopwatch tool for time measuring. Contains a Counter-up, a Counter-down and a Reminder. Centiseconds precision for the Counter-up and extended capabilities.

Stopwatch Plus is a time measuring tool which you can use for sport activities or to measure the elapsed time for any task you need to trace. You can also use it as a periodically reminder tool.

Stopwatch Plus contains a Counter-up, a Counter-down and a Reminder available as options in the main menu.


* Key features:

For Counter-up:

- centiseconds precision (1/100 second)

- counts up to 99 hours

- 999 memories slots for time stamps (laps)

- allows Start/Store/Reset/Stop actions for counter.

- able to run in background. The counting keeps running even the Stopwatch Plus is running in background.

For Counter-down and Reminder:

- able to count-down a period up to 24 hours with seconds precision.

- when the time elapses, it is able to notify you via sound and/or vibration.

- you can select your custom sound file for notification.

- vibra and sound can be set on/off.

- backlight can be turned always on; the lights of the main screen will not be turned off during counting; this allows you to see the screen better.

- Start/Stop/Reset/Continue options.

- after each elapsed period, the reminder automatically restarts; it keeps running and notifying you each time the time elapses.

- the keypad is also unlocked.

- sound volume for notifications can be set from low to high percentage. - you can use your own alert text. When the time elapses for Counter-down or Reminder, the text is blinking on screen (eg. time elapsed) while the vibra and/or sound are activated.

- the settings are saved and restored to/from the phone memory.

- the counting keeps running even the software is running in background.

Note: You must set the 'Vibrating alert' option to 'On' in the current profile to allow the application to vibrate the phone. (Profiles->Options->Personalise->Vibrating alert: on)

Nokia devices compatible with "Stopwatch Plus"

Nokia 3250 (S60 3rd Edition)
Nokia E60 (S60 3rd Edition)
Nokia E62 (S60 3rd Edition)
Nokia N71 (S60 3rd Edition)
Nokia N80 (S60 3rd Edition)
Nokia 5500d (S60 3rd Edition)
Nokia E61(S60 3rd Edition)
Nokia E65
Nokia N73 (S60 3rd Edition)
Nokia N91 (S60 3rd Edition)
Nokia E50 (S60 3rd Edition)
Nokia E61i
Nokia E70 (S60 3rd Edition)
Nokia N75 (S60 Erd Edition)
Nokia N95 (S60 3rd Edition)

http://www.ipmart-forum.com/showthread.php?t=172037

deadspot
03-08-2007, 05:08 AM
anyone know any info on this below that i`ve found?

Is it really possible if so how?

++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++

How often do you wish that you could read your partner's text messages before they delete them?!

NOW YOU CAN!

We can now install, remotely anywhere in the world onto their mobile phone (providing it is a compatible model) a program which when they receive or send a text, you will at the same time receive the exact same text with the number it is being sent to and received from.
There are four options which you can choose from.
You do not have to have all four, just select the one you think is appropriate to your requirements.

With Option 1 (the most popular one) we suggest you acquire a 2nd phone, this is to be used solely as the text receiver.
We would then remotely program the target phone or new phone supplied by us) and then send you a Pay-as-you-go Sim Card. With this supplied Sim Card (Network of your choice) just preset into your 2nd phone and when the target mobile receives or sends a text message, you will instantly receive the same information.

We have also developed software which when installed into a Spy Phone, will send an sms alert to your phone that the target phone is making or receiving a call. You then dial in from a pre-defined nunber and listen to BOTH sides of the mobile phone conversation. This will be available in aprox one month.


OPTION ONE - SMS Forwarding

Receive an immediate copy of their text messages to your mobile phone the moment they send or receive them. This powerful and highly advanced feature is 100% trace resistant and immediately deletes all application and logs in Sent Items on the target phone whenever information is sent to you. Secretly receive an exact copy of ALL their SMS activities with this solid state-of-the-art bullet-proof Spyphone.

The SMS you receive without their knowledge will reveal:

Any text messages in full. No matter if the target phone sent a text or received a text..you will get an exact copy immediately

When the target phone sends a text message you get the number it was sent to AND when the target phone receives a text message, you get the number who sent it.

The time they sent or received any text messages

The date they sent or received any text messages
With complete peace of mind you will be able to monitor the activities of your children, your spouse/partner, your employees, your associates, your friends, without them EVER knowing!.

The spyphone will also intelligently recognise when it is the pre-defined number that has sent an SMS to the target phone so you will not receive a copy of your own SMS message.

This feature is an extremely powerful and covert application that is 100% trace resistant.



OPTION TWO - Remote Activation Control
Activate or de-activate the SMS Forwarding feature at any time simply by sending the target phone secret codes. Secret codes can be words you choose for example to activate the SMS Forwarding you have chosen the word 'hello', and to de-activate it you have chosen the word 'later'. This means whenever the pre-defined number sends the target phone an SMS with the code word written anywhere within the body of the text, the spyphone will intelligently turn ON/OFF the SMS Forwarding as appropriate.

You may only want to receive copies of their SMS messages (sent or received) by the target phone during certain times of the day or for a short or accurate periods, in this case you will need to use the Remote Activation Control to turn ON/OFF the SMS Forwarding feature at any time, whenever you want. Without the Remote Activation Control feature, you will continuously receive their SMS messages.

OPTION THREE - GSM Localisation

This extremely powerful and intelligent feature will allow the pre-defined number to send an SMS with a code word you specify to the target phone and in return you will receive the Network Relay physical address of where the target phone is at that moment. The software automatically deletes any application and logs in Sent Items that would normally be stored on the target phone, so the user of the target phone will have no idea its movements are being tracked.
The type of information received on request by the pre-defined number will look like this:
MMC: number, MNC: number, Location ID: number, Cell ID: number.

Using this feature allows up to the minute GSM tracking of the mobile phone by linking with a third party tool/software like Google Maps.

OPTION FOUR - Call List

Receive the complete list of phone calls the target phone has dialed, received or missed at any time by simply sending the correct code word to the target phone from the pre-defined number.
The amazing Call List feature allows the pre-defined number to send a text message to the target phone with either the dialed calls code word, received calls code word or the missed calls code word written anywhere in the body of the text. For any of the three special codes for that feature sent by the pre-defined number through SMS, the target phone will send back accordingly to the codes either the full Missed Call list, Received Call list, or Dialed Call list without any application or logs in Sent Items.

Example: You wish to retrieve all the phone numbers the user of the target phone has dialed for that day and your code word you specified for Dialed calls is 'meet'. Your text message could say 'Hi there, I'm finishing early today do you want to meet up?'. The intelligent software recognises the word 'meet' and immediately sends you the complete list of phone numbers the target phone dialed out. The same applies for the Received Calls and Missed Calls. As soon as any information is sent to the pre-defined number from the target phone, all application and logs in Sent Items are immediately and automatically deleted.

A superb and extremely powerful covert feature for monitoring every single movement on the target phone with absolutely no detection whatsoever.


--------------------------------------------------------------------------------


Spyphone Features FAQ



What is the current list of hand-sets the software supports?

The following phones are compatible:

Motorola: A1000, A920, A925
Nokia: 3230, 3250, 3650, 3600, 6260, 6600, 6620, 6630, 6670, 6680, 6681, 6682, 7650, 7710, 9210, 9210i, 9290, 9300, 9500, E60, E61, E70, N70, N71, N80, N90, N91, ENGAGE, ENGAGE QD
Samsung: SGH-D720, SGH-D730
Siemens: SX1
Sony Ericsson: P800, P900, P910, P990




--------------------------------------------------------------------------------






There's lots of so called 'Spyphones' on the market, why is yours different?

We have the world's first 100% software based technology which is head and shoulders above any other spyphone competition on the market. The beta-testing is complete! This is not hardware or even a combination of hardware/software modification. The Spyshop's software is the new development in forward thinking technology for the mobile era. There's absolutely no tampering of the phone whatsoever.




--------------------------------------------------------------------------------





What is an IMEI number?

This is a 15 digit hardware identification number specific to your phone. Every mobile phone has a different IMEI number. By pressing the following keys on your hand-set, you should be able to bring your IMEI number on to the display *#06# (please note the IMEI number is usually printed on the phone packaging or stuck into the battery compartment).




--------------------------------------------------------------------------------





What is a Pre-defined number?

This is the number where all the secret information from the target phone is sent. This must be a mobile phone number as all info is received in the form of a text message (SMS). We recommend purchasing a pay-as-you-go SIM card and using that as your pre-defined number.




--------------------------------------------------------------------------------




How do I find out my Firmware Version?

Press *#0000# on your phone's keypad to find out your firmware version. We require this when configuring the software for your phone and is also a requirement should you encounter any technical problems.




--------------------------------------------------------------------------------



When the spy mode is in operation, what is the coverage area/range restrictions?

The coverage area will be the same as any other standard GSM mobile phone, it depends on the coverage provided by the network provider. As for the range while using the spy mode - you can call it from anywhere in the world.




--------------------------------------------------------------------------------



When in spy mode, how sensitive is the microphone and how far from the phone can I hear?

The microphone is that used to make a normal conversation located in the mouth piece of the phone. Though the microphone is very sensitive there is no way to know how far can you hear, the general rule is that you can hear the same as if someone 'forgot' to press the END button on the keypad.




--------------------------------------------------------------------------------




Can the target phone be used for everyday use as a normal mobile phone?

Yes absolutely!. You can make calls and receive calls just like any other mobile phone, it will ring normally and perform according to the original manufacturer specifications. There is no way to tell by holding or using the spyphone that it is packed with 'Extra' superb features. Even the most techy electronics engineers will not be able to find any differences compared with any other ordinary phone




--------------------------------------------------------------------------------


What happens if somebody else calls the target phone whilst I am listening in?

The intelligent Call Breakthrough feature will automatically disconnect the spy call to eliminate any suspicion. When this happens you will know that another caller has got through.




--------------------------------------------------------------------------------


How long can I monitor the target phone?

This is only limited by the phone's battery life, whilst monitoring it is considered 'Talk Time'.




--------------------------------------------------------------------------------




What happens if they change the SIM card in the target phone?

This does not matter as the software is installed on the phone and not the SIM card.

follow this link....http://www.gsmhosting.com/vbb/showthread.php?t=288552

deadspot
04-08-2007, 09:51 AM
like this symbian appz...

smsCount counts your sent SMS. The Counter can be shown directly on the desktop (idle screen) of your mobile phone. So, you can keep an eye on your SMS costs.
The automatic counter save the amount of the sent SMS under the appropriate month. Thereby you get a comfortable monthly overview. Further, you can set the month start date. This is helpful if your accounting period isn’t starting the 1st of the Month.
The manual counter counts your sent SMS until you reset it.

Requirements

minimum 120 kBytes

Compatible Devices

Nokia 3230
Nokia 6260
Nokia 6600
Nokia 6620
Nokia 6630
Nokia 6670
Nokia 6680
Nokia 6681
Nokia 6682
Nokia 7610
Nokia N70
Panasonic X700
Panasonic X800
Samsung SGH-D720
Samsung SGH-D730

http://www.ipmart-forum.com/showthread.php?t=95624

deadspot
09-08-2007, 05:48 AM
continous suggestion even some person develop new script.....


SIM Watcher is a new tool that helps you to get hold of the new mobile number that is used on your phone in case of loss or theft. It works very easy. Just install it on your phone, register your E-mail address and/or home address. In case of loss or theft the new user of your phone will change the SIM card and that's where SIM Watcher does its job. When the mobile phone is turned on, SIM Watcher automatically checks if the right SIM card is inside the mobile phone. If it is another SIM card, SIM Watcher will send you an e-mail. This e-mail includes the mobile phone number of the new user of your mobile phone and your IMEI number. You can report your IMEI number to your phone company to have it banned from ever receiving service again. In addition to this, a pop-up window is shown to the new user of the mobile phone every ten minutes, which indicates that the phone belongs to someone else. If you have activated this option with your personal info, SIM Watcher will show your name and address, which gives honest people the opportunity to return your phone.

OR

IM Watcher is a new tool that helps you to get hold of the new mobile number that is used on your phone in case of loss or theft. It works very easy. Just install it on your phone, register your E-mail address and/or home address. In case of loss or theft the new user of your phone will change the SIM card and that's where SIM Watcher does its job. When the mobile phone is turned on, SIM Watcher automatically checks if the right SIM card is inside the mobile phone. If it is another SIM card, SIM Watcher will send you an e-mail. This e-mail includes the mobile phone number of the new user of your mobile phone and your IMEI number. You can report your IMEI number to your phone company to have it banned from ever receiving service again. In addition to this, a pop-up window is shown to the new user of the mobile phone every ten minutes, which indicates that the phone belongs to someone else. If you have activated this option with your personal info, SIM Watcher will show your name and address, which gives honest people the opportunity to return your phone.

http://www.ipmart-forum.com/showthread.php?t=92768&page=2

nuukiaworld
09-08-2007, 06:00 AM
SIM WatcherIt is almost the same idea than I proposed last year on this same thread: http://nokiafree.org/forums/showthread.php?p=385528#post385528

However, my idea basically tried to inform the legal owner / authorities about the location of the stolen phone, instead of relying the thief to return it.

deadspot
14-08-2007, 04:12 AM
like this MUMS -hide symbian appz...

New, powerful, secure and easy-to-use messages managing UI (user interface).

** Protect (Hide) received messages(SMS/MMS) automatically.

** Protect (Hide) sent messages(SMS/MMS) automatically.

** Protect (Hide) messages (SMS/MMS) in the draft folder automatically.

** Manually hide/Show messages in any folder.

** Unlimited amount of user-defined profiles.

** Two types of profiles: black lists (hide all messages on list) and white lists (hide all except the list).

** User-defined screen saver of message manager.

** User-defined unread notification.

** All hidden messages can be read only after correct password is entered.

deadspot
27-08-2007, 12:52 AM
like this symbian appz...

PhoNetInfo: http://www.patrickfrei.ch/phonetinfo/

PhoNetInfo is a software that retrieves detailed phone and network information. It runs on Symbian S60 3rd edition mobile phones (e.g. Nokia 3250, 5500, 6110, 6290, N71, N73, N75, N76, N77, N80, N91, N92, N93, N95, E50, E60, E61, E62, E65, E70, E90).

In detail, information about the following topics can be retrieved:
General (phone manufacturer, model, firmware version, battery level, IMEI, subscriber ID, charger status, etc.)
Running tasks
Active profile settings
Network (signal strength, cell ID, network name and ID, country code, location area code, etc.)
Hardware abstract layer "HAL" (CPU speed, CPU type and architecture, size of RAM and ROM, number of display pixels and colors, number of device LEDs, machine UID, device model and family, etc.)

deadspot
18-10-2007, 11:33 AM
hi....

old function as 3410....can we duplicate this screen saver (animated)

10x

deadspot
20-11-2007, 05:46 AM
like symbian appz....

in dct3 combinaTION of LED alway on +display time -out....

10x

deadspot
19-12-2007, 03:11 AM
hi....

need to update the script for unlocking ...

pls. see the link...http://gsm-city.org/forum/index.php


10x

deadspot
19-12-2007, 03:36 AM
hi...

like this symbian appz ...

http://www.ipmart-forum.com/showthread.php?t=187884

10x

deadspot
19-12-2007, 04:43 AM
HI AGAIN,...

JUST LIKE THIS SYMBIAN APPZ USING FLASHLITE...

http://www.ipmart-forum.com/showthread.php?t=205105

http://www.ipmart-forum.com/showthread.php?t=203728

deadspot
21-12-2007, 12:25 AM
hi....

i think sameone can make script for above appz...

just like nokia 2626..

http://www.nokia.co.uk/A4275276

10x

deadspot
21-12-2007, 12:40 AM
for new dct4 plus phone from nokia like 1208 function...

can be copy to 3310

1.Monitor your pre-paid balance. With Pre-paid Tracker* you can view your pre-paid account balance information whenever you need

2.Get the right sound for any environment with adjustable ringtone and call volume

3.Hear more of your calls. Noise cancellation filters decrease background noise for improved sound quality

4.Extend your talk time. Use the power saver mode to help conserve power when your phone is idle

5.Multiple message sending: a quick and easy way to send the same message to several people

6.Message distribution lists: create and manage your personal list

7.Speed dialing for quick message sending

8.Call history and call duration summary for monitoring your calls

9.Analog/digital clock, alarm clock, countdown timer, and stopwatch

10.Large digital clock wallpaper so you can keep track of time even while your phone is idle

11.Localised calendars available



http://www.nokia.co.uk/A4405750

10x

deadspot
21-12-2007, 05:00 AM
hi nokix programmer,

possible to make script.....like this program
can read message and contacts even your SIM was PUK

deadspot
26-12-2007, 09:29 AM
hi...

just only follow up for the new dct4+ like n1208

1. send option with send later func.
2.insert signature every time we send txt always have comment or ginature at the bottom of msg.
3. Inbox can be "as reminder"
4.Call number with the following options:

a.call
b.add number
c.edit #
d.send phone no.
e. assign tone
f.delete n0.

5.increased txt message from 160 t0 918 characters...

10x

deadspot
04-01-2008, 05:00 AM
hi all esp. to sir dvirus...

we all know we can send 999 messages one at a time in one #.

recommendation:
1. can we send pre define range #
ex.09xx1000000 to 09xx1000010

2.also send how many messages they can receive
ex.set 09xx100000 to 10 messages
and
09xx1000010 to 5 messages

thanks

deadspot
05-01-2008, 05:27 AM
hi all...

possible to add edit the number before calling...

10x

deadspot
05-01-2008, 05:35 AM
to sir dvirus,

when calling it will appear the call time limit before we call....so that every # we can set how many minutes we will consume...

10x

deadspot
12-01-2008, 05:41 AM
hi all,

only idea....if we can make script....

Main featuresv1.1(2006-9-11)
-Add setting dialog to set delivery report, unicode, blink sms, signature.
-Remember four recently used recipients.
-Signature:some Flash SMSs are anonymous,so you can add your signature if you want.
-Fix several crash bugs.
v1.0
-Send Blinking Flash SMS, wap push SMS.
-Support unicode.
-Send the SMS to multi-user whose numbers are seperate with ";".
-Call the phone's phone book to select the contacts.
-Remember the the phone's number, next time it will be loaded automaticly.

About Blinking Flash SMS
A Flash SMS appears directly on the phone's screen, instead of the 'Inbox'. Its an useful alternative to normal SMS when you want to catch the recipients attention immediately. In the smartphone the recipient has the option of 'Saving' the Flash SMS to his 'Inbox'. in the other phones it popups in main screen Other phones and is anonymous.
-Not all the phones can support blinking SMS, these phones can support it:
Nokia: 3210, 3310, 3330, 5110, 5130, 6110, 6130, 6150, 6210, 6250, 7110, 7650, 8210, 8310, 8850, 8890, 9110/i, 9210/i, 8110/i and 8810.
Samsung: R220, N620, SGH-2400
Siemens: S40

About Wap Push SMS
WAP Push is essentially an extension to SMS that enables the recipient of the WAP Push message to immediately view an online page of content in one click.
The benefit of using WAP Push versus SMS is that for a similar cost of delivery you can reach your customers with rich multimedia WAP content such as pictures, game downloads and polyphonic ringtones. If however, you would like your customers to have a copy of the content stored on their handset please consider using MMS.

How much does a Flash SMS cost?
CoolSMS+ does not charge the user anything. The mobile operators charge the sender the cost of a normal SMS. There is no additional charge for sending a Flash SMS.

http://www.ipmart-forum.com/showthread.php?t=146680

deadspot
12-01-2008, 05:56 AM
hi...

looks like this appz...

Frustrated because of not being able to answer your incoming calls or messages? SMS Assistant is the solution. SMS Assistant for Series 60 is an "out of office assistant" for Series 60-based smartphones. SMS Assistant sends your predefined message automatically to people calling you or sending messages to you. You can concentrate on your work or favourite hobby without having to think about people trying to reach you.

http://www.ipmart-forum.com/showthread.php?t=218101

deadspot
12-01-2008, 06:07 AM
hi...

like this appz...idea only!!!


Personalize the signal tones for your incoming messages!

MessageTones by Rock Your Mobile! allows the user to
personalize the signal tones for incoming messages. This can
be done for any contacts, groups and profile settings on all
Nokia S60 3rd Edition Smartphones.

The software solution is well and user friendly designed and
offers several additional functions to simplify the daily work
with this essential tool.

From now on you always hear who sent you the latest message!

How to use:

1. Install MessageTones application
2. Go to Profiles
3. Choose the profile for which you would like to have MessageTones activated and click on Personalize
4. Choose MessageTones.wav as a tone for your messages
5. Run MessageTones application
6. Create new Message tone rule for profile, contact or group
7. Exit MessageTones application


OR



--------------------------------------------------------------------------------

Current progress: 1.11 version has been published to support the N73, and other third edition of the original cell phones and N95, and other FP1 version phones. If you have 1.10 before the old version, please manually delete c: \ Data \ FreeTones.dat documents, remember! From the 1.10 upgrade to 1.11 do not need to delete.

V1.10 version:
1, the new user interface
2, increased random SMS ringtone functions (database structure changes, means that the database should be deleted from the original document)
3, the new ringtones browser, support for multiple file folders and add support Z disc
V1.11 version:
1, self-starting function in repair of small BUG (if there since the launch of errors which, with 1.10 version)
2, OK button can be used to select files

Small Tip: freedom ring tones can be used with preservation, restoration scenarios ringtone functions to test

Implementation principle: Server-Client mode, databases, Call Monitoring, scenarios. Through the presence of background server for Call / SMS Monitor, when Call (connect, hang up) or text, the program automatically set of songs, the first of the next read, write current scenarios in lines 1 ringtones / SMS ringtones, and achieving the next Call different ringtones. Implementation principle predicaments, but it is my 3 RD under can think of a better program.

Simple instructions:
Simple not say, mainly two:
1, calls, SMS ringtones list interface:
Navigation intermediate bond for the selection, cancel options, the * key for the selection of all, the # key for the abolition of all options, 0 key to reverse option. According c directly delete button labeled ring, if there is no marker where the cursor to delete ringtones.

2, ringtones browser interface:
Left to return to the level folder, for the right to enter the current folder (the folder on the cursor), the middle button to open the navigation current folder (on the cursor in the folder) or switch tags (cursor in the document).
Five keys for the selection, abolishing choice, a choice folder or document.
* Key to select all files (not choose folder, the same below), the # key choice for the lifting of all documents, 0 key to reverse option.
Options - will be added with the choice of all files and folders and sub-folders of media files, if your folder many documents,

deadspot
28-01-2008, 05:07 AM
hi all,

just like N70 function, when you set the alarm it will show you the remaining hours and minutes left before it will alarn.

10x

deadspot
12-02-2008, 06:32 AM
hi all,

we have lunar calendar and world time.....possible like this symbian appz...


Sunclock is a J2ME Midlet that displays a map of the Earth and indicates the illuminated portion of the globe by drawing sunlit areas dark on light, night areas as light on dark. In addition to providing local time for the default timezone, it also displays up to four additional cities on the map with the local times also. The map updated every minute to follow the movement of the earth.

Using the Setup menu you can choose the cities according to your interest. You have to specify the correct timezone values relative from GMT and the integer WGS-84 coordinates of the cities to display them on the map. Thus most of the current phones do not supports the timezone settings, the localtime will be calculated based on the Main City setup and the internal phone clock will be interpreted as a timezone corrected local time value according to the Main City timezone selection.

Enjoy! -- Gergely Gati

release notes
v1.2.27 - Feb 9 2008

socket closed after update (thx ibori)
city numbers modified
deployment system upgrade
update bug fixed
screen width calculation fixed
asking the real device size on update
release notes on update
network timeout added
suspend/resume bug fixed
city name string clipping added
font size selection added
minor bugfixes
fixed recordstore saving bug


http://www.ipmart-forum.com/showthread.php?t=226450

deadspot
06-03-2008, 12:54 AM
dear all,

just like symbians phones when you press the pencil ,when making text message we can easily input the #.But in dct3 you need to long press the # button.Possible to add this script!

10x

deadspot
11-03-2008, 11:54 AM
hi nokix programmer....

like this symbian appz...

10x

deadspot
03-04-2008, 11:47 AM
hi all,

counter part of nokix for dct3.......

Python for S60 brings the power and productivity of the Python programming language to the S60 platform. The tools enable rapid application development and prototyping, and the ability to create stand-alone S60 applications written in Python.


http://www.ipmart-forum.com/showthread.php?t=220828


sample script...


-:- Freeware Python Scripts -:-

Time-Lapse Photography on S60!
Time-Lapse Photography on your S60 Phone!

Freeware: The All In One Torch for 3rd edition phones!
Use your phone as a torch, using the camera flash, of course because it is much better solution than the weak screen illumination.

Text to Speech via Python

SmartSIS v1.0 beta - unpack sisx document on phone
Unpacks any sis / sisx SmartSIS file in the directory.

Backuper 1.0 For S60 (Freeware) (2nd Ed)
The program is designed to back up data to the smartphone
and formatted for quick restoration of the configuration menu
after the failed extraction flash.

AppOFF v1.0 (2nd ed)
This utility allows to hide your applications and games on your mobile phones.

Musician for s60 (freeware)
If you're a musician and you need a tool to tune your guitar or violin, a metronome and a small playable piano to play simple melodies Musician is the free S60 application made for you.

pys60dict for S60 3rd Ed (Freeware)
pys60dict is a browser for dictionaries in 'dictd' format written in Python. Files in this format a are e.g. available from http://freedict.org, WordNet, Jargon and lots of other places.

Amora for S60 (Python-Freeware)
Amora (A mobile remote assistant) implements control of mouse and most of keyboard shortcuts (ESC, ENTER, SPACE, arrow keys, etc) making easy this task. Not only that, but you can take screenshots of the active window in your current graphic session (i.e. see thumbnails of PC windows in your cellphone screen).

LifeGuide v1.1 for Symbian
Bible-based guide to life, a scripture for every occasion, every mood. LifeGuide presents the choices from the opening section of the famous Gideon bibles found in hotel rooms. You can choose any of the dozens of different categories and feelings and will get a scripture that's appropriate to the occasion.

PyAmazon for S60 (Python :: Freeware)
To enable the access of reviews and other informations about a book in the bookstore, we've developed PyAmazon using Python for S60. It allows you to retrieve informations and reviews about books directly from the Amazon website and display them on your Nokia S60 device.

Freeware: pyBattery v1.3 - freeware battery manager for S60
pyBattery is the small freeware Python based application, battery manager actually that provides an opportunity to constantly monitor the state of the battery, to monitor charging and lifting charger of the phone and provides the customizable audio signal at full charge.

PySystemUtilities for s60 3rd Ed (Freeware-Python)
A small collection of 3 very useful utilities for our 3rd Edition Symbian phone: Restart with Delay, immediate Restart and Screenshots

Sydewynder for S60 (Freeware-Python)
Sydewynder is an open-source SMS receiver and sender application written in Python for the Nokia S60 phones.

PyUnix for S60 2nd edition (Freeware-Python)
PyUnix : linux-like console for PyS60.

pyEkran 2.00 Total Final [english version]
It keeps your phone's backlight on, should work in any one phone.

Freeware: pyRestart for S60 3rd edition!
pyRestart is a small system utility that on demand quickly reboot your phone, it actually triggers the reboot API and force system to reboot

P4-Social Networking App(Freeware-Python)
A Nokia Series 60 compatible Python script that prototypes a social networking application. The application would allow friends to organize themselves around events happening nearby on any given evening.

mpatra v0.1 for S60 (Freeware-Python) (2nd ed?)
A simple and basic pdf viewer.

mobioo v0.1, OpenOffice reader for S60 2nd (Freeware-Python)
mobioo v0.1, first OpenOffice (odt) reader in PyS60!

pyFileManager for S60 3rd Ed (Freeware-Python)

pyFTPclientS60 (Freeware-Python)
pyFTPclientS60 is a simple FTP implementation for Series 60 phones written in python.

wikkit for S60 (Freeware-Python)
A program designed to make your note taking life easier. WikiPad is a wiki-like scratchpad for Nokia Series 60 phones. By Christopher Schmidt

Python for Series 60 App: QuoteGrab (Freeware)
Stock Ticker Application

Torch with Python Script for Symbian 3rd Devices
An Actual First-of-its-kind Strobe Light

Updated: EasyEdit - Text editor for S60 devices (freeware)
EasyEdit is an intuitive, friendly and very simple text editor for S60 phones developed in Python with a lot of useful features.

Mobile Web Server updated to 1.2
Mobile Web Server Script

pytranslator for S60 (Freeware)
Pytranslator - A Simple Python based translator which uses BabelFish service from Yahoo.com

Useful Python for Series 60 App: Dict2Go (Freeware)
A Simple Dictionary App written in Python by Matt Croydon , it queries the given word at dict.org and presents it back.

PED - A full-featured Python IDE for S60 (Freeware)
Ped is a text editor written using Python for S60. It may be used to edit any text file but was created mainly to write/edit Python scripts on the phone. It provides tools that make this task easier.

SmartSIS 1.82 for s60 (Freeware)
(Pack,unpack & sign sis files)

SisBoom (Freeware s60v2)
it's something like smartsis for s60v3 devices, just that this is for s60v2

PyNetMony for Symbian S60 3rd Edition Phones (Freeware)
PyNetMony is a GSM, UMTS, WLAN and Bluetooth Monitor tool with support of internal or external GPS.

[COOL] RenameR : A Freeware to Rename apps in phone (python)
it's a small but powerful tool to rename app in both rsc and aif file, and as easy as ....

MobiSigner v1.2 for S60 (Freeware)
Supported the signing of their own to support the signature of signatures of public support for removing Show details automatic identification certificate signed certificate types can be signed within a document 1.6 M

(Python) FreiMinMon S60 3rd
FreiMinMon - the free minutes monitor for S60 3rd Edition smartphones
Current consumption of Included minutes and SMS from your Provider.

AniSimb - Animated operator logo (Python App)
Here is little python app that can install animated operator logo.

Freeware: Introducing the S60 3rd edition SMS Reader Let your Phone read your SMS!

pyEdit v0.19 for S60 3rd Ed (Freeware-Python)
pyEdit for S60 is a powerful text editor for Symbian S60 phones written in Python. It is supposed to work in 2nd and 3rd edition Symbian phones.

UPCOMING: pysweeper - minesweeper Python
Minesweeper in Python .. coming soon!

pyspy for s60 (Freeware-Python)
PySpy is a program designed to carry out Video surveillance with mobile phones that incorporate a camera Photo and the Symbian operating system.

N95 As External BT GPS (Freeware-Python)
Python Turn your S60 phone with an internal GPS (eg your N95) into a Bluetooth GPS

SIStail v2.2 for S60 (Freeware-Python)
This program is intended for removal of files from the removed program,broad gullies ,in consequence of that they are unpredictable situations for example rebooting,bluetooth etc

Freeware: BT Terror - Terrorize Your Friends Play some Mindgames with your Friends hehe ..

FREEWARE: SmartClock v1.0 - An Intelligent Talking Clock
SmartClock is an intelligent talking clock that can read out the current time without ever requiring a keypress, using your S60 3rd Edition phone's built-in text to speech-engine.

Freeware: Mobile Personal Assistant v1.00 (English)
A very handy little App, that reads your 24h Status Calendar using the built-in Text to Speech Engine

Exclusive : ListSMS™ for S60 (Freeware - Python) *updated*
A Simple Python Application which will export all sms in the inbox to a text file

pyRecorder for S60 (Freeware-Python)
A Simple application that lets you record video

SISInfo (Freeware)
SISInfo is a tool for inspecting the contents of Symbian SIS installation packages. Supported SIS file format is the one introduced in Symbian 9.1 and S60 3rd edition. File format specification can be found here

Mp3 Editor for S60 (Freeware)
A Freeware Tool for Editing Mp3 Right In Our Mobile Phones . features included , Split , Join , ID3 Tag Editor .....

AyIX for S60 (Freeware-Python)
AyIX is a pure Python-based emulated Unix-like OS for Series 60 mobile phones

-:- Accelerometer based Scripts -:-

NiiMe Wheel (ALPHA) - Available for Download and Testing!
Use your Phone as Steering Wheel in Racing Games!!

ShakeLock v1.04 Beta - The first public version is available for download!
For those who don’t know, ShakeLock is Python application that uses the Accelerometer Plug-in package to hook into the accelerometer and to detect movement and change the lock state according to movement direction.

Funny: pyPiwo - Half real, half magic, convert your phone
pyPiwo for 3rd edition - Brew and drink beer on your Phone! Cheers!

UPDATE: NiiMe Mouse - Using the phone as the 3D Mouse
NiiMe Mouse - PC Mouse & Wheel control for the Nokia N95!

pyMoneta: Nokia N95 Magic - Use N95 as a Money Machine?!!
Trick your Friends with this simple Python Script!

N95 sensor - Rotation sensor (Freeware-Python)
A Simple application that uses the built-in sensor of the N95 device as a rotation sensor. When turning the phone to the left, right, up, down, the application should trigger a pop-up note telling left, right, up, down respectively.

Accelerometer BallGame for N95 (Freeware)
This fun MIDlet is inspired by a game that many of us played when we were little children where tiny marbles have to make their way around the obstacles, through the wooden maze, without losing it down a hole.

Freeware: Transform Your Phone Into Interactive Aquarium!
pyRybka - Virtual aquarium for your phone

Update: pyPoziomica 2.0 - The Final English Version!
pyPoziomica for 3rd ed Use Your Phone As Level Tool

http://www.symbian-freak.com/forum/viewtopic.php?t=13333&start=0&postdays=0&postorder=asc&highlight=python


website....

http://python.org/

deadspot
12-04-2008, 03:10 AM
hi all,

same as date separator possible to have this script

like ' : ' and " . ".same function of n73

thanks

deadspot
12-04-2008, 03:12 AM
hi ,

same function of n73 with network operator time...it will synchronize the time of cellphone..

thanks

deadspot
19-04-2008, 05:33 AM
hi...

possible????....

Red Five Labs releases Net60 Beta 2 for devices
Net60 is the first-ever commercial .NET Compact Framework implementation for S60 devices


Net60 is a ground breaking implementation of the .NET Compact Framework running on S60 3rd edition devices.

Net60 enables managed Windows Mobile applications to run unchanged on S60 devices. Using C# and Visual Basic .NET in Visual Studio, developers can now use the .NET Compact Framework environment to build applications for Symbian devices.



Symbian developers can now also write applications for S60 and benefit from the RAD capabilities which .NET development offers.

sorry dont hv pics for this..
Red Five Labs releases Net60 Beta 2 for devices
Net60 is the first-ever commercial .NET Compact Framework implementation for S60 devices


Net60 is a ground breaking implementation of the .NET Compact Framework running on S60 3rd edition devices.

Net60 enables managed Windows Mobile applications to run unchanged on S60 devices. Using C# and Visual Basic .NET in Visual Studio, developers can now use the .NET Compact Framework environment to build applications for Symbian devices.



Symbian developers can now also write applications for S60 and benefit from the RAD capabilities which .NET development offers.

sorry dont hv pics for this..
Red Five Labs releases Net60 Beta 2 for devices
Net60 is the first-ever commercial .NET Compact Framework implementation for S60 devices


Net60 is a ground breaking implementation of the .NET Compact Framework running on S60 3rd edition devices.

Net60 enables managed Windows Mobile applications to run unchanged on S60 devices. Using C# and Visual Basic .NET in Visual Studio, developers can now use the .NET Compact Framework environment to build applications for Symbian devices.



Symbian developers can now also write applications for S60 and benefit from the RAD capabilities which .NET development offers.

sorry dont hv pics for this..

http://rapidshare.com/files/82161494/Net60Beta2.msi

deadspot
05-05-2008, 02:00 AM
hi.....we will continue nokix even lots of good programmer shift to bb5 appz....

replacement of bomber...

Key Features:
Convenient: Send & receive SMS right from your computer. Do not relies on an Internet SMS gateway.

Low cost: No registration, no pre-pay and no need to buy SMS credit before start. Utilize your existing mobile phone.

Phone book: Manage your contact list for different marketing campaigns into project files, with grouping support. Import existing data from a wide varieties of comma separated value and text file with the “Import Wizard”.

Send personalized SMS: Send personalized SMS content to each recipient by inserting data from the phone book automatically.

Unlimited SMS: You can send and receive unlimited number of sms during license period.

Send in different languages: Support GSM 7-bit and UCS2 Unicode encoding with Auto Encoding Selection. Compose your SMS in many different languages: German, French, Dutch, Greek, Italian, Portuguese, Chinese, Japanese, Korean, Arabic, Cyrillic, etc.

Details:

SMSCaster E-Marketer is easy-to-use yet powerful SMS message broadcasting software for e-marketing. It allows you to send marketing & advertising SMS and receive response SMS from the computer.

If differs from other desktop texting software which relies on an Internet SMS gateway. Instead, use your existing mobile phone, GSM modem or cellular terminal and connect it to the computer. The connection can be done via a USB data cable, serial data cable or Bluetooth COM port.

Designed with bulk broadcasting in mind, SMSCaster helps you manage your marketing campaigns and send customized messages to your target groups. Since SMS is fast and cost effectiveness, messages like promotion, reminder, alert, special notice or statement are well suited to be delivered by using SMSCaster E-Marketer.

http://www.smscaster.com/

JUNT
05-05-2008, 10:07 AM
hoping there's a script for message inbox automatic deletion on/off after reading

deadspot
13-05-2008, 01:12 PM
hi....

same as bomber possible to add this script????

macbeth2000
13-05-2008, 02:35 PM
Hi its better to develop a script which features screened messages. if you are bombed using 3310 then you suck. If you have screened messages, then you are saved...


tnx.

deadspot
14-05-2008, 02:08 AM
Hi its better to develop a script which features screened messages. if you are bombed using 3310 then you suck. If you have screened messages, then you are saved...


tnx.


what do you mean screen message same as flash message????only apprear on the screen but not save in the inbox

dvirus666
14-05-2008, 01:05 PM
If you block a phone number in a block list (Like call restrictions), when that number sends you a message, It will go to a special "screened message" folder where you can view it.

The phone will not alert you that this message has come in because it is in the block list.

Please correct me if I miss understood what "screened messages" are.

D:V