Jump to content

Any research script about mobile T9 ?


Recommended Posts

Hello to all,

toady i've read about T9 mobile 'engine'

Anyone have post an example about this writing mode?

Can be usefull to write senteces with remote instead using keyboard

or virtual keyboard...

Sorry for bad english,

m.

I use T9 or 'Word' for my cell. It's actually very effecient. As far as having something like that for the computer I'd have no idea.

Google it. If you find something good don't forget to give us a link :P

Link to comment
Share on other sites

my idea is not so mad :P

Can anyone help me to match insert number, with given 'T9 vocabolary' ?

T9vocabolary.txt

2;a
4;I
23;be
26;an
26;am
27;as
28;at
29;by
36;do
43;he
43;if
46;in
46;go
47;is
48;it
63;of
63;me

Here the example code :

(not working, need help)

#include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>
#include <Misc.au3>


Opt('GUICloseOnESC', 1)
GuiCreate('Number -> words', 200, 190)
$input = GUICtrlCreateInput("",10,10,180)
$listbox = GUICtrlCreateList("",10,30,180)
GuiSetState()


While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_CLOSE
            Exit
    EndSelect
WEnd

To explain mebetter :

- insert number 36

- program read all dictionary file

- when 36 is found return word 'do' in box

- allow to select

if :

-insert nuber 46

- program read all dictionary file

- and retur 2 or more corrispondant values (in & go)

- allow to select one of them

anyone can help ?

m.

Link to comment
Share on other sites

Hello,

anyone can help me learn how to build GUI and use text file as database ?

or suggest any other post where to read&learn ?

Test example function _Arrayfindall :

#include <Array.au3>

Local $avArray[5] = [0, 1, 2, 1, 0]
Local $aiResult = _ArrayFindAll($avArray, 0)
_ArrayDisplay($avArray, "$avArray")
_ArrayDisplay($aiResult, "Results of searching for 0 in $avArray")

very near to my final goal, but i've not idea how :

- put in array filetext rows

- filtre result based on user entry (EG: display only first char matching)

- theory in general (array, text file)

Thank you,

m.

Edited by myspacee
Link to comment
Share on other sites

  • 3 weeks later...

read a lot and doesnt exist any program free that emulate T9 input from remote for home teathre PC.

Find also lod3n post on this argument

and interesting script about T16 (not working 'cause miss lib)

Anyone can help me to build an enbrional input mode ?

post gui to star from list functions needed

#include <GUIConstants.au3>

#Region ### START Koda GUI section ### Form=c:\documents and settings\a.giarrizzo\desktop\formmain.kxf
$FormMain = GUICreate("g_szVersion :T16", 161, 386, 204, 426)
$Input = GUICtrlCreateInput("", 0, 0, 155, 21)
$List = GUICtrlCreateList("", 0, 220, 155, 123)
GUICtrlSetData(-1, "")
$zero = GUICtrlCreateButton("0", 0, 184, 73, 33)
$uno = GUICtrlCreateButton("1", 0, 144, 33, 33)
$due = GUICtrlCreateButton("2", 40, 144, 33, 33)
$tre = GUICtrlCreateButton("3", 80, 144, 33, 33)
$quattro = GUICtrlCreateButton("4", 0, 104, 33, 33)
$cinque = GUICtrlCreateButton("5", 40, 104, 33, 33)
$sei = GUICtrlCreateButton("6", 80, 104, 33, 33)
$sette = GUICtrlCreateButton("7", 0, 64, 33, 33)
$otto = GUICtrlCreateButton("8", 40, 64, 33, 33)
$nove = GUICtrlCreateButton("9", 80, 64, 33, 33)
$num = GUICtrlCreateButton("Num", 0, 24, 33, 33)
$div = GUICtrlCreateButton("/", 40, 24, 33, 33)
$mult = GUICtrlCreateButton("*", 80, 24, 33, 33)
$add = GUICtrlCreateButton("+", 120, 64, 33, 73)
$sub = GUICtrlCreateButton("-", 120, 24, 33, 33)
$enter = GUICtrlCreateButton("Enter", 120, 144, 33, 73)
$dot = GUICtrlCreateButton(".", 80, 184, 33, 33)
$Menu1 = GUICtrlCreateMenu("&File")
$Menu11 = GUICtrlCreateMenuItem("Open", $Menu1)
$Menu12 = GUICtrlCreateMenuItem("Save", $Menu1)
$Menu13 = GUICtrlCreateMenuItem("Import", $Menu1)
$Menu14 = GUICtrlCreateMenuItem("Exit", $Menu1)
$Menu2 = GUICtrlCreateMenu("&Help")
$Menu21 = GUICtrlCreateMenuItem("Help", $Menu2)
$Menu22 = GUICtrlCreateMenuItem("About", $Menu2)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit

    EndSwitch
WEnd

please need only few informations to start.

thank you,

m.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...