LMS-Scorm template What to use in fscommand in fla?

Please help! I have search and read and nothing has seemed to
answer this question. I have created a complete/incomplete module
(no score needed...just show completed when user finishes) and
published it with Flash w/Scorm 1.2 tracking template. The movie
plays in the LMS but I still need something for my FLA that will
show it as complete in the last frame. Here what the scorm template
shows...
// Change g_bSetCompletedAutomatically to true if you want
the status to
// be set to completed automatically when calling LMSFinish.
Normally,
// this flag remains false if the Flash movie itself sets
status
// to completed by sending a FSCommand to set status to
"completed",
// "passed" or "failed" (both of which imply "completed")
var g_bSetCompletedAutomatically = false;
I need to know the script to set the status to "complete"
using an FSCommand in my FLA. I'm not an AS guru (surprised, huh?)
so need the format in plain language. Maybe this is so simple I
can't see it? I don't have direct contact with the LMS and just
forward files so I don't know anything about it (Pathlore). I know
there are newer things in 8 but just need this to work. HELP!
LM

I am in the same boat. If anyone can help out with this, that
would be great!!!...

Similar Messages

  • I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    The template is a document in itself, it is not applied to an existing document whether it is a Pages document or a Word document converted to a Pages document.
    You would need to either copy and paste content, using existing styles, or apply the styles to the converted Word document.
    You can Import the Styles from an existing document and those imported Styles can be used to override the current document's styles:
    Menu > Format > Import Styles
    The process is simplified if the styles use the same names, otherwise you will need to delete the style you don't want and replace it with the one that you do want when asked, then the substitution is pretty straightforward.
    Peter

  • What is     xsl:template match="/TxTemplate" used for?

    I have the following lines of code from the beginning of my html.
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html" />
    <xsl:template match="/TxTemplate">
    Does anyone know what <xsl:template match="/TxTemplate"> does or how template match is used?

    If my XML data instance is like this:
    <?xml version="1.0"?>
    <records>
    <record id="1">
    <column name="X">data goes in here</column>
    <column number="Y">more data goes here</column>
    </record>
    <!-- More records go here -->
    </records>
    I might make a XML stylesheet like this:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html" />
    <xsl:template match="records">
    <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="record">
    <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="columns">
    <!-- XSL processing stuff goes here; possible HTML conversion -->
    </xsl:template>
    The XSL template element (e.g. <xsl:template match="record">) is used to match XML elements in the instance and execute processing.

  • I want to create a 5" x 7" multiple page booklet in Pages  what kind of template do I use to make sure the information is on the right page and will print on the proper sheets?

    I want to create a 5" x 7" multiple page booklet in Pages.  What kind of template do I use so the text prints in order on the pages and on the right sheets?  HELP!!!!

    While there are templates available for several n page booklets, using them requires a separate template for each size (in pages) booklet you'll want to make.
    A better method is to use some form of imposition software for mac that will do the imposing (placing each page on the correct sheet) using a copy of your content, printed to a PDF document. The link is to a Google search using that phrase as the search term.
    For a more detailed discussion of imposition and some of the available software, see Peter Breis's post "imposing booklets" at the iWork Tips & Tricks site. (Scroll down)
    Regards,
    Barry

  • Captivate 4 and SumTotal 7.2 - SCORM Template

    Hello!
    I'm hoping someone has what I'm looking for.  Up until last week, we had been using Andrew C's SCORM template with Captivate 3 to publish courses to our SumTotal LMS (version 7.2). Everything worked beautifully!
    Now, we've updated to Captivate 4 and are trying to use the same template with Andrew's override behavior, but when we do, it disables any right-click's that we use in the simulation. It also disables the use of variables.
    I tried copying Andrew's override variables and functions to the new Captivate 4 template and I can get everything to work correctly except the right-click. Am I missing something? Or does anyone know if Andrew has released a revised SCORM publishing template compatiable with Captivate 4?
    *The template we have override's SumTotal's rather annoying urge to prompt for completion before the end of the course.
    I have attached the Captivate 3 template we were using, and the one I tried to create for Captivate 4. Any assistance in getting the Captivate 4 one to play nicely with right-click would be great!
    Thanks,
    Kristy

    Hi Kristie,
    Sounds like you have what we have been looking for in order to use Captivate with our LMS. If I could also request the files you mentioned to Sam I would greatly appreciate it.
    Thanks in advance.
    Perry

  • LMS / Scorm not updating the "cmi.suspend_data"

    Hi Guys,
    Dont know if anyone can help me but i am trying to get my Flash program to work with a LMS using SCORM.
    At the end of the module all i want to do is update the string.  It traces fine in Flash but doesnt actually update the LMS
    This should update a string when a module is complete. The code is below and any help would be great
    package classes
    import com.pipwerks.SCORM;//for SCORM support
              import classes.Main;
              import flash.display.MovieClip;
              import flash.events.*;
              public class ScormCode extends MovieClip
                        private var scorm:SCORM;
                        private var lmsConnected:Boolean;
                        private var lessonStatus:String;
                        private var success:Boolean;
                        public var VarLMSErrorMc:Boolean = false;
                        public var userFirstnameString:String = "";
                        public var completedModule:Boolean;
                        //Variable that is ticked once a page is COMPLETE
                        public var modulecompleted:Object = {
                        module1: 0,
                        module2: 0,
                        module3: 0,
                        module4: 0
                        public function ScormCode()
                                  trace("SCORM Intialized");
                                  //Initialize SCORM object (pipwerks SCORM class)
                                  scorm = new SCORM();
                                  //Connect to LMS. Can only be done ONCE.
                                  lmsConnected = scorm.connect();
                                  //Ensure connection was successful before continuing.
                                  if (lmsConnected)
                                            //Get course status
                                            lessonStatus = scorm.get("cmi.core.lesson_status");
                                            //Setup username
                                            var username_data:String = scorm.get("cmi.core.student_name");
                                            var splitter:Array = username_data.split(" ");
                                            var firstName:Object;
                                            firstName = splitter[0];
                                            userFirstnameString = String(firstName);
                                            //If course has already been completed, kill connection
                                            //to LMS because there's nothing to report.
                                            if (lessonStatus == "completed" || lessonStatus == "passed")
                                                      //DO SOMETHING
                                                      modulecompleted.module1 = 1;
                                                      modulecompleted.module2 = 1;
                                                      modulecompleted.module3 = 1;
                                                      modulecompleted.module4 = 1;
                                                      completedModule = true;
                                                      //Set course to complete
                                                      success = scorm.set("cmi.core.lesson_status","completed");
                                                      scorm.save();
                                                      scorm.disconnect();
                                            else
                                                      //If course has NOT been completed yet, let's
                                                      //ensure the LMS knows the course is incomplete
                                                      //by explicitly setting status to "incomplete"
                                                      success = scorm.set("cmi.core.lesson_status","incomplete");
                                                      var suspend_data:String = scorm.get("cmi.suspend_data");
    //Is suspend_data empty? Check the length of the returned string.
                                                      //If there's nothing saved, the LMS will return an empty string ""
                                                      if (suspend_data.length > 0)
                                                                //suspend_data is not empty, so we must have
                                                                //saved something in the last course attempt.
                                                                //Remember, we saved a our progress variables in
                                                                //a comma-delimited string; we can convert to an
                                                                //array using string.split(",").
                                                                var arrModulecompleted:Array = suspend_data.split(",");
                                                                //Assign the value to each of our planets.
                                                                //Be sure to convert string "1" to integer 1.
                                                                //The order of the array items was specified in
                                                                //saveCourseStatus() when we created the
                                                                //comma-delimited suspend_data string.
                                                                modulecompleted.module1 = parseInt(arrModulecompleted[0],10);
                                                                modulecompleted.module2 = parseInt(arrModulecompleted[1],10);
                                                                modulecompleted.module3 = parseInt(arrModulecompleted[2],10);
                                                                modulecompleted.module4 = parseInt(arrModulecompleted[3],10);
                                                      saveCourseStatus()
                                  else
                                            /* VarLMSErrorMc = true;*/
                                            //Ruh-roh...
                                            trace("Could not connect to LMS.");
                        public function checkComplete():void
                                  if (modulecompleted.module1 && modulecompleted.module2 && modulecompleted.module3 && modulecompleted.module4)
                                            setCourseToComplete();
                                            completedModule = true;
                                            trace("COURSE NOW COMPLETED!!!");
                                  else
                                            trace("COURSE NOT COMPLETED YET__________________________________________^^^^^");
                                            trace("M1: " + modulecompleted.module1 + ", M2: " + modulecompleted.module2 + ", M3: " + modulecompleted.module3 + ", M4: " + modulecompleted.module4);
                                            saveCourseStatus();
                        public function setCourseToComplete():void
                                  //Set lesson status to completed
                                  success = scorm.set("cmi.core.lesson_status","completed");
                                  //Ensure the LMS persists (saves) what was just sent
                                  scorm.save();
                                  //Disconnect from LMS;
                                  scorm.disconnect();
                        public function saveCourseStatus():void
                                   var suspend_str:String = modulecompleted.module1 + "," + modulecompleted.module2 + "," + modulecompleted.module3 + "," + modulecompleted.module4;
                                  //Send suspend_data string to LMS
                                  trace("M1: " + modulecompleted.module1 + ", M2: " + modulecompleted.module2 + ", M3: " + modulecompleted.module3 + ", M4: " + modulecompleted.module4);
                                  scorm.set("cmi.suspend_data", suspend_str);
                                  //Ensure the LMS persists (saves) what was just sent
                                  scorm.save();

    Hi Guys,
    Dont know if anyone can help me but i am trying to get my Flash program to work with a LMS using SCORM.
    At the end of the module all i want to do is update the string.  It traces fine in Flash but doesnt actually update the LMS
    This should update a string when a module is complete. The code is below and any help would be great
    package classes
    import com.pipwerks.SCORM;//for SCORM support
              import classes.Main;
              import flash.display.MovieClip;
              import flash.events.*;
              public class ScormCode extends MovieClip
                        private var scorm:SCORM;
                        private var lmsConnected:Boolean;
                        private var lessonStatus:String;
                        private var success:Boolean;
                        public var VarLMSErrorMc:Boolean = false;
                        public var userFirstnameString:String = "";
                        public var completedModule:Boolean;
                        //Variable that is ticked once a page is COMPLETE
                        public var modulecompleted:Object = {
                        module1: 0,
                        module2: 0,
                        module3: 0,
                        module4: 0
                        public function ScormCode()
                                  trace("SCORM Intialized");
                                  //Initialize SCORM object (pipwerks SCORM class)
                                  scorm = new SCORM();
                                  //Connect to LMS. Can only be done ONCE.
                                  lmsConnected = scorm.connect();
                                  //Ensure connection was successful before continuing.
                                  if (lmsConnected)
                                            //Get course status
                                            lessonStatus = scorm.get("cmi.core.lesson_status");
                                            //Setup username
                                            var username_data:String = scorm.get("cmi.core.student_name");
                                            var splitter:Array = username_data.split(" ");
                                            var firstName:Object;
                                            firstName = splitter[0];
                                            userFirstnameString = String(firstName);
                                            //If course has already been completed, kill connection
                                            //to LMS because there's nothing to report.
                                            if (lessonStatus == "completed" || lessonStatus == "passed")
                                                      //DO SOMETHING
                                                      modulecompleted.module1 = 1;
                                                      modulecompleted.module2 = 1;
                                                      modulecompleted.module3 = 1;
                                                      modulecompleted.module4 = 1;
                                                      completedModule = true;
                                                      //Set course to complete
                                                      success = scorm.set("cmi.core.lesson_status","completed");
                                                      scorm.save();
                                                      scorm.disconnect();
                                            else
                                                      //If course has NOT been completed yet, let's
                                                      //ensure the LMS knows the course is incomplete
                                                      //by explicitly setting status to "incomplete"
                                                      success = scorm.set("cmi.core.lesson_status","incomplete");
                                                      var suspend_data:String = scorm.get("cmi.suspend_data");
    //Is suspend_data empty? Check the length of the returned string.
                                                      //If there's nothing saved, the LMS will return an empty string ""
                                                      if (suspend_data.length > 0)
                                                                //suspend_data is not empty, so we must have
                                                                //saved something in the last course attempt.
                                                                //Remember, we saved a our progress variables in
                                                                //a comma-delimited string; we can convert to an
                                                                //array using string.split(",").
                                                                var arrModulecompleted:Array = suspend_data.split(",");
                                                                //Assign the value to each of our planets.
                                                                //Be sure to convert string "1" to integer 1.
                                                                //The order of the array items was specified in
                                                                //saveCourseStatus() when we created the
                                                                //comma-delimited suspend_data string.
                                                                modulecompleted.module1 = parseInt(arrModulecompleted[0],10);
                                                                modulecompleted.module2 = parseInt(arrModulecompleted[1],10);
                                                                modulecompleted.module3 = parseInt(arrModulecompleted[2],10);
                                                                modulecompleted.module4 = parseInt(arrModulecompleted[3],10);
                                                      saveCourseStatus()
                                  else
                                            /* VarLMSErrorMc = true;*/
                                            //Ruh-roh...
                                            trace("Could not connect to LMS.");
                        public function checkComplete():void
                                  if (modulecompleted.module1 && modulecompleted.module2 && modulecompleted.module3 && modulecompleted.module4)
                                            setCourseToComplete();
                                            completedModule = true;
                                            trace("COURSE NOW COMPLETED!!!");
                                  else
                                            trace("COURSE NOT COMPLETED YET__________________________________________^^^^^");
                                            trace("M1: " + modulecompleted.module1 + ", M2: " + modulecompleted.module2 + ", M3: " + modulecompleted.module3 + ", M4: " + modulecompleted.module4);
                                            saveCourseStatus();
                        public function setCourseToComplete():void
                                  //Set lesson status to completed
                                  success = scorm.set("cmi.core.lesson_status","completed");
                                  //Ensure the LMS persists (saves) what was just sent
                                  scorm.save();
                                  //Disconnect from LMS;
                                  scorm.disconnect();
                        public function saveCourseStatus():void
                                   var suspend_str:String = modulecompleted.module1 + "," + modulecompleted.module2 + "," + modulecompleted.module3 + "," + modulecompleted.module4;
                                  //Send suspend_data string to LMS
                                  trace("M1: " + modulecompleted.module1 + ", M2: " + modulecompleted.module2 + ", M3: " + modulecompleted.module3 + ", M4: " + modulecompleted.module4);
                                  scorm.set("cmi.suspend_data", suspend_str);
                                  //Ensure the LMS persists (saves) what was just sent
                                  scorm.save();

  • Dw, css, and a template, what is the best way to create a 20 page website with a different header in each page?

    dw, css, and a template, what is the best way to create a 20
    page website with different header content on each page? i am
    trying to insert a specific image and background color for each
    header on every page. what is the easiest or best way to do this?
    thanks, bryan

    "mediastream13" <[email protected]> wrote in
    message
    news:f47bes$9om$[email protected]..
    > ok, murray, here is the site.
    http://www.helphotline.org
    > in I.E. 6 i can't see the background color behind the
    header images,
    I'm seeing a hot pink background (which is my browser default
    - so that I do
    remember to declare a background color). You need to add:
    body { background-color: white;} to your stylesheet, or into
    the imbedded
    styles on your page.
    In Firefox, the very top black section, #headertop is hidden
    behind the
    header image.
    > background of the date/time isn't stretching the full
    length of the
    > screen, and
    > the margins aren't working in the main content area. how
    can i put a
    > background
    > color behind the header images?
    I can see the header image stretching right across the page..
    so not sure
    what color is missing there.
    > is there anyway to download i.e. six on my computer if i
    already have
    > i.e.7? i
    > just want to be able to preview the site before i upload
    the changes. it
    > seems
    > everything works in i.e. 7.
    Yes, I used this and it works really well.
    http://tredosoft.com/Multiple_IE
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au

  • What is use of Adobe forms

    HI Gurus,
    I have some doubts on adobe forms.
    we are developing adobe forms for getting out put in PDF formate .
    but we have same features in smartforms also like we can give the output in  pdf to the  client .
    recently i faced this problem in pre sale actitvity .
    Client manage asked me so many questions in adobe forms
    questions are
    1. What is use of adobe forms
    2. we are can get the out put in pdf formate through smartforms . then why you are suggesting buy pdf licenced software .
    3.what is extra functionality  you are providing to end user 
    please can one give clear usege and advatages avalable in adobe
    please dont tell as abaper point view please suggest me as a enduser point of view
    Regards
    RameshG

    Hi,
    Use of Adobe form:
    As of SAP NetWeaver u201904 (in SAP Web Application Server), you can use a new solution to create interactive forms and print forms for the optimization of your form-based business processes. This solution uses Portable Document Format (PDF) and software from Adobe Systems Inc. that has been integrated into the SAP environment.
    You can create interactive forms in PDF format that allow users to fill out the form on the screen and save their entries in XML format in the form. When the SAP system receives the PDF form, it extracts the data saved in the form, and can process it further.
    Smart form Vs Adobe form
    Smart forms / scripts are used to show the data in SAP. Most likely you will use these to print / display some kind of reciepts / forms.
    but, Adobe forms are used to post data into SAP from SAP too.
    ●      Create form templates for the layout that include logos or pictures
    ●      Generate documents by merging form templates and current system data
    ●      Edit forms online or offline
    ●      Forms can be filled in advance automatically with specific data from SAP applications and then sent to the correct recipients using secure methods
    ●      Automatic consistency checks for forms
    ●      Activate enhanced functions such as comments
    ●      Digital signatures and form certification
    ●      Send completed forms to the SAP application with automatic updates of the business data
    For More reference,
    http://help.sap.com/saphelp_nw70/helpdata/en/32/20709747d649e8bc74e084d0b2432c/frameset.htm
    By
    Parthi

  • What is use of index by binaary_integer

    Hi All,
    I have created to program of collection where we use index by binaary_integer in one program and not use index by binaary_integer in second program, but result is same, any body help me what is use of index by binaary_integer here
    1- Declare
    Type emp_table_type is table of
    emp%rowtype index by binary_integer;
    my_emp_table emp_table_type;
    Begin
    select * bulk collect into my_emp_table from emp;
    for i in my_emp_table.first..my_emp_table.last
    loop
    dbms_output.put_line(my_emp_table(i).ename);
    end loop;
    end;
    2- Declare
    Type emp_table_type is table of
    emp%rowtype;
    my_emp_table emp_table_type;
    Begin
    select * bulk collect into my_emp_table from emp;
    for i in my_emp_table.first..my_emp_table.last
    loop
    dbms_output.put_line(my_emp_table(i).ename);
    end loop;
    end;
    your suggestion would be greatly appreciated.

    here is one for you.
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e17126/composites.htm#CHDEIDIC

  • I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  My iBook library does not show up in iTunes.

    I am confused about something.  How do I read a book on my MacBook Pro?  I can't find the iBook app anywhere, which is what I use on my iPad.  The book I want to read is in my iTunes but I can't click on it.  Some of my iBooks show up in my iTunes but they are "grayed" out.  The only books that respond in iTunes are audiobooks and that's not what I'm looking for.  Is this a stupid question?

    Nevermind - I answered my own question, which is I CAN"T READ ANY BOOKS I purchased in iBooks on my MacBook Pro.  If I want to read on my mac I have to use Kindle or Nook.  Which means any book I've already purchased through iBooks has to be read on my iPad.  Kind of a drag because there are times when it's more convenient for me to read while I'm sitting with my Mac.

  • In r12 What is use of Purge log and Closed system alerts

    Hi
    In r12 What is use Concurrent reqest "Purge logs and Closed system alerts "
    is there any diffrence with "Purge Concurrent Request and/or Manager Data Program"
    we have to purge cm logs and data.
    '

    In r12 What is use Concurrent reqest "Purge logs and Closed system alerts "The concurrent program "Purge Debug Log and System Alerts" (Short name: FNDLGPRG) is the recommended way to purge messages. This program purges all messages up to the specified date, except messages for active transactions (new or open alerts, active ICX sessions, concurrent requests, and so on). This program is by default scheduled to run daily and purge messages older than 7 days. Internally this concurrent program invokes the FND_LOG_ADMIN APIs, which are described later in this document.
    Oracle® Applications Supportability Guide Release 12
    http://download.oracle.com/docs/cd/B40089_09/current/acrobat/120fndsupp.pdf
    is there any diffrence with "Purge Concurrent Request and/or Manager Data Program" This concurrent program is used to purge concurrent requests log/out file, and/or CM log files.
    we have to purge cm logs and data.Use "Purge Concurrent Request and/or Manager Data" concurrent program.

  • Aren't Sound Blasters what they used to

    Hello everyone,
    I have been a Creative Labs user for several years, especially before 2000 (Soundblaster 2.0, SB6 Vibra ISA (2x), SB Pro .0), and was absolutely pleased with them, especially with DOS games. Those were the happy times...
    Anyway, in more recent times, after years of listening to trustworthy but not really performing AC'97 integrated soundcards, I decided to purchase an "audio accelerator" in the form of an Audigy 4 (the one with the EMU 0300 chip and no firewire/remote control, if that means anything).
    Anyway, it worked fine for a couple of weeks or so, I got none of the SCP problems posted here, however that warning in the manual about the "VIA hard disk corruption problems" troubled me...after some research I saw it was mainly about older VIA chipsets (I had an A64 3200+ with KT800T VIA chipset so I relaxed and said "this cannot happen to me, seems like a problem solved long ago". How wrong I was....
    One day, out of the blue, while playing Battlefield 942 I got a horrible BSOD and had to reboot. After than, and after a VIA drivers update, I noticed that the sound stumbled and HARD DISK SAVING stumbled too, which was much more dangerous. I reverted to an older version of VIA drivers that didn't cause that problem, but one day I got another BSOD coupled with disk corruption, and, apparently, what later revealed to be a SATA CONTROLLER PHYSICAL DAMAGE!!!
    To make the long story short, I had to replace my motherboard, and after checking these forums I discovered that disk corruption, PCI Bus Mastering and SCP problems have been plaguing the whole soundblaster product line ever since the Li've! series and were never really solved, plus it's not clear if they are purely software or hardware, or both.
    In any case, this card caused me a lot of expenses, and after reading the horror stories here, I am really afraid to plug it into any of my PCs, in fact I'll try to sell it hoping that the manufacturer's reputation doesn't make it impossible.
    So really, what's the deal here? Is it just me, or Sound Blasters just aren't what they used to be? How can a whole class of hardware problems persist for so long, even trhough the X-Fi series? If I had seen those forums BEFORE handing out 70 Euros for that d4mn thing, I would have probably kept my money and stick to AC'97 with rock-solid drivers and hardware!Message Edited by CreativeSkeptic on 03-5-200704:20 PM

    Well, I don't know how the X-Fi series scores in any of those fields, as I can only speak for my experiences with the Audigy 4.
    Apart from the times where it obviously glitched and/or interacted badly with the rest of the hardware, it played quite smoothly, and MIDI playback took noticeably less CPU time than with the software synth (at least according to task manager, and obviously not accounting for PCI bus utilisation), which was one of the reasons I initially bought this card.
    Exactly what makes MIDI playback different than playing sound effects in games? Since both are made from samples read from memory and sent to the sound card in different streams (up to 32 or 64 depending on your model), they should be exactly the same (well OK, midi is perhaps sort of more "continuous", but a game laden with sound effects may generate 0s of sound events per second).
    By admitting that such "hardware accelerated" playback is beyond the capabilities of the current PCI bus is ridiculous, and obviously defeats the purpose of an accelerator sound card. Then why should one ever buy one, if in the end it's going to perform worse than software mixing and synthesis?
    The numbers also don't convince me: the PCI bus has a 33 MHz clock speed and a 32-bit data bus, for a nominal data rate of 33 MB/sec. Even in ths case you're using 92 KHz, 24 bit resolution soundfonts for 64 channels at once, That means a "mere" 36.684 MB/sec at once. OK, using stereo soundfont would actually double that, and reach a whooping 73+ MB/sec, which is probably impractical.
    For more "normal" game sound effects and soundfonts, admitting they use 48 KHz, 6 bit samples in stereo, that's a measly 2.28 MB/sec for using all 64 channels. Since virtually no midi really uses 64 channels, as don't most games, that leaves a margin of 0: compared to the PCI bus capabilities. To make a comparison, a TV tuner card I have, when capturing a PAL signal, produces something like a continuous stream of 33 MB/sec of raw data that can go on for hours, yet I never had any problems RECORDING that, with real-time MPEG compression (in software, it was a cheap TV tuner) while recording the sound with the integrated soundcard.
    If the Audigy or the X-Fi or whatever cannot handle similar or inferior data rates, then something is basically flawed. Sure, there is still subdivision of the data stream into PCI packets, a maximum allowed bus mastering time and timing-sensitivity in the case of MIDI/sound effects, but still, glitchy playback and/or multi-second pausing indicates a much worse error than "missing" control of the PCI bus for a few cycles.
    Regarding the AWE32 comments...does this imply than all or most of the current Sound Blaster lineup is technically inferior to an ISA card released 0 years ago? Then the "hardware acceleration" is but an illusion, and we should all perhaps stick to integrated or "normal" soundcards?

  • How do I find what's using my hard drive space

    My wife has a 14" iBook. How do I find what's using all the hard-drive space? It only has a 40GB hard-drive (it's one of the older G3 models) but there isn't a lot loaded onto the HD. There is only 3GB space left. I've gone through every application and utility and document and every folder (document, movie, etc.) and the largest space-hogging folder is iTunes which uses 15GB because of the music. I can't find any singular folder that uses any sizeable HD space. I recently loaded Tiger so I don't know if Tiger uses the rest of the space or if it's just a combo of all the other applications.

    You could download and use WhatSize to see what may be eating up the space.
    With a 40 GB hard drive, you need to keep at least 6 GB free in order to avoid problems.

  • How do I find what is using up so much space on my 750 gig harddrive

    how do I find out what is using so much of my space on my 750 gig hard drive.  i know my pictures take up 147 gigs but I can' figure out how to check other things

    When I did that, I could still only see the same contents as shown in the third screenshot above. However, minutes after doing the "Show package contents", iMovie seems to have figured out that it didn't have 15GB of data in its library after all and updated its size accordingly. So, problem solved for now but I still find iMovie to be painful to use and I will probably avoid doing so as much as I can.

  • I am trying to find an app or software to burn iMovie slideshow to a dvd.  I have a MacBook Pro with Mavericks.  There are a lot of DVD Creator apps a the App store. Looking for a recommendation of what to use and tips.

    I am trying to find an app or software to burn iMovie 11 slideshow to a dvd.  I have a MacBook Pro with Mavericks.  There are a lot of DVD Creator apps at the App store. Looking for a recommendation of what to use and tips. Thank you.

    I've been using "Burn" for years and it has been the only DVD burning software I have ever used for the mac. I have never needed to look at other apps. Unless you want something that has more bells and whistles such as Roxio's "Toast" : http://www.roxio.com/enu/products/toast/pro/overview.html
    There are thousands of quality free apps out there for the mac that are not part of the App Store. All you have to do is read reviews online, do a little search, the Apple forums are full of recommendations from experienced users that have been here for years...

Maybe you are looking for

  • Apple TV Rental Help!

    When I try to rent a movie it says Your Purchase Cannot be Completed. Its tells me to go to www.apple.com/support/itunes/ww. That website is worthless. I called and have to pay $29 for the ability to speak to them. Very non-Apple. My CC is correct an

  • Large number of trace files generated

    Many of the following trace files are being generted throughout the day, sometimes 4/5 per minute There is nothing in the alert log Any ideas? Many Thanks in advance Dump file e:\oracle\admin\nauti1\udump\nauti1_ora_5552.trc Tue Nov 18 17:36:11 2008

  • XML text editor

    hi, i have an xml-flash website i'm working on. i have lots of texts to include dynamically. the question i have is: how can i save an rtf file (the only html tag i need is the color of the font) into an xml file without manually tag all words that h

  • Two questions about WSSE

    Hi all, I came across the Web Service Security tutorial (Investigate.jws) that comes with WebLogic Workshop. Now I've two questions: - How can I test a web service that requires encryption in the request since the test client that Workshop generates

  • Trying to Export with new codec freezes Quicktime pro 7.6.6

    I have just updated Quicktime pro to version 7.6.6 and I am trying to export a .m4v to .mov to bring into FCP. I have done this a thousand times in the past with no problem. Now, however, when I click on File>Export>Options>Settings...the program fre