Hi,
Working on the word dictionary lookup.
Lets say I have the following TXT file:
______________________________________________________
aaas
aaal
aaa
aaberg
aachen
______________________________________________________
If I use the following code:
oneWordIndex as integer
oneWordIndex = FindString( DictionaryString[0], "aaa", 1, 1 )
CreateAndInitializeOutlinedText(TRUE, CurrentMinTextIndex, str(oneWordIndex), 999, 20, 255, 255, 255, 255, 0, 0, 0, 1, (ScreenWidth/2)-150, ScreenHeight/2, 0)
it won't work correctly because "aaas" contains "aaa"...
How would I properly read one string line from a MemBock?
Hope someone can help, have much more work to do on this game soon!