Is it possible to load ETS onto a conforming PC from a CD instead of making floppies?

Just curious if anyone has tried to load the RT-ETS system onto a conforming PC by using CD's instead of the floppies. I gave it a shot and it didn't appear that it would work, but someone may have had a different result. If it's not possible (and NI is listening), maybe we should add it to our wish list for the next release of RT. It's getting more difficult to find floppy drives these days. If the loader acted more like an ISO where it could be copied to CD or compact flash, that would give us more options in the future.
Chris
Chris
Practical Physics, LLC
www.practicalphysicsllc.com
National Instruments Alliance Partner
Certified LabVIEW Developer

CM,
The following document provides additional information about the requirements for a desktop PC or SBC to run LabVIEW Realtime. As you noted the correct chipsets are the critical factor as to which systems will work. Due to requirements we have for RTOS drivers for the necessary hardware we are somewhat limited as to the PCs and SBCs that can be supported at this time.
Requirements for as PC as a LabVIEW Real-Time Target
Christian Loew, CLA
Principal Systems Engineer, National Instruments
Please tip your answer providers with kudos.
Any attached Code is provided As Is. It has not been tested or validated as a product, for use in a deployed application or system,
or for use in hazardous environments. You assume all risks for use of the Code and use of the Code is subject
to the Sample Code License Terms which can be found at: http://ni.com/samplecodelicense

