Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

simple dictionary application using actionscript 3.0 SQLite database

Guest
Nov 26, 2015 Nov 26, 2015

how to make a simple dictionary application using actionscript 3.0 and sqlite please explanations sorry if my language is irregular because I use google translate please explanations and script how to make a simple dictionary application using actionscript 3.0 and sqlite


Message was edited by: tar mizi

TOPICS
ActionScript
541
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 26, 2015 Nov 26, 2015

what do you mean by, 'simple dictionary application'?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Nov 26, 2015 Nov 26, 2015

Read data from searching text field only n read on dynamik text not datagrid

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 26, 2015 Nov 26, 2015

you can use the indexOf() method of strings to search one string for another.  eg,

function containsF(s:String,searchS:String):Boolean{

if(s.indexOf(searchS)>-1){

return true;

} else {

return false;

}

}

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Nov 26, 2015 Nov 26, 2015

oke, i get try thanks so much...

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 27, 2015 Nov 27, 2015
LATEST

you're welcome.

(p.s when using the adobe forums, please mark helpful/correct responses, if there are any.)

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines