Professional :: Creating A Flash Object To Mark A SCORM 1.2 Course As Completed
Apr 28, 2010
I am working in an Articulate program that is flash based. I don't get much control over the way parts of it function, so I have added a lot of extras to it via flash movies I inserted.
There is one thing I am trying to figure out. I want to add an object that tells the LMS to mark the course complete. I don't need it to check if the score has been submitted or anything like that, by the time a student gets to this object, the test should be done. I just need a flash movie object I guess with the script that writes the completed status to the LMS.
View 1 Replies
Similar Posts:
Nov 28, 2011
I need to make Flash AS2.0 SCORM 1.2 fully compliant.I have used pipwerks 1.2 wrapper as a example, and the paging works. However I also need an example that does the following: User name Scoring, Time taken etc.I have tried adding cmi.core.score.raw (In AS 2.0) to get score working but when I test it in Scorm test suit, it does not work, and is not scorm compliant.So can someone tell me how to make flash AS2.0 (and AS3.0) Scorm compliance i.e. what AS code do I need to add by ways of code examples.Also what is the best test suit to test it is scorm compliant?
View 1 Replies
Oct 26, 2011
[URL]
From this picture example, how do you assign a command to a column for it to respond based upon a value you give it. For example, if I click on the lease tab, how do I set to respond after clicking once where everything in the colum shows at the top from smallest # to greatest. Then if I hit the tab again, it will do the opposite.
Another example, lets stay I click on the word name I would like the columns under it to display in alphabetical order .
Additionally I would like to include a check marker that displaced the price upon which item you select and then set that for purchaes.
View 0 Replies
Oct 15, 2009
1. How to remove rec_mc after the tween is completed?
2. How to insert a period of time in between two states?
ActionScript Code:
import gs.TweenLite;
changeRectangle();
removeRectangle();
function changeRectangle():void{
TweenLite.to(rec_mc, 5, {tint:0xFF0000, alpha:1, x:150});
} function removeRectangle():void{
removeChild(rec_mc);
}
View 3 Replies
Sep 16, 2009
I'm trying to use the BitmapData.draw() method on a sprite which I create through my own external class, but all I was getting was white. Finally figured out that it was taking a half a second or so for the sprite to pop up on the stage, and the draw method was apparently "pixelizing" it before it was drawn.
So my question is, how does one know when a non-loaded object is "ready"? Do I need to add my own event sent from the end of the external constructor code? I don't want to modify the class just to snap a picture of it. Waiting an arbitrary amount of time with a timer seems wasteful too.
Code: Select allvar bc:BarChart = new BarChart(500, 300);
addChild(bc);}
var bitmapData:BitmapData = new BitmapData(500, 300);
[Code].....
View 5 Replies
Dec 7, 2010
I'm loading a bunch of swfs into my movie and when they are finished loading I need to change each swfs color based on my xml data. My problem is when my Event.COMPLETE fires I don't know which loader it belongs to to retrieve the correct xml. I've tried giving my loaders names but I can't seem to access the name from the Event.Complete function. My trace causes the error: Property name not found on flash.display.LoaderInfo and there is no default value. How do I access my loader name?
for(var w3:int = 0; w3<cartXML..item.length(); [code].....
View 3 Replies
Apr 7, 2011
1, Is it possible to change the dimensions of a .swf/.fla file once completed?
View 1 Replies
Nov 7, 2008
I recently finally moved across to my Mac for all of my development work. The main problem I have come across is not being able to test any of my work in a SCORM test suite. The one I have on my PC is the ADL test suite which does not appear to be compatible with the mac, so does anyone know of a suite that is?
View 3 Replies
Feb 26, 2010
I have custom flash e-learning course and it has 30 swfs and one main swf. I need to do a SCORM package and upload it on LMS.
View 1 Replies
May 7, 2010
I've created a class based eLearning app that's based around flash engine which draws in XML and generates all the non tracked and tracked pages dynamically from the external content (it's multilingual and class template driven)I now have to make it 'Scorm compliant'
That is where i'm coming unstuck. I've only ever seen scorm apps as a physical file per tracked 'page / SCO'Where as I have literally a single swf and external xml, images, videos etc that are being drawn in at runtime.Is there a way of setting up the manifest so that it can target the one active/engine swf file but I can send complete/score/inprogress etc data back for each 'page' that has been completed. I'm tracking all the completion, time and score data etc internally to the flash app but haven't the first clue how to pass it out to Scorm so that data is recorded for each tracked page in each tracked module.
View 2 Replies
Nov 19, 2009
Does anyone have a simple template that hooks a flash quiz up to an lms using scorm?
View 2 Replies
Feb 17, 2010
How do you record / save a button press in Flash as3 and send it to moodle via scorm? I have two buttons, 'choice1' & 'choice2', and would like the users' choice to be recorded to SCORM. I just need to send 'some text' to moodle when the user presses either button.
Have been pointed to 'cmi.interactions' but after spending the entire day trying to find a working example, I'm completely lost. There appear to be no coded examples anywhere.
View 4 Replies
Jul 19, 2010
I am using a php mp3 handler script that I use as a parameter,but it seems to mess everything up just because there is a question mark after .php for my get variables. If I remove the question mark (mp3_handler.php?), the player appears, but with the question mark, it shows up as a text box. The first player works fine. The second just appears as a textbox in IE.The second however works in every other browser!!!
UPDATE: IT SEEMS TO BE THE second QUESTION MARK, but I do not see a way around this.. Oddly enough, the first question mark does not make a difference
<object width="165" height="37" id="niftyPlayer1" align="">
<param name=movie value="nifty/niftyplayer.swf?file=song.mp3&as=0">
<param name="wmode" value="transparent">[code].....
View 2 Replies
Feb 20, 2012
Actionsctipt code:
on(press)
{
getURL(escape("address.html?0"));
}
This works absolutely fine in Internet Explorer but in Chrome in the question mark is obviously made into "%3F". how I can stop this from happening and still keep it compatible with IE and other popular browsers?
View 2 Replies
May 28, 2010
I have an XML file which contains some texts, let's say testimonials or something like that. It contains characters like commas, inverted commas, question marks, periods etc. But it does have exclamation marks too.. I think exclamation mark is an invalid character in XML. Anyway, how to display this exclamation mark in dynamic text in AS3? The XML is modifying by a third person. So it will be difficult if we say type this pattern to replace it for exclamation mark....
View 5 Replies
Jul 9, 2010
I am working on a game and would like to put code for different levels on the same timeline layer, mark the frames with labels (level1, level2...) and add different action script to it. Can this be done, and are there some limits. It is a small tetris like game, and each code would be mainly adding children to a stage, from an array and checking for a collision with objects added on a different layer on the same frame as the label. Also it would change score and so on.
View 2 Replies
Nov 10, 2009
I am trying to create a video that can be streamed on a website. The video started with a screen grab of the video on frame one. This has the action on stop();. When this screengrab is clicked, gotoAndStop(2); is fired and the timeline moves to frame 2 and the video starts to stream. All is well... Except from when the video finishes...
When the video finishes I have tried using the code
on (complete) {
gotoAndPlay(1);
}
To go back to the origonal screen grab on frame one but it doesnt seem to budge.
View 1 Replies
Jun 21, 2011
I have got a flex app that communicates with a Scorm-API.When i run a javascript function from flex with "adl.nav.request" , i have to make a terminate function to make it happen which unloads the whole system,becouse this function updateds an "imsmanifest.xml" file. This xml is updated this time. This xml contains all the items that are connected to the index.hml which runs the flex app. That is why its refreshes. But i don't want my flex application to restart too.
View 2 Replies
Aug 4, 2011
How would I write a procedure that would build this array such that I could choose as many parameter names such as KBP? I wanted?
public var expenses:ArrayCollection = new ArrayCollection([
{Impact:"A", KBP1:1, KBP2:0, KBP3:0, KBP4:0 },
{Impact:"B", KBP1:0, KBP2:0, KBP3:0, KBP4:0 },
{Impact:"C", KBP1:0, KBP2:2, KBP3:3, KBP4:0 },
[Code]....
View 2 Replies
Jan 5, 2011
We would like to start creating RIA using Flash, focusing more-so on the side of enterprise level web applications rather than simple Flash animations. I need to start getting my design/development group here up to speed on Flash, but cannot make heads or tails of the software to focus on from Adobe. Flash Professional CS5, Flash Catalyst CS5 or Flash Builder 4?
View 3 Replies
Aug 22, 2011
I have one MXML File as
<objecthandles:ObjectHandles xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" backgroundAlpha="1" xmlns:mx="library://ns.adobe.com/flex/mx"
[code].....
View 1 Replies
Jan 6, 2011
I published my fla as scorm 1.2 tracking. I ziped up my files and loaded to lms. It will not write the score. It runs and functions ok but does not write score.
fscommand ("LMSSetValue","cmi.core.score.min,0");
fscommand ("LMSSetValue","cmi.core.score.max,100");
fscommand ("LMSSetValue","cmi.core.score.raw,85");
[code]....
View 9 Replies
Mar 31, 2011
I created a simple fla with two frames. Frame two has this code below to write a score to the lms (blackboard).I published my fla as scorm 1.2 tracking. I ziped up my files and loaded to lms. It will not write the score. It runs and functions ok but does not write score.[code]
View 4 Replies
May 3, 2010
I will like to make buttons in Actionscript 2 or 3 that permit the user to go backwards or forwards in the elearning, id that possible?
View 2 Replies
Dec 10, 2007
how to set the objectives of a SCO within the LMS reporting of SCORM?
Here is what I have so far:
ActionScript Code:
var theScore = 10;
var theStatus = "c";
var intData = theStatus+";"+"mytestobj"+";"+theScore;
fscommand("MM_cmiSendObjectiveInfo",intData);
The only thing tracking in the LMS is "mytestobj" which is reporting as the objective name.
View 2 Replies
Nov 11, 2009
My ultimate goal in learning ActionScript 3 is to be able to create cool flash learning interactions for English language learners. All the different activities - drag and drop, multiple-choice - image hotspots etc - multiplayer mode on Grammar Challenge - would record a score which could be output in a SCORM format for a VLE such as Moodle or BlackBoard. The Flash interactions would run inside the VLE inside a simple CSS template content holder div which is resizable and is part of an elastic template. If I can do all that i will rule the world :-)
I've just started reading OReilly.Learning.ActionScript.3.0.A.Beginners.Guid e and I'm finding it quite tough in places. I know a bit about data translation in flat files, EDI, csv but no real programming experience. The real problem is the ActionScript 3.0. I'm starting at the very beginning and have a long way to go. My FLASH skills as a designer are moderate. My questions will always relate to creating or publishing interactions for EFL learners. I hope to be in a position to answer some questions in the future. It's all about the learnin..
Is writing a scoring system that can accept scores from any interraction difficult to write? What kind of competance level would it require? Would that be a sane thing to attempt? The scoring system I'm thinking of would accept input from all over the stage. Right and Wrong answers would be recorded? Length of time spent on each activity - Essentially if I decide something is to be captured it is listened for - recorded and output in a structured, usable and maleable format such as XML. Can you buy generic scoring systems for FLASH? Is there a village somewhere where they're custom built like Harleys? A generic scoring system that acts like a CLASS import to my as file - I just setup the addlistener, configure a few things and FLASH file records the data for outputs to SCORM. That would be really cool. It'd be a major milestone on the road to dominion.
View 0 Replies
Aug 27, 2011
in as2 i used a javascript function to connect with a javaScript wrapper for scorm and it work and now i moved to as3 so i am using the ExternalInterface.call instead of the getURL and that works but all the rest doesnt. know if in as3 i need to do more things to work with scorm?
View 3 Replies
Jan 26, 2010
flash cs4 launches fine but crashes when starting a new action script 3 doc. (quits unexpectedly) it seems to work fine when i log on as a guest user but not as myself (admin). MACPRO desktop OS10.6.2 what can i try to aleavate this problem.
View 1 Replies
Mar 1, 2010
I'm starting to get pretty good with flash cs4 creating banners. Is there a website with tutorials that I can get some more ideas on creating banners?
View 1 Replies
Jun 1, 2010
I am extremely new to Flash (using CS4) and want to create flash videos for display in web pages. I have used a few of the wizards and have gotten some rough, very amateurish looking results, but at least they work. I owuld now like to create a more professional looking product that has a nice looking player skin, a thumbnail preview that is typically included, and some sort of "Click to Play" button.
View 1 Replies