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

simple dictionary application using actionscript 3.0 SQLite database

Guest
Nov 26, 2015 Nov 26, 2015

Copy link to clipboard

Copied

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

Views

303

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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;

}

}

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

oke, i get try thanks so much...

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

you're welcome.

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

Votes

Translate

Translate

Report

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