Furqan is a Quran API for Adobe AIR.
The library contains an embedded SQLite Holy Quran database. The database itself contains uthmanic text and imlai text.
Uthmanic text uses Uhtmanic HAFS official font from King Fahd Glorious Quran Printing Complex.
The anwser to this question is detaild in two points :
- The library contains an embedded SQLite databse. SQLite databases are available only for Adobe AIR Runtime.
- Flex do not handle arabic text direction when it is loaded from an XML file, so the text is inverted.
Simple create an instance of Quran class
quran = new Quran();
quran.getSuwarCount() : Returns the number of Sura in Quran => 114
quran.getAyatCount() : Returns the number of Ayat in Quran => 6236
quran.getBasmalah() : Returns an Aya instance containing the Basmalah.
quran.getAya( 1, 1 ) : Returns an Aya by specifying its sura number and its number.
quran.getAllAyat() : Returns an array containign all Ayat of Quran.
quran.getSura(1) : Returns a Sura and all its Aya.
quran.getSuraByName("الفاتحة") : Returns a Sura and all its Aya.
quran.getSuwarNames() : Retursn an array containing names of all Surat in Arabic.