ActionScript 3.0 :: Get Poll/Evaluation Quiz Template?
Nov 14, 2011
I have decided of using AS3 on my Evaluation Quiz because only AS3 supports saving pdf file. I need this feature for reports/tracking.
The question now is where can I get Poll/Evaluation Quiz Template?
View 2 Replies
Similar Posts:
Jul 19, 2009
I am still using flash 6.0, the version the school gave me, anyway first of all are there any updates available somewhere? I'm still with the original 6.0000000 version. I am creating a flash quiz using the templates available, it's really easy and everything is going well. However, is there a way to redirect the user (getURL) if he has a percentage of say, 80% or higher?
View 16 Replies
Jul 31, 2009
I am creating a quiz using the quiz template in Flash. I was wondering if it is possible to replace the shape of nextBtn with some other picture/drawing? nextBtn is the button you click on to go to the next question. I tried "Swap symbol" but then I lose all the code attached to the original button (movie).
View 1 Replies
Nov 19, 2009
Does anyone have a simple template that hooks a flash quiz up to an lms using scorm?
View 2 Replies
Jul 21, 2010
Anyone know where to start thinking about logic for an XML quiz with multiple correct answers, that when the user gets the question right, that question is removed from the random array of questions so we never need to answer it again?
View 0 Replies
May 24, 2010
If you make multiple flash files from the same template and then edit that template, will all those files have those same changes? If not, is there a way to make the same change on multiple files at once? Basically the same idea as linking HTML files to a single CSS file...
View 1 Replies
Mar 29, 2004
Jesus Christ - I thought I was really good in flash.Got this template and I can't see S***.
WTH - is it supposed to be this difficult to manipulate a template or am I stupid???
Go into project explorer and can't see much AS so how the hwll are they getting the images and text into the flash swf. By the html??? I don't think so.
View 5 Replies
Jul 14, 2009
I need to create a website that has only one question on it, and then displays the poll results automatically after a user makes a selection, showing the overall results updated in real timepoint me in the right direction on where to get started with this.I imagine I will need some php and possibly mysql to make this guy go.
View 5 Replies
Nov 7, 2011
I'd like to tell if a certain key is being held down around the startup of my AIR (desktop) application, and I'd like to tell if a specific key (ALT in this case) is being held down. Unfortunately, flex seems to be so event based that there is no way poll the keyboard directly. Can anyone verify this?
I know that it's possible to take the keyboard events and keep track manually. However, this won't work if the user presses the key right before startup, so it isn't a solution for my specific problem.
View 2 Replies
Jan 25, 2010
var btn:Button;
if(btn != null && btn.label != '') {
mx.controls.Alert.show("d");
}
In the above if clause, is it guaranteed that the first condition(btn != null) will be evaluated before the second condition?
View 2 Replies
Aug 16, 2010
We have developed a web application. (Eclipse - Dynamic Web Project). We are deploying it as .war file. We want to implement evaluation period license check on this .war file. (Most of the functionalities are Java SOAP Web services and Web UI is in Flex). I have written a Java code for generating the license file and thread for checking the remaining days. (Checking is continuous as the application is supposed to run for days). What is the best way to implement this functionality on the web application using the generated license file?
View 1 Replies
May 2, 2011
Flash is returning decimal floating point formats in evaluation results under the IEEE 754-1985 format.I looked it up and this seems to be how ActionScript 3 was designed to follow that standard which creates these results.This doesn't happen in the ActionScript 2 compiler. It only happens under ActionScript 3, paste these trace statements and compile so you can see what I mean:
Code: Select alltrace(48.48 + 0.01) // returns 48.489999999999995
trace(18.48 + 0.01) // returns 18.490000000000002
this one is ok: Code: Select alltrace(18.49 + 0.01) //returns 18.5
I need a two decimal place precision result as this is for an algorithm that I'm trying to use to round up or down by a penny so I can't simply convert it to an integer but there's no pattern that I can see so I can predict results for it either.I can't have a $18.8999999999995.
View 2 Replies
Sep 26, 2004
Is there any function in flash that allows for 'in-line evaluation'?
For example, in php I can type
eval ( 'php statement here' );
and php will execute 'php statement here' as if I typed it as a command. I'm trying to execute dynamic code is the problem.
View 7 Replies
Jul 20, 2009
Simply put, is there short circuit evaluation in flash. If not, is there a way to do something like it and still retain the elegance of short circuit evaluation?
View 5 Replies
Apr 22, 2011
Is there a light weight expression evaluator for as3. It should take in a string as a input
something like "5 < 2" and evaluate it to a Boolean say true or false. Of course I gave a simple example but the expression could be complex too. "(3 < 5) && (2 > 5 )"
View 14 Replies
Sep 26, 2004
Is there any function in flash that allows for 'in-line evaluation'? For example, in php I can type
eval ( 'php statement here' );
and php will execute 'php statement here' as if I typed it as a command. I'm trying to execute dynamic code is the problem.
View 7 Replies
Oct 30, 2006
I am currently looking for a tutorial that will explain how to build a flash poll. This is for a website I�m working on. However, the server is not PHP friendly. Thus, I am looking for a Flash poll ASP tutorial.
View 1 Replies
Nov 15, 2007
I have the following function:
Code:
getInfo = function (input, arrayData, desiredResult)
{
[code].....
View 1 Replies
Jan 30, 2010
Has anyone any good links to an flash poll tutorials?
I have looked at one on Activeden,One that shows a percentage of votes preferably
View 0 Replies
Apr 5, 2004
i would like to make a voting poll with flash mx, how can i do it ?
View 2 Replies
Sep 26, 2011
I'm attempting to connect to an existing Comet-style long-poll service using an AIR app. The service expects a client to make a GET request with a Connection: Keep-Alive header. This request will remain open for long periods of time so that the server can push data through. In my app, the connection is terminated with an IOError after 30 seconds.
Is this an undocumented limitation of URLStream? A restriction on adl (I've only been running my app through adl)?
The server does not send any "keep-alive" messages to the client but, unfortunately this is not something i have control over.
Update
To test this, I've set up a stripped-down version using a little php script (linked by leggetter below) and am hitting it from a simple AIR app. I'm finding that my connections are closed after 30 seconds whether I use URLStream or URLLoader. the PHP:
<?php
set_time_limit(0);
sleep(40);
[Code]....
If i adjust the initial sleep time in the php script to anything over 30 seconds, the IOError event is triggered. If I lower the sleep time, but the request continues adding data past 30 seconds, the onComplete event is called, but _urlLoader.data is empty.
The only way this process completely successfully is if the entire thing is over before 30 seconds elapses.
View 1 Replies
Jun 26, 2009
I have a flex application that repeatedly polls a remote XML file to detect changes, but I've found that once the file hits a certain size, the poll blocks the UI and makes the page unresponsive for a short time.
Is there any way to ensure that the call made to the server or the event from the flash.utils.Timer class runs asynchronously to the main UI thread?
View 3 Replies
Apr 20, 2004
I've been using Flash for a while now but have just started using Flash Combined with XML. I'm trying to make a poll system in flash which grabs data from a PHP generated xml file. This is the contents of the xml file at the moment.
[Code]....
View 1 Replies
Dec 13, 2010
I am getting this back:
TypeError: Error #2007: Parameter text must be non-null.
at flash.text::TextField/set text()
[code]....
View 1 Replies
Mar 8, 2011
Basically I have a sales presentation showing on a screen in various offices where I work. These show daily sales figures that can change as and when somebody makes a sale. I have an swf loading data from an XML file into slides and everything works great apart from if the XML file changes at the moment I need to force a refresh (manually). I'd like to make it so that if the file changes it automatically reflects in the swf. So far my research has pointed me to AS3 Socket Communication but I haven't been sucessful in finding a relevant tutorial.My code is below,
[Code]...
View 1 Replies
Jan 10, 2010
I have to do a quiz, which will be a random 5 questions from among the 20 I have no idea how to go about doing this, please help.
View 2 Replies
Mar 10, 2007
i made a quiz in flash using actionscript:
At the end I have to sum the answers and show the result to the user but I can't get it.
Here is the code (I'm kind of new to actionscript, sorry if the code it's too long):
Code:
var p1=0;
var p2=0;
var p3=0;
[Code].....
View 5 Replies
Mar 10, 2010
I am writing a module and I have a section in this flash file where a quiz comes up and if you don't click on the right answer it tells you to try again. If you click on the right answer it will load the next swf file. But I can't get this last part to work. The quiz is within an xml file.
var current:Number = 0;
var qbox:Sprite = new Sprite;
var quiz:XML;[code]....
So where it says "if(correct) {" on the bottom, I want the file this file to go to the next swf file not say "Correct!".
View 1 Replies
Mar 21, 2009
How I can make a simple personality quiz in Flash? I've been searching for months for quiz/test codes, tutorials, examples, etc...but I can't find one that would work for a quiz with no "right" or "wrong" answer.
Basically what I want to do is have the user click on statements that they agree with, or answer questions that would lead to one of two possible results.
View 1 Replies
Jul 27, 2009
I have a simple quiz (Q and A) to design that contains both input fields as well as dynamic fields which gets a value (text or number) from an onClick action. When i submit the form, using the code from this thread (http://board.flashkit.com/board/show...hreadid=766156), i managed to get the input fields content to get saved on to the CSV file, however the dynamic content doesn't. it only works when i literally type the value in the text field.
View 8 Replies