Quiz application in flex
Here is the main screen shot of quiz application. its like a gadget and you can have it in side bar.
On click of any choice it opens a new page which shows the result and flex chart to show the overall result.
How did i achieve it?
Well, here is the procedure:
Create a lotus notes db and a form to post the questions with answer, options and some other info.
Have a view which returns the value in XML format.
Getting the question and choices in the flex application by using URLLoader.
As of now i am attaching the screen shot of flex code.
Main screen part completed. Working on Quiz Rresult page.
Once everything is completed without any loopholes, i will post the entire flex code and lotus notes db used.
If you have any queries please feel free to post in comments box.
On click of any choice it opens a new page which shows the result and flex chart to show the overall result.
How did i achieve it?
Well, here is the procedure:
Create a lotus notes db and a form to post the questions with answer, options and some other info.
Have a view which returns the value in XML format.
Getting the question and choices in the flex application by using URLLoader.
var urlLoader:URLLoader = new URLLoader();
urlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
urlLoader.load(new URLRequest(DBPath+"/QuizView?OpenView"));
As of now i am attaching the screen shot of flex code.
Main screen part completed. Working on Quiz Rresult page.
Once everything is completed without any loopholes, i will post the entire flex code and lotus notes db used.
If you have any queries please feel free to post in comments box.