Load content from UPK in Knowledge Pathways

Hi,
I'm newbie in Oracle Tools and i'm trying to export content from UPK and load into Knowledge Pathways.... I would like to maintain the structure of modules and sections... is this possible? if it is.. how? where can i find how to do it?
Thanks in advance,
Regards

Hello,
This has been posted to the UPK forums:
Import UPK modules and sections into Knowledge Pathways?
Best regards,
Marc

Similar Messages

  • How do i load content from an existing ipod to a new computer and installation of itunes?

    how do i load content from an existing ipod to a new computer and installation of itunes?

    Recover media from iPod
    See this post from forum regular Zevoneer for options on moving your iPod data back to your computer.
    tt2

  • Loading content from multiple MiniDV tapes to one DVD

    I am being offered this "One Touch" feature on iDVD to copy my Camera footage to a DVD. I am wondering what the best process is to follow if I wanted to, say, merge :30 minutes of content from one MiniDV and :20 minutes of content from another. Should I be uploading to iMovie instead? If I have the ultimate objective of a. having copies on DVD instead of MiniDV and b. using the content for video editing in iMovie, what is the best process to follow?
    1. Move all MiniDV to DVD and then work from that?
    2. Import clips into iMovie and move them to iDVD?
    Tips, best practices, advice appreciated.

    Brian,
    It's pretty much agreed here that the best storage medium for your MiniDV tapes, is the tape itself.
    I tried OneStep once. Yuk. I bring everything into iMovie HD.
    1.: No.
    2.: Yes
    iDVD 5 Getting Started
    Apple's iMovie Learning Site
    Apple's iDVD Learning Site
    Ken Stone: Authoring in iDVD 5
    My favorite, by far:
    iMovie HD & iDVD 5: The Missing Manual
    iPhoto 5: The Missing Manual

  • Problem loading content from iTunes library and Netflix

    Everytime I try watching a TV episode, movie, or Netflix show, I get an error sign with loading the content.  It's not restricted to Netflix and also includeds recently purchased and saved items through iTunes library.  What can I do to resolve this problem?

    Try restarting AppleTV (menu and down on remote together for 6 secs) and your router.

  • How to load content from the application directory?

    I'm currently working on an AIR desktop application that will be distributed on OSX and Windows. The main applicaiton SWF will load a child swf that has been packaged. When I've attempted to load the child SWF via loader.load() with a URI of "app:\\TheChildContentSWF.swf", the load has failed with an IOError. If I force a copy of the the SWF (in OSX) to the MacOS directory where the executable resides, the child SWF would load. I was a little stumped by this so I decided to check what the nativePath of the application directory was via File.applicationDirectory.nativePath (it turned out to point at the Resources directory). Does the "app://" URI point to different paths when using Loader vs File?
    If so, is there a way to package content so that it is installed in a directory that Loader can recognize without hitting security sandbox issues?
    Visual of the OSX app directory structure (simplified)
    MyApp.app\
         Contents\
              Frameworks\
              MacOS\
                   executable
              Resources\
                   TheAppSWF.swf
                   TheChildContentSWF.swf
                    ... // other content
    Thanks for any help!
    Josh

    When loading application, move the swf to the applicationStorage folder if it doesn't exist already.
    Something like ...
    private var swfDistribute:File = File.applicationDirectory.resolvePath('ResourcesChildContentSWF.swf');
    private var swfLocal:File      = File.applicationStorageDirectory.resolvePath('TheChildContentSWF.swf');
    private function onCreationComplete():void
       if (!swfLocal.exists) {
          if (swfDistribute.exists) {
             swfDistribute.copyTo(swfLocal);
    Then you should be able to call your loader.load() URI with the variable (swfLocal)

  • Loading content from XML help needed, please.

    Hey All,
    So here's my deal- I have a custom-built FLV Playback
    component (with captions) and need to load the following items from
    an XML file named "xml_doc.xml":
    <?xml version="1.0" encoding="UTF-8"?>
    <playlist id="Here's The Video" >
    <vid desc="Introduction to Biological Terrorism Agents"
    src="Intro.flv"
    thumb="Intro.jpg"
    caption="Intro.xml"
    </playlist>
    On the stage, here's what things are named:
    -my FLVPlayback Component is named myVideo
    -my thumbnail/preview image (empty movie clip) is named
    myPoster
    -my FLVPlaybackCaptioning Component is named captioning
    So how do I get these things to all get read from the XML
    document? It's easy to do it all through the FLA and hard-code the
    paths, but I can't seem to figure out how to pull from the external
    XML doc.
    Any help would be greatly appreciated.
    Joe

    You'll need to instantiate a few classes to help with this.
    The first is URLRequest:
    --var myXMLRequest:URLRequest = new
    URLRequest("xml_doc.xml");
    The URLRequest gets loaded by a URLLoader:
    --var myXMLLoader:URLLoader = new URLLoader();
    Then use the .load() method of the URLLoader:
    --myXMLLoader.load(myXMLRequest)
    Then add an event listener to your URLLoader
    --myXMLLoader.addEventListener(Event.COMPLETE, dataLoaded);
    Finally create the function to work with your data
    --function dataLoaded(e:Event):void {
    --var myXML:XML = new XML(e.target.data);
    --trace(myXML);
    Looks like:
    --var myXMLRequest:URLRequest = new
    URLRequest("xml_doc.xml");
    --var myXMLLoader:URLLoader = new URLLoader();
    --myXMLLoader.load(myXMLRequest)
    --myXMLLoader.addEventListener(Event.COMPLETE, dataLoaded);
    --function dataLoaded(e:Event):void {
    --var myXML:XML = new XML(e.target.data);
    --trace(myXML);
    (remove dashses, they're for readability)

  • Why is there an error occurring when I try to load content from my iTunes  library? Home sharing is switched on.

    Recently I seem to be having a problem with my Apple tv when it comes to loading the content of my library. I am asked to turn on home sharing,which i have done, and then an error message comes up. When I close down my itunes and retry I am then asked to turn on home sharing on my computer.....

    This indicates an issue with the network.
    Power cycle the ATV, router, and computer.

  • I have two iTunes accounts, can I load content from both onto iPhone

    I had an iPod from a couple years ago and and I have an iPhone now. They are under two different iTunes and apple id's. The IPod was stolen from me recently and I was wondering if I can get everything from my iPods account onto iPhone?

    No.  You cannot consolidate.
    Sorry.

  • Loading content from database

    all i get is the code in php page, i'm using this:
    public function CarregaTexto ()
    //vai buscar o file
    var request:URLRequest = new
    URLRequest("getTextoDoAboutUs.php");
    //classe resp pelo carregamento
    var loader:URLLoader = new URLLoader();
    //faz o load
    loader.load(request);
    //o escutador
    loader.addEventListener(Event.COMPLETE,
    loaderCompleteHandler);
    function loaderCompleteHandler(ev:Event):void
    //mesmo target as URLLoader loader
    var l:URLLoader = URLLoader(ev.target);
    //prop data do url loader
    traceTxt.text = l.data;
    }

    kglad: oh, yes, that's exactly what I demo'ed above, sorry
    but I misinterpreted what you said originally - the code I posted
    supports exactly what you said.
    trace calls the toString() method on the underlying XMLNode
    object and what was originaly the CDATA node is converted back to
    regular textNode representation rather than re-created as a CDATA
    node representation. This is because flash/as2 only supports
    element and text nodes in its internal representation so the CDATA
    node type is not retained after parsing. I haven't tested that in
    as3 but it looks like it would be the same as there are only the
    same 2 nodeTypes listed in the docs. So CDATA works going in, but
    not on the way out of flash, if you needed that you would need to
    do that via string methods I guess.

  • Import UPK modules and sections into Knowledge Pathways?

    "...i'm trying to export content from UPK and load into Knowledge Pathways.... I would like to maintain the structure of modules and sections... is this possible? if it is.. how? where can i find how to do it?"
    What versions of UPK and Knowledge Pathways are you using? If you're using the current versions (UPK 3.5.1 and Knowledge Pathways 5.5), you should have no problems importing importing UPK modules and sections into Knowledge Pathways using the import player content feature, which is detailed in the product documentation. If you have additional questions, please let us know.
    Best regards,
    Marc

    Hello,
    This has been posted to the UPK forums:
    Import UPK modules and sections into Knowledge Pathways?
    Best regards,
    Marc

  • Sensitive Data Breach; FF displays content from a previously loaded plugin when displaying new content from within another pugin

    Sensitive Data Breach.
    When loading content from a plugin, such a pdf or flash, any content from previously viewed content from a plugin is flash before the new content is displayed.
    In our app we show sensitive information and this represents a data breach.
    This issue present across or between the same or different plugins. Silverlight - > PDF, PDF -> PDF, etc.

    In reviewing the steps to re-create the problem, I'm not sure I understand what's happening.
    <br>1. Load some flash content
    2. Leave the Tab open or Close the tab
    3. Load a pdf within the browser in another tab.
    <br>Note: Ensure Options -> Tabs -> "When I open a link in a new tab, switch to it immediately" is selected.
    <br>Note: Ensure you clear your cache so plugin content is downloaded.
    <br>The longer it takes to download the pdf the longer the sensitive data will be displayed. When the plugin fails content may be displayed indefinitely.
    (I view PDFs outside the browser, so I haven't attempted to re-create the above scenario.)
    Are you saying that Flash content appears where the PDF is supposed to load, or a previous PDF appears?
    I assume this previously viewed data doesn't survive a shut-down and restart of Firefox. Is that correct?

  • Netflix cannot load content

    My apple TV cannot load content from netflix (worked fine before last night and have no updated software or changed settings). Other web services like youtube work fine and I can stream Netflix from my iPad. Anyone else having this problem with their apple TV?

    I didn't ask if you changed ISP's, but about the DNS settings. You also didn't say whether you were on wifi or ethernet? Have you checked with Netflix?
    Verify DNS and network settings
    If you are experiencing abnormal wait times when attempting to rent iTunes Movies and TV shows on your Apple TV, it could be due to changes made to your network settings (such as the DNS address on your Apple TV and/or router or base station). You should use the default DNS entry supplied by your ISP, on both your Apple TV and router. Changing the DNS entry may result in a longer time before playback begins. Also, you should configure your Apple TV to use DHCP for the network setup, unless you have a custom network with specifically-assigned IP addresses.
    To configure your Apple TV to use DHCP, from the main menu, go to Settings > General > Network > Configure TCP/IP. In the Network Setup page, select the "Using DHCP" option.
    Once you've confirmed that your Apple TV and router or base station are using DHCP without a custom DNS entry, power-cycle your Apple TV, router or base station and broadband Internet modem.

  • TS1474 What am I doing wrong? I move content from a cd to my iTunes library on the computer, but when I try to load a song on my iPhone, the red circle appears and I can't do it, even though I have sync-ed the devices.  Any solutions?

    I am frustrated!  I add content to my iTunes library from a cd, then find that I am unable to load it.  When I click and drag an item to my device, the red NO symbol appears and I am unable to load it onto my phone, although I have synced the devices.  I AM able to do this without issue on another computer.  Help!

    The number of devices authorized on an account and the number that an iPhone can sync to are two different things. You can now authorize up to 5 computers or 10 devices to play your content, but still an iPhone, iPad or iPod Touch can only be tied to one computer at a time. You can copy content from other computers to the computer used for syncing, and get it on the iPhone that way.
    Connect the phone to that computer, whichever you want to be the "master" of the iPhone. Click on its name in iTunes. On the right there is a Summary screen. Scroll down it and you will see several checkboxes. One of them is "Manually manage music and videos". If this is checked you must drag content from iTunes to the iPhone. If you have a large library, however, this can be cumbersome.
    The alternative is to leave this box unchecked, and instead click on the "Music" tab when the phone is connected. You can then just check the content you want on the phone, by artist, genre, title, playlist, etc. After checking you click the "Update" or "Sync" button and everything you have checked syncs automatically.

  • I can't load some content from my external hard drive to itunes,

    I can't load some content from 1 of my external hard drive to itunes, it can see it and try to load the folder / files but it doesn't appear, these files worked recently as some of them are currently on my ipod touch - I had to factory restore my laptop this week (virus) so have been trying to put everything back on to sync ipod - any ideas???

    To delete files from your external HDD, attach it to your MBP and drag the unwanted files to trash and then empty trash.
    Then you select the files that you want to transfer by 'drag and drop' to the external HDD and trash the files on your MBP.
    Ciao.

  • Dynamically load content into a "template" swf from text file

    I have a dream....
    Well, I have a concept. I have not actively pursued Flash in
    several years, though I've continued to have it in my arsenal. I've
    not done much in the action scripting realm for a while though.
    I am trying to create a template that will be used for about
    100 different product pages.
    It would have two tabs, basically, 2 different graphical
    button sets. One will have up to 4 links to similar products, each
    tab will be on the side of a square, and I need the ability to not
    display a tab if there is no actual link.
    As for the other tab, Its a menu that consists of a series of
    lines. This can be an external menu, I just need a way to have
    flash load the right menu. This menu, when you mouse over a line,
    the name of the product appears, as well as a product image that
    gets loaded with the menu. The product images would be external,
    allowing me to simply replace an image if a new higher end version
    of the product comes out.
    So, I am totally not an actionscripter. Looks like I need to
    load variables from an external file. Can I set a property in the
    flash code on the html that tells the movie what dataset to grab
    from?
    Here's basically what I am looking for
    property: value
    (load variables for:)
    item: 44
    (menu1)
    faster: 54b.html
    slower: 34d.html
    left: 43d.html
    right: 45c.html
    (menu2)
    menu:graph5.swf
    (menu loads images from external source)
    link51: 51d.html
    link52: 52c.html
    link53: 53c.html
    link54: 54d.html
    link55: 55b.html
    link56: 56d.html
    A possible third menu would be text driven, and would use
    html to link to various items.
    This is a static site, so urls will be fixed.
    Is it best to build a php page that serves up data for a
    single item, or do one big text file with all 100 or so items? Is
    that even possible?
    My Flash since MX is very rusty. I am using Flash Pro8. I
    would love to create a single file so modifications are to the text
    files, unless a new item is released, then it's updating a single
    flash menu and updating the text file.
    Been spending way too much time in InDesign lately! I used to
    be pretty good at Flash!

    well sorry there fanmap - but I don't think you're going to
    be able to get this to work. here's why: the link points to a php
    file - which gathers dynamic info from a DB - the return from the
    php is generating a string that is based on the DOM and
    'constructs' a javascript method that in turn writes to the html
    document. although we can embed html into a textField in Flash
    there are a limited number of supported html tags - and JS methods
    will not operate internally. in addition, (i'm not certain someone
    correct this if i'm off) there's no way to 'change' the output of
    the php call, therefore you will not be able to read the return
    because it is designed to use the DOM and write solely to the
    current document. Even if you were to access the JS method from the
    swf file (which one can) it will still only write the content of
    the php return to the html document - and the output is not
    compatible with the textField class.

Maybe you are looking for

  • Photoshop cs4 - crash bib.dll

    On a photoshop cs4 64 bit installation the program have problems running suddenly. I have worked for 6 month without problem, but now there suddenly is the problem: I can start photoshop, but If I for example just open af empty sheet at choosing the

  • OS DB Migration in different customers

    Hi, We are planing to do OS/DB migration from ECC6.0 IBM AIX/Oracle 10.2 to Windows 2003/MS SQL2005 . source and target clients are different customers but both are sister companys and having the agriment to view the data. Now my question is source s

  • Using ATMI and tuxedo to institue distributed transactions across multiple DBs

    I am creating the framework for a given application that needs to ensure that data integrity is maintained spanning multiple databases not necessarily within an instance of weblogic. In other words, I need to basically have 2 phase commit "internet t

  • Working android apps now crash after Mountain Lion upgrade

    I've developed two air for android apps that are on the market using Adobe Air/ Flash Builder.. I just purchased a new mac laptop with Mountain Lion which is a big upgrade over my old machine. The problem is, when I loaded my old project folders into

  • I can't send mail or reply to mail?r

    Cam someone tell me why I can't send mail