Similar Messages

  • Is it possible to load music onto an iPod in Disc Mode?

    Hi guys,
    Is it possible to load music onto an iPod in Disc Mode?
    I recently sold my 5th Gen 30Gb iPod on eBay, about a week later the buyer sent it back claiming it was faulty, he could not switch it on etc etc...
    Within a few minutes I had it running again, but was making a clicking sound. So I put it into disc mode, connected it to my G4 and found out that the seller had managed to change the name of the iPod, delete some of my music, load some of their music onto the iPod and play that music.
    My question is would they have been able to do all that in disc mode? Or would the iPod have to have been fully functional? Let alone using third party software to extract my songs that were already on the iPod.
    I think they received a perfectly working iPod, used it, damaged it, were unable to fix it (couldn't be bothered to find out how) and so sent it back claiming it was faulty all along.
    Thanks for any help and advice anyone can give.
    Alex

    Thanks, I realise that now.
    It turns out that the buyer reformatted the iPod for Windows.
    Would they have been able to do that in Disc Mode?
    Or would the iPod have to have been fully functional?
    I'm trying to prove that the iPod was indeed fully functional when they received it, because they were able to reformat it, rename it, delete some of my music and load some of their own music.

  • After loading songs onto my iphone/ipod from my sisters computer, her account comes up when I go to itunes or the app store.  How do I change it back to my account?  I've synched the phone with my mac but this doesn't fix it.

     

    Try going onto itunes on your computer. In the upper right hand corner you should see an account. If it's yours then I don't know what to do, but if it's hers  click on it. All you have to do is highlight the account hit back space and enter yours in and it will retain the information. Hope this helped.

  • Loading Leopard onto iMac dual intel from iBook softwareG5 computers

    I have iMac G4 and iMac dual intel (G5?) computers and just bought iBook with OS 10.5 software on CD. Desire to have at least the iMac dual intel using the same OS, but the software will not load on the iMac intel G5. Both computers have essentially the same memory, etc. Do I have to spend another $129 do get both OS the same?

    What makes the software (Leopard OS) so specific to a machine?
    The disks that ship with a computer have only been tested on a specific machine, may only contain Mac OS X components designed for that machine, and include additional software, such as iLife, which isn't in the retail package.
    Isn't OS 10.5 the same, perform the same, written the same for an iBook, iMac G4, or iMac dual intel computer?
    No. All Mac OS X 10.5 retail disks are the same, but OEM disks are usually different builds with different configurations, besides the fact that OEM disks have additional software.
    (27524)

  • Trying to load windows onto new hard drive from usb, stuck at "starting windows" screen

    So I am actually down grading from windows 8 pro to windows 7 pro both 64. I was finally able to get the comp to not only recongize, but load from the usb. My problem is that when it does start up, I get stuck at the "Starting windows" screen. I was wondering maybe I need to format a patition first? It is a new warranty hard drive from Lenovo. (Kind of funny how that send only cds for a laptop that has no cd drive) I looked into formatting from a usb, have had some trouble finding a reliable way.....thanks
    Solved!
    Go to Solution.

    Hi davefromsb,
    Windows 8 computers come with a "UEFI" bios and therefore will come with "Secure Boot" as well as "UEFI Only" booting enabled. Disable secure boot if you haven't already, and switch the booting method to "Legacy Only". The problem is most likely that the Windows 7 image that was burned to the USB stick was burned using a MBR partition scheme instead of a GPT one. Hope this helps.
    -Brian Chan
    My Thinkpads: T42 (GPU failure), T60, W530
    W530: Windows 7 Pro | i7-3720qm | FHD screen | 256gb Samsung 840 Pro SSD | 500GB Ultrabay HDD | 16gb Crucial RAM | Nvidia K1000m

  • I have lost my iPhone 5. Is it possible to load the backup data (including notes) from the iPhone backup to my iPad (air)?

    Hello I had an iPhone 5 that i have now lost. I'd like to access the backup for that phone, particularly the notes data. Is it possible to access the backup data via my iPad air?
    If not do i have to wait until i get my new iPhone then restore from the backup?
    if someone could point me in the right direction ASAP?
    many thanks

    Hello Jim
    just thought id let you know that i bought the iexplore software, downloaded it and solved my issues in less than 5 mins!
    great tip, thanks for your help.
    regards
    Charles

  • Is it possible to load web content?

    Hello,
    I'd like to know if its possible to load a file (an xml file) from a web resource with a given address like: http://server.com/file.xml.
    I tried to do this with
    myDocument.importXML(File(file));
    but this does not seem to work.
    Thanks in advance and kind regards,
    mannyk

    Here is an example -- works for me: imports an XML file from a web site into the active document.
    if (app.documents.length == 0) {
         alert("Please open a document and try again");
         exit();
    var doc = app.activeDocument;
    if (! doc.saved) {
         alert("Please save document somewhere first");
         exit();
    var url = "http://kasyan.ho.com.ua/downloads/temp/xmlfile.xml";
    var fileName = url.split("/");
    fileName = fileName[fileName.length - 1];
    var xmlFilePath = File(doc.filePath + "/" + fileName);
    var xmlData = GetURL(url, false);
    if (xmlData != null && xmlData.body != null) {
      xmlFilePath.open("w");
      xmlFilePath.write(xmlData.body);
      xmlFilePath.close();
    if (xmlFilePath.exists) doc.importXML(xmlFilePath);
    function GetURL(url,isBinary)
      // This function consists of up to three 'nested' state machines.
      // At the lowest level, there is a state machine that interprets UTF-8 and
      // converts it to Unicode - i.e. the bytes that are received are looked at
      // one by one, and the Unicode is calculated from the one to four bytes UTF-8
      // code characters that compose it.
      // The next level of state machine interprets line-based data - this is
      // needed to interpret the HTTP headers as they are received.
      // The third level state machine interprets the HTTP reply - based on the
      // info gleaned from the headers it will process the HTTP data in the HTTP
      // reply
      // If things go wrong, GetURL() will return a null
      var reply = null;
      // Below some symbolic constants to name the different states - these
      // make the code more readable.
      const kUTF8CharState_Complete = 0; 
      const kUTF8CharState_PendingMultiByte = 1;
      const kUTF8CharState_Binary = 2;
      const kLineState_InProgress = 0;
      const kLineState_SeenCR = 1;
      const kProtocolState_Status = 1;
      const kProtocolState_Headers = 2;
      const kProtocolState_Body = 3;
      const kProtocolState_Complete = 4;
      const kProtocolState_TimeOut = 5;
      do
        // Chop the URL into pieces
        var parsedURL = ParseURL(url);
        // We only know how to handle HTTP - bail out if it is something else
        if (parsedURL.protocol != "HTTP")
          break;
        // Open up a socket, and set the time out to 2 minutes. The timeout
        // could be parametrized - I leave that as an exercise.
        var socket = new Socket;   
        socket.timeout = 120;
        // Open the socket in binary mode. Sockets could also be opened in UTF-8 mode
        // That might seem a good idea to interpret UTF-8 data, but it does not work out
        // well: the HTTP protocol gives us a body length in bytes. If we let the socket
        // interpret UTF-8 then the body length we get from the header, and the number of
        // characters we receive won't match - which makes things quite awkward.
        // So we need to use BINARY mode, and we must convert the UTF-8 ourselves.
        if (! socket.open(parsedURL.address + ":" + parsedURL.port,"BINARY"))
          break;
        // Dynamically build an HTTP 1.1 request.
        if (isBinary)
          var request =
            "GET /" + parsedURL.path + " HTTP/1.1\n" +
            "Host: " + parsedURL.address + "\n" +
            "User-Agent: InDesign ExtendScript\n" +
            "Accept: */*\n" +
            "Connection: keep-alive\n\n";
        else
          var request =
            "GET /" + parsedURL.path + " HTTP/1.1\n" +
            "Host: " + parsedURL.address + "\n" +
            "User-Agent: InDesign ExtendScript\n" +
            "Accept: text/xml,text/*,*/*\n" +
            "Accept-Encoding:\n" +
            "Connection: keep-alive\n" +
            "Accept-Language: *\n" +
            "Accept-Charset: utf-8\n\n";
        // Send the request out
        socket.write(request);
        // readState keeps track of our three state machines
        var readState =
          buffer: "",
          bufPos: 0,
          // Lowest level state machine: UTF-8 conversion. If we're handling binary data
          // the state is set to kUTF8CharState_Binary which is a 'stuck' state - it
          // remains in that state all the time. If the data really is UTF-8 the state
          // flicks between kUTF8CharState_PendingMultiByte and kUTF8CharState_Complete
          curCharState: isBinary ? kUTF8CharState_Binary : kUTF8CharState_Complete,
          curCharCode: 0,
          pendingUTF8Bytes: 0,     
          // Second level state machine: allows us to handle lines and line endings
          // This state machine can process CR, LF, or CR+LF line endings properly
          // The state flicks between kLineState_InProgress and kLineState_SeenCR
          lineState: kLineState_InProgress,
          curLine: "",
          line: "",
          isLineReadyToProcess: false,
          // Third level state machine: handle HTTP reply. This state gradually
          // progresses through kProtocolState_Status, kProtocolState_Headers,
          // kProtocolState_Body, kProtocolState_Complete.
          // contentBytesPending is part of this state - it keeps track of how many
          // bytes of the body still need to be fetched.
          protocolState: kProtocolState_Status,
          contentBytesPending: null,
          dataAvailable: true,
          // The HTTP packet data, chopped up in convenient pieces.
          status: "",
          headers: {},
          body: ""
        // Main loop: we loop until we hit kProtocolState_Complete as well as an empty data buffer
        // (meaning all data has been processed) or until something timed out.
        while
          ! (readState.protocolState == kProtocolState_Complete && readState.buffer.length <= readState.bufPos)
          readState.protocolState != kProtocolState_TimeOut
          // If all data in the buffer has been processed, clear the old stuff
          // away - this makes things more efficient
          if (readState.bufPos > 0 && readState.buffer.length == readState.bufPos)
            readState.buffer = "";
            readState.bufPos = 0;
          // If there is no data in the buffer, try to get some from the socket
          if (readState.buffer == "")
            // If we're handling the body of the HTTP reply, we can try to optimize
            // things by reading big blobs of data. Also, we need to look out for
            // completion of the transaction.
            if (readState.protocolState == kProtocolState_Body)
              // readState.contentBytesPending==null means that the headers did not
              // contain a length value for the body - in which case we need to process
              // data until the socket is closed by the server
              if (readState.contentBytesPending == null)
                if (! readState.dataAvailable && ! socket.connected)
                  // The server is finished with us - we're done
                  socket = null;
                  readState.protocolState = kProtocolState_Complete;
                else
                  // Attempt to read a byte
                  readState.buffer += socket.read(1);
                  readState.dataAvailable = readState.buffer.length > 0;
              else
                // If the socket is suddenly disconnected, the server pulled the
                // rug from underneath us. Register this as a time out problem and
                // bail out.
                if (! readState.dataAvailable && ! socket.connected)
                  socket = null;
                  readState.protocolState = kProtocolState_TimeOut;
                else
                  // Try to get as much data as needed from the socket. We might
                  // receive less than we've asked for.
                  readState.buffer = socket.read(readState.contentBytesPending);
                  readState.dataAvailable = readState.buffer.length > 0;
                  readState.contentBytesPending -= readState.buffer.length;
                  // Check if we've received as much as we were promised in the headers
                  // If so, we're done with the socket.
                  if (readState.contentBytesPending == 0)
                    readState.protocolState = kProtocolState_Complete;
                    socket.close();
                    socket = null;
                  // If we're downloading binary data, we can immediately shove the
                  // whole buffer into the body data - there's no UTF-8 to worry about            
                  if (isBinary)
                    readState.body += readState.buffer;
                    readState.buffer = "";
                    readState.bufPos = 0;
            else if (readState.protocolState != kProtocolState_Complete)
              // We're reading headers or status right now - look out
              // for server disconnects
              if (! readState.dataAvailable && ! socket.connected)
                socket = null;
                readState.protocolState = kProtocolState_TimeOut;
              else
                readState.buffer += socket.read(1);
                readState.dataAvailable = readState.buffer.length > 0;
          // The previous stretch of code got us as much data as possible into
          // the buffer (but that might be nothing, zilch). If there is data,
          // we process a single byte here.
          if (readState.buffer.length > readState.bufPos)
            // Fetch a byte
            var cCode = readState.buffer.charCodeAt(readState.bufPos++);
            switch (readState.curCharState)
              case kUTF8CharState_Binary:
                // Don't use the UTF-8 state machine on binary data
                readState.curCharCode = cCode;
                readState.multiByteRemaining = 0;
                break;
              case kUTF8CharState_Complete:
                // Interpret the various UTF-8 encodings - 1, 2, 3, or 4
                // consecutive bytes encode a single Unicode character. It's all
                // bit-fiddling here: depending on the masks used, the bytes contain
                // 3, 4, 5, 6 bits of the whole character.
                // Check
                // http://en.wikipedia.org/wiki/UTF-8
                if (cCode <= 127)
                  readState.curCharCode = cCode;
                  readState.multiByteRemaining = 0;
                else if ((cCode & 0xE0) == 0xC0)
                  readState.curCharCode = cCode & 0x1F;
                  readState.curCharState = kUTF8CharState_PendingMultiByte;
                  readState.pendingUTF8Bytes = 1;
                else if ((cCode & 0xF0) == 0xE0)
                  readState.curCharCode = cCode & 0x0F;
                  readState.curCharState = kUTF8CharState_PendingMultiByte;
                  readState.pendingUTF8Bytes = 2;
                else if ((cCode & 0xF8) == 0xF0)
                  readState.curCharCode = cCode & 0x07;
                  readState.curCharState = kUTF8CharState_PendingMultiByte;
                  readState.pendingUTF8Bytes = 3;
                else
                  // bad UTF-8 char
                  readState.curCharCode = cCode;
                  readState.pendingUTF8Bytes = 0;
                break;
              case kUTF8CharState_PendingMultiByte:
                if ((cCode & 0xC0) == 0x80)
                  readState.curCharCode = (readState.curCharCode << 6) | (cCode & 0x3F);
                  readState.pendingUTF8Bytes--;
                  if (readState.pendingUTF8Bytes == 0)
                    readState.curCharState = kUTF8CharState_Complete;
                else
                  // bad UTF-8 char
                  readState.curCharCode = cCode;
                  readState.multiByteRemaining = 0;
                  readState.curCharState = kUTF8CharState_Complete;
                break;
            // If we've got a complete byte or Unicode char available, we process it
            if (readState.curCharState == kUTF8CharState_Complete || readState.curCharState == kUTF8CharState_Binary)
              cCode = readState.curCharCode;
              var c = String.fromCharCode(readState.curCharCode);
              if (readState.protocolState == kProtocolState_Body || readState.protocolState == kProtocolState_Complete)
                // Once past the headers, we simply append new bytes to the body of the HTTP reply
                readState.body += c;     
              else
                // While reading the headers, we look out for CR, LF or CRLF sequences           
                if (readState.lineState == kLineState_SeenCR)
                  // We saw a CR in the previous round - so whatever follows,
                  // the line is now ready to be processed.
                  readState.line = readState.curLine;
                  readState.isLineReadyToProcess = true;
                  readState.curLine = "";
                  readState.lineState = kLineState_InProgress;
                  // The CR might be followed by another one, or
                  // it might be followed by a LF (which we ignore)
                  // or any other character (which we process).
                  if (cCode == 13) // CR
                    readState.lineState = kLineState_SeenCR;
                  else if (cCode != 10) // no LF
                    readState.curLine += c;
                else if (readState.lineState == kLineState_InProgress)
                  // If we're in the midsts of reading characters and we encounter
                  // a CR, we switch to the 'SeenCR' state - a LF might or might not
                  // follow.
                  // If we hit a straight LF, we can process the line, and get ready
                  // for the next one
                  if (cCode == 13) // CR
                    readState.lineState = kLineState_SeenCR;
                  else if (cCode == 10) // LF
                    readState.line = readState.curLine;
                    readState.isLineReadyToProcess = true;
                    readState.curLine = "";
                  else
                    // Any other character is appended to the current line
                    readState.curLine += c;
                if (readState.isLineReadyToProcess)
                  // We've got a complete line to process
                  readState.isLineReadyToProcess = false;
                  if (readState.protocolState == kProtocolState_Status)
                    // The very first line is a status line. After that switch to
                    // 'Headers' state
                    readState.status = readState.line;
                    readState.protocolState = kProtocolState_Headers;
                  else if (readState.protocolState == kProtocolState_Headers)
                    // An empty line signifies the end of the headers - get ready
                    // for the body.
                    if (readState.line == "")
                      readState.protocolState = kProtocolState_Body;
                    else
                      // Tear the header line apart, and interpret it if it is
                      // useful (currently, the only header we process is 'Content-Length'
                      // so we know exactly how many bytes of body data will follow.
                      var headerLine = readState.line.split(":");
                      var headerTag = headerLine[0].replace(/^\s*(.*\S)\s*$/,"$1");
                      headerLine = headerLine.slice(1).join(":");
                      headerLine = headerLine.replace(/^\s*(.*\S)\s*$/,"$1");
                      readState.headers[headerTag] = headerLine;
                      if (headerTag == "Content-Length")
                        readState.contentBytesPending = parseInt(headerLine);
                        if (isNaN(readState.contentBytesPending) || readState.contentBytesPending <= 0)
                          readState.contentBytesPending = null;
                        else
                          readState.contentBytesPending -= (readState.buffer.length - readState.bufPos);
        // If we have not yet cleaned up the socket we do it here
        if (socket != null)
          socket.close();
          socket = null;
        reply =
          status: readState.status,
          headers: readState.headers,
          body: readState.body
      while (false);
      return reply;
    function ParseURL(url)
      url=url.replace(/([a-z]*):\/\/([-\._a-z0-9A-Z]*)(:[0-9]*)?\/?(.*)/,"$1/$2/$3/$4");
      url=url.split("/");
      if (url[2] == "undefined") url[2] = "80";
      var parsedURL =
        protocol: url[0].toUpperCase(),
        address: url[1],
        port: url[2],
        path: ""
      url = url.slice(3);
      parsedURL.path = url.join("/");
      if (parsedURL.port.charAt(0) == ':')
        parsedURL.port = parsedURL.port.slice(1);
      if (parsedURL.port != "")
        parsedURL.port = parseInt(parsedURL.port);
      if (parsedURL.port == "" || parsedURL.port < 0 || parsedURL.port > 65535)
        parsedURL.port = 80;
      parsedURL.path = parsedURL.path;
      return parsedURL;
    Kasyan

  • Is it possible to load pictures directly from your computer to your ipad.  When I loaded the camera pictures onto the computer, re ordered them and fixed some, I then tried to move them to the ipad.  It does not allow me to paste the copied file.

    Is it possible to load pictures from a computer to your ipad.  When modified my camera pictures and reordered them, I was unable to load them to the ipad.  I could copy but not paste.  If I reinstalled them on the memory card, the ipad did not recognize them.

    The iPad can be pretty picky.
    One way, if you sync your iPad to your computer, is to use iTunes to 'sync' the photos onto the iPad. Of course that has the downside of if you sync them on you have to use iTunes to sync them off.
    Or you can download the iCloud control panel and use photostream to put the photos onto your iPad. WHen you install the iCloud panel and enable photo stream it'll put a folder on your computer. Import photos into that folder and they'll go onto your iPad (they do transfer via wifi so it's not exactly an instant thing, might take a few minutes depending on your network and file size.
    Or, if you have a few, you can e-mail them to yourself, open that mail on your ipad and save them from there.
    Or, to use the camera kit, you can import htem onto your iPad, but the camera connection kit requires a very specific naming protocol. There must be a folder named DCIM on your memory card, and then all files on that card must be in that folder and have a name of 8 characters. If you follow the naming convention, once you plug the memory card in the iPad will see it and allow you to import the photos.
    there are also third party photo apps I just dont' have any to recommend.
    One more thing to bear in mind, even if you rename the files, the ipad persists in organizing the photos by date, so I'd experiment and make sure it doesn't totally rearrange your files before you spend a lot of time on it. (third party apps may respect the name of the photo and organize it that way rather than by date first, then name)

  • Is it possible to load an instructional DVD with several chapters onto my iMac and then somehow access the different chapters as needed remotely on my iPad?

    Is it possible to load an instructional DVD with several separate chapters onto my iMac and then somehow access the different chapters as needed remotely on my iPad?

    The "TDMS Open" node does more than open a file handle, it will load meta data (including file/group/channels' properties) and create index structures in ram for fast accessing any raw data in TDMS file. Thus, my advice is:
    1) You can save the efforts to write sub-VIs to preload properties of a TDMS file at least, since they are already kept in memory after the file is opened.
    2) Since index structures are presented, the performance to read data of any part in a tdms file will not be affected by the file size and the read performance might already satisfy your application. You can have a try.

  • Hi, Is it possible to download music videos from iTunes and then load them onto my classic iPod?

    Hi,
    Is it possible to download music videos from iTunes and then load them onto my classic iPod?
    Thanks,
    GB

    Hey GJBY!
    I have an article for you that can help answer that question:
    iTunes: Frequently asked questions about viewing and syncing videos
    http://support.apple.com/kb/ht2729
    What are the requirements for playing video on mobile devices?
    Mobile Device Family
    Generations that can play video
    iPad
    All
    iPhone
    All
    iPod/iPod classic
    5th or later
    iPod nano*
    3rd or later
    iPod touch
    All
    * iPod Nano (6th generation) does not support video playback.
    To view technical specifications for your device, you can look them up by serial number or browse the Apple Tech Specs.
    Note: Updates to your device may change the iTunes requirements for syncing.
    For additional information about iPod models, refer to Identifying iPod models.
    For additional information about iPhone models, refer to Identifying iPhone models.
    For an overview of where your purchases can be synced, see iTunes Store: Where can I download and sync my purchases?
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Is it possible to load a URL on stage?

    Hi,
    I'm using Flash CC-Action Script 3, is it possible to load a URL onto the stage?

    Thanks. I think our IT department will handle it since they do html/java/and
    all that stuff except for action script/flash. I am a little desperate
    though. I need to have this at least display a working clock for know and
    the phone list, which will display fine once I get to it. Can you be so kind
    and look at my horrible action script and help me get the clock to work
    continuously and show minutes under 10 with a "0"?  I just need to have
    something to show for our Annual Management meeting.
    Thank you sincerely for your time.
    Code:
    import flash.events.MouseEvent;
    import flash.text.TextField;
    import flash.text.Font;
    import flash.text.TextFormat;
    import flash.display.Sprite;
    import flash.text.*;
    import flash.filters.BitmapFilter;
    import flash.filters.BitmapFilterQuality;
    import flash.filters.BlurFilter;
    import flash.display.Bitmap;
    import flash.display.Loader;
    import flash.net.URLRequest;
    var link:URLRequest = new URLRequest("http://simplegreen.com/");
    //ADD CONTAINERS
    var containerStage:Sprite = new Sprite();
    containerStage.tabChildren = false;
    stage.addChild (containerStage);
    //DATE TIMER
    var my_date:Date = new Date();
    var my_timer:Timer = new Timer(1000);//create a new timer that ticks every
    second
    my_timer.addEventListener(TimerEvent.TIMER, onTimer);
    my_timer.start();
    //MONTH AND DATE
    var months:Array = ["Jan", "Feb", "Mar", "Apr", "May", "June", "Jul", "Aug",
    "Sept", "Oct", "Nov", "Dec"];
    var days:Array = ["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri"];
    var todayIs = (days[my_date.day] + "," + " " + months[my_date.month]  +" " +
    my_date.date + " " + my_date.fullYear);
    trace(days[my_date.day] + "," + " " + months[my_date.month]  +" " +
    my_date.date + " " + my_date.fullYear);
    //Text Loader
    var textLoader:URLLoader = new URLLoader();
    textLoader.addEventListener(Event.COMPLETE, textLoaded);
    textLoader.load(new URLRequest("assets/phoneList.txt"));
    var ampm:String = new String();
    var zero:String = new String();
    if (my_date.hours<12) {ampm = "AM";
    else{
    ampm = "PM";
    while(my_date.hours > 12){my_date.hours = my_date.hours - 12;
    if(my_date.minutes < 10){zero = "0" + my_date.minutes;
    else{
    my_date.minutes;
    function onTimer(e:TimerEvent):void {
    //my_date = new Date();
    trace(my_date.hours + ":" + my_date.minutes);
    var myDateTextBox:TextField = new TextField;
    myDateTextBox = new TextField();
    // myDateTextBox = todayIs;
    var dateStyle:TextFormat = new TextFormat;
    dateStyle.color = 0xFFFFFF;
    dateStyle.size = 48;
    dateStyle.font = "myriadMm";
    dateStyle.align = "left";
    var myTimeTextBox:TextField = new TextField;
    myTimeTextBox = new TextField();
    myDateTextBox.text = String(days[my_date.day] + "," + " " +
    months[my_date.month]  +" " +  my_date.date + " " + my_date.fullYear);
    myDateTextBox.width = 600;
    myDateTextBox.x = 70;
    myDateTextBox.y = 70;
    myDateTextBox.setTextFormat(dateStyle);
    //Add it to the stage;
    containerStage.addChild(myDateTextBox);
    myTimeTextBox.text = String(my_date.hours + ":" + my_date.minutes + " " +
    ampm);
    myTimeTextBox.width = 600;
    myTimeTextBox.x = 70;
    myTimeTextBox.y = 117;
    myTimeTextBox.setTextFormat(dateStyle);
    //Add it to the stage;
    containerStage.addChild(myTimeTextBox);
    //Event Listeners
    phone.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame);
    function fl_ClickToGoToAndPlayFromFrame(event:MouseEvent):void
    trace("directory ready");
    simpleGreen.addEventListener(MouseEvent.CLICK,
    fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
    navigateToURL(link, "_self");
    videoDirectory.addEventListener(MouseEvent.CLICK,
    fl_ClickToGoToAndPlayFromFrame_3);
    function fl_ClickToGoToAndPlayFromFrame_3(event:MouseEvent):void
    trace("Video Player is Ready");
    function textLoaded(evt:Event):void
    info_txt.htmlText = textLoader.data;
    With warmest regards,
    Mary Crotteau
    Graphic Design Specialist
    Sunshine Makers, Inc./Simple Green

  • AWM dimension mapping - is it possible to load data from two input tables ?

    Hello All
    I have two tables ProductFamily (parent level) and Products (child level).
    I want to load a dimension from these two tables where the parent-child relationships are maintained (I am using AWM).
    I created a mapping with these two tables as input, but the data loaded does not maintain the relationships.
    So how do I do that? Is it possible to load dimensions where different levels get data from multiple tables?
    Is there any type of joiner available in AWM?
    thanks
    Few Notes:
    - I do not want to use OWB here as my data is clean
    - In AWM, When I loaded the data from a single view which contained data from both input tables, it worked fine. But this is my worst case option.

    You should use the Snowflake Dimension option in the Dimension mapping screen for the Product Dimension (as opposed to the default dimension mapping style - star schema).
    This will modify the mapping inputs to include a separate parent level key for each hierarchy/level i.e. for each hierarchy/level (unless topmost level of hierarchy), you need to specify the parent level key in addition to the current level key, code/name/description/other attributes etc.
    You can do the mapping in either .... use icons at the top of the mapping screen.
    the drag/drop mode by dragging the relational column onto dimension model - hierarchy/level/attribute
    -or-
    the table expression mapping mode which gives the same effect.. dragging a column onto an attribute sets the expression in <schema>.<table>.<column> format.
    HTH
    Shankar
    Note1: Complete the mapping in one go.. Switching b/w the mapping modes cause the mappings to be reset.
    Note2: Assume your data is correct, foreign key to parent level table: ProductFamily exists in child level table: Products.

  • Server load balancing onto itself

    hi
    I have a customer with 4710 that load balances inbound traffic onto 2 servers. this works
    There is also a requirement for the servers that are load balnced to [what seems to me ] to load balance onto themselves and for other server on the same vlan to use the servers in the farm in a load balanced way.
    driving me bonkers ......
    any ideas ?
    thanks

    this is possible with client nat.
    By nating the source ip , you trick the server to believe the connection comes from another device.
    So, all you need is a policy to dynamically nat request coming in.
    You add this new policy on the server side interface so that only requests coming from the servers are source nated.
    Gilles.

  • How do you load itunes onto PS3?

    Hello. I've seen on the internet that you can load itunes onto the PS3, but not how. Does anyone know if there is a special download you need?
    Thanks for your help.

    There is no version of the iTunes application that will run on a PS3. Are you possibly talking about loading music you've purchased from the iTunes Store in to your PS3? Those instructions should be in the PS3 manual. As long as the tracks were purchased within the last two years, they should play fine. Older tracks with DRM will not work.
    If the drive with your music on it shows up on your home wireless network, you may also be able to stream it through the PS3.

  • Is it possible to LOAD and INSTALL applet during pre-personalization?

    Hi Friends..
    Currently, i use JCOP card
    I want to know the other way to LOAD and INSTALL applet not through CardManager..
    I mean, is it possible to LOAD and INSTALL applet during pre-personalization time?.
    Thanks in advance

    Hi,
    i want to LOAD and INSTALL Applets while pre-personalization phase..
    No, i don't want to defer the LOAD and INSTALL..In the past, we have used the pre-personalisation phase to load KDC keys onto a card and remove the ISK and set issuer specific identifiers (IIN and CIN) etc. You could also load your applet at this time if you wish. You can also load the applets at personalisation.
    How do you plan on doing the personalisation phase? If you were to use a GP scripting environment for example, the CAP files are embedded as a part of the install scripts and only loaded onto a card when you begin executing your personalisation scripts. Since I assume you will be using the small desktop printers mentioned in a different thread, you may be better off integrating the applet loading into your personalisation code (printer integration) so you do not need to double handle cards.
    Actually, is it possible to LOAD and INSTALL applet if we don't authenticate to the CardManager?..There are ways to load and install an applet without explicitly calling INIT UPDATE and EXTERNAL AUTH, but you still need to be authenticated to the card manager, otherwise anyone could manage card content. You can use install tokens and delegated management (which are all outlined in the GO Card Spec).
    Cheers,
    Shane

Maybe you are looking for

  • Substring instr issue in obiee

    Hi, I want to use the INSTR function in OBIEE POSITION function found in the forum INSTR function takes four values: INSTR (string1, string2, number, number) Eg IP address 111.222.333.444 The desired result SUBSTR (IP_ADD, 1, INSTR (IP_ADD, '.', 1,3)

  • User Exit  for ko01 ( Creation of Internal Order )

    Hi, My requirement is to validate the Business Area & Profit Center based on the Responsible Cost Center entered. EVEN if the Business Area & Profit Center are valid entries as per the data, they should be replaced by the Business Area, Profit Center

  • HT4859 how do i back up photos on iphoto?

    how do i back up photos on my imac from iphoto. I thought this was supposed to happen automatically to icloud but i've been advised that only applies for photos on my iphone. thx

  • Faking a Z depth

    basicly I have a 3d logo made in AE to go on a 3D screen however I need to create a Z depth along side it of the image to work. I have used a back ground with a ramp effect and matted out the alpha which works, but when i want to move the camera it d

  • Where to download OSX Mountain Lion (now that Mavericks is out)?

    I have a 2005 Macbook Pro Intel Core Duo running 10.7.5 and tried unsuccessfully to upgrade to Mavericks.  Because the Macbook is too old, Mavericks is not supported on it. So given that, I'd like to upgrade the Macbook to the last version of OSX Mou