Re: [Flashcoders] SCORM development and packaging for LMS

2011-12-19 Thread Karina Steffens
Thanks, everyone! I feel much more comfortable committing to this project now. Karina On 19 Dec 2011, at 15:14, "John R. Sweeney Jr." wrote: > I've used this site and its great. You can upload and test your app. Track > the data (if your sending things back to the LMS), many, many other usef

Re: [Flashcoders] SCORM development and packaging for LMS

2011-12-19 Thread John R. Sweeney Jr.
I've used this site and its great. You can upload and test your app. Track the data (if your sending things back to the LMS), many, many other useful tools. Good luck. John R. Sweeney Jr. Senior Interactive Multimedia Developer OnDemand Interactive Inc Hoffman Estates, IL 60169 On Dec 1

RE: [Flashcoders] SCORM development and packaging for LMS

2011-12-19 Thread Karina Steffens
ne by hand? Thanks, Karina > -Original Message- > From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders- > boun...@chattyfig.figleaf.com] On Behalf Of Matt Perkins > Sent: 15 December 2011 5:30 > To: Flash Coders List > Subject: Re: [Flashcoders] SCORM devel

Re: [Flashcoders] SCORM development and packaging for LMS

2011-12-15 Thread Matt Perkins
ers-boun...@chattyfig.figleaf.com [mailto:flashcoders- >> boun...@chattyfig.figleaf.com] On Behalf Of Matt Perkins >> Sent: 15 December 2011 4:17 >> To: Flash Coders List >> Subject: Re: [Flashcoders] SCORM development and packaging for LMS >> >> Yeah a scorm package is

RE: [Flashcoders] SCORM development and packaging for LMS

2011-12-15 Thread Karina Steffens
d... Thanks, Karina > -Original Message- > From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders- > boun...@chattyfig.figleaf.com] On Behalf Of Matt Perkins > Sent: 15 December 2011 4:17 > To: Flash Coders List > Subject: Re: [Flashcoders] SCORM development a

Re: [Flashcoders] SCORM development and packaging for LMS

2011-12-15 Thread Matt Perkins
; > Thanks, > Karina > > >> -Original Message- >> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders- >> boun...@chattyfig.figleaf.com] On Behalf Of Nathan Mynarcik >> Sent: 15 December 2011 3:07 >> To: Flash Coders List >> Sub

Re: [Flashcoders] SCORM development and packaging for LMS

2011-12-15 Thread Nathan Mynarcik
If I remember correctly, I think it's just referring to the manifest.xml file. That's the backbone of your 'package'. Not sure what LMS I worked with at that time, but all I did was upload the files in it's own directory with the manifest file in the top leve of the course and then point the LMS

RE: [Flashcoders] SCORM development and packaging for LMS

2011-12-15 Thread Karina Steffens
shcoders- > boun...@chattyfig.figleaf.com] On Behalf Of Nathan Mynarcik > Sent: 15 December 2011 3:07 > To: Flash Coders List > Subject: Re: [Flashcoders] SCORM development and packaging for LMS > > I've used pipwerks SCORM wrapper with an elearning course I did a > couple &

Re: [Flashcoders] SCORM development and packaging for LMS

2011-12-15 Thread Nathan Mynarcik
I've used pipwerks SCORM wrapper with an elearning course I did a couple years back. Just ExternalInterface calls and letting the javascript do the dirty work for me seemed best for me at the time. http://pipwerks.com/2008/02/10/flash-demos-for-scorm-actionscript-classes-now-available/ -hth

Re: [Flashcoders] SCORM development and packaging for LMS

2011-12-15 Thread Matt Perkins
You can do it easily with flash - if you're comfortable with as. Take a look at the pipwerks scorm adapter (google it) for as3. You'll need to hit up the adl's scorm site to get the API PDFs too. I've got examples on my site too http://udon.nudoru.com Biggest question is if it needs to be scorm 1

RE: [Flashcoders] SCORM development and packaging for LMS

2011-12-15 Thread Merrill, Jason
Check out the Pipwerks SCORM API, it's a Javascript and Actionscript kit that will make your efforts in Flash and SCORM much easier. Jason Merrill Instructional Technology Architect II Bank of America Global Learning ___ -Original Message- From: flashcoders

Re: [Flashcoders] SCORM Q - Strategies for saving large suspend data strings

2010-07-28 Thread Matt Perkins
I found this same solution searching around the net - looks like it'll work perfectly. Thanks for suggesting it also! -- Matt Perkins - http://www.nudoru.com On Jul 28, 2010, at 9:53 PM, Juan Pablo Califano wrote: > PS: Just made a quick test with a rather big xml and this is wh

Re: [Flashcoders] SCORM Q - Strategies for saving large suspend data strings

2010-07-28 Thread Juan Pablo Califano
PS: Just made a quick test with a rather big xml and this is what I got (sizes are in bytes): xml: 49725 compressed bytearray: 9488 compressed bytearray + base 64: 12652 The figures may vary as the compression depends on the data, but at least here I got about a 1/4 of the original size after e

Re: [Flashcoders] SCORM Q - Strategies for saving large suspend data strings

2010-07-28 Thread Juan Pablo Califano
I'm not sure you are really going to gain that much by using JSON instead of XML. ByteArrays have built-in compression as you mention (I think the compression algorithm zlib). Since XMLs generally have a fair amount of redundancy, it will probably reduce the size of your data (in bytes) considerab

Re: [Flashcoders] SCORM Q - Strategies for saving large suspend data strings

2010-07-28 Thread Matt Perkins
Thanks, I'll look into that strategy -- Matt Perkins - http://www.nudoru.com On Jul 28, 2010, at 7:43 PM, Taka Kojima wrote: > The JSON encoder class might do it automatically by passing an XML object to > the constructor, idk, look into it maybe. > > It's also not very hard to

Re: [Flashcoders] SCORM Q - Strategies for saving large suspend data strings

2010-07-28 Thread Matt Perkins
Right, learn was probably a strong word. Just meant that I'd never used it before. Is there an automated was to convert the XML to JSON with AS3? -- Matt Perkins - http://www.nudoru.com On Jul 28, 2010, at 6:12 PM, Taka Kojima wrote: > There isn't really anything such as "learn

Re: [Flashcoders] SCORM Q - Strategies for saving large suspend data strings

2010-07-28 Thread Taka Kojima
The JSON encoder class might do it automatically by passing an XML object to the constructor, idk, look into it maybe. It's also not very hard to loop through an XML node and convert all of it's attributes and children nodes into an object, something like this: (I took 40 seconds to write this, p

Re: [Flashcoders] SCORM Q - Strategies for saving large suspend data strings

2010-07-28 Thread Taka Kojima
There isn't really anything such as "learning JSON", JSON is basically just an object, and is your best bet. You can convert an XML string to JSON, store it, and then when you need it reconvert it to XML if you really need to, but unless you're doing things with E4X that is probably unnecessary.

Re: [Flashcoders] SCORM?

2007-02-02 Thread Carolina Avila Coral
nnenoh" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, February 01, 2007 8:24 AM Subject: Re: [Flashcoders] SCORM? Thanks for all the info on SCORM, it really helped a lot. Carolina mentioned using objectives to record all 21 answers. Nice idea... But I

Re: [Flashcoders] SCORM?

2007-02-01 Thread Dave Mennenoh
Thanks for all the info on SCORM, it really helped a lot. Carolina mentioned using objectives to record all 21 answers. Nice idea... But I'm not entirely sure about what you mentioned regarding having to initialize them all first. I have an array of 21 values - can I just iterate that and set th

Re: [Flashcoders] SCORM?

2007-01-29 Thread Carolina Avila Coral
Hi Dave: I use scorm 1.2 version, when I need to more than one score I use objectives. Each objective works like the score, and it can allow you 21 questions, each objective can have min, max and raw. To work with objective you have to know that the objectives are zero-index, and in the

RE: [Flashcoders] SCORM?

2007-01-29 Thread Alain Rousseau
ver. They can be all in your package. Alain -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Mennenoh Sent: 29 janvier 2007 11:33 To: Flashcoders mailing list Subject: Re: [Flashcoders] SCORM? >>For your FLV, you should load it dynamically an

Re: [Flashcoders] SCORM?

2007-01-29 Thread Dave Mennenoh
For your FLV, you should load it dynamically and keep it external. We had lots of external assets used by our SWF (MP3, FLV, pictures) and we kept them out of the SCOs and out of the imsmanifest.xml, it was becoming hard to list all those files in there ! But if you only have a few external files

Re: [Flashcoders] SCORM?

2007-01-27 Thread Alain Rousseau
For your FLV, you should load it dynamically and keep it external. We had lots of external assets used by our SWF (MP3, FLV, pictures) and we kept them out of the SCOs and out of the imsmanifest.xml, it was becoming hard to list all those files in there ! But if you only have a few external fil

Re: [Flashcoders] SCORM?

2007-01-27 Thread Dave Mennenoh
Thanks for the info, but saying I should include the files in the manifest xml file is not saying I should need ti include them within the SCO itself. Do I need to? I can see from the perspective of allowing any LMS to deploy this SCO that the video files should be "in" the SCO... but is a 50MB

RE: [Flashcoders] SCORM?

2007-01-27 Thread Hairy Dog Digital
> Can the video content be kept outside of the SCO package? > Does it need to be included in the manifest XML file? I would strongly urge you to include any content files that are required to be included in the manifest. Technically, you may be able to get away with not including the FLVs in t

Re: [Flashcoders] SCORM?

2007-01-27 Thread Alain Rousseau
You have 2 solutions concerning your Quizz issue, 1. In case each question is a SCO, get the current score from the LMS with FlashVars and send the updated value to the LMS. 2. Have your quiz (all 21 questions) in only one SCO and send the score at the end. as for the FLV's they should be ref

RE: [Flashcoders] SCORM multi api wrapper

2006-10-25 Thread Alain Rousseau
I believe that you can't get any return value that way (not sure, could be wrong). What you need to do is call a javascript with proxy.call wich then (the javascript) calls another function that sends data to flash through the proxy ... A better way to do that, if you use Flash 8, is to use Exter

RE: [Flashcoders] SCORM

2006-04-25 Thread Beverly Guillermo
Hi, Have you tried http://www.adlnet.org ? It has forums and the actual SCORM specs too. I don't think there is a specific mailing list... But if you find one, let me know too. -beverly -Original Message- From: "Lieven Cardoen" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" ; o