Thumbnails won't load from xml to list for video

I am working on a project that will show the thumbnails on
the right, and when one is selected, it will load the video to the
left.
My work in progress can be viewed at www.fimm.tv, see code
attached.
The xml file, flv file .live in the same folder, and the xml
file is this
<?xml version="1.0" encoding="ISO-8859-1"?>
<videos>
<video url="test.flv" desc="Linda" /></video>
<video url="test.flv" desc="1" />
<video url="test.flv" desc="2" />
<video url="test.flv" desc="3" />
</videos>
I am following an awesome tutorial found on the web and this
has helped me a great deal so far. Can anyone spot why my text is
not displaying.
All help appreciated

I was trying to solve this myself just last night and after
seeing your post today I figured maybe I can help you out (as long
as I'm addressing the problem you have).
apparently the addEventListener needs a kick start from
something else. If you look up the Loader class in the Flash help
files it provides an example near the bottom that holds the key.
I'm providing a shorthanded solution that I derived from it.
Rather than:
imageLoader.addEventListener(Event.COMPLETE,
completeHandler);
There is another piece in the in the middle of the process:
"contentLoaderInfo"
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,
completeHandler);
Hope that helps

Similar Messages

  • Image won't load from XML

    I am making a gallery using xml and as3. I've run into a
    problem very early and I'm not too good with Actionscript yet. So
    I've come here for some help.
    What I want right now, is to have an image be loaded from a
    xml file, which is working for me. And then have a white movieclip
    come in a resize behind the image to be a frame for the image. I
    haven't gotten to this part yet. My problem starts when I try to
    load the image with a blank movieclip to position it. The image
    loads, but the eventListener won't run the imageLoaded function. If
    I remove the function and just have
    holder_mc.addchild(imageLoader); Then it works, but I need the
    image to load and then resize the movieclip frame, and then display
    both right? How can I accomplish this?

    I was trying to solve this myself just last night and after
    seeing your post today I figured maybe I can help you out (as long
    as I'm addressing the problem you have).
    apparently the addEventListener needs a kick start from
    something else. If you look up the Loader class in the Flash help
    files it provides an example near the bottom that holds the key.
    I'm providing a shorthanded solution that I derived from it.
    Rather than:
    imageLoader.addEventListener(Event.COMPLETE,
    completeHandler);
    There is another piece in the in the middle of the process:
    "contentLoaderInfo"
    imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,
    completeHandler);
    Hope that helps

  • Formatted Search won't load from XML

    Hello all, I have created an .xml using FormattedSearches.GetAsXML() method.
    And when I try to open it using Company.GetbusinessObjectFromXML(), I get the following Exception:
    <ErrorList><Error>System Id = 101966008, Line Number = 1, Column Number = 79, Description = The namespace of element 'schema' must be from the schema namespace.</Error><Error>System Id = 101966008, Line Number = 1, Column Number = 99, Description = The namespace of element 'element' must be from the schema namespace.</Error>(...and so on)
    Here's the XML code:
    <?xml version="1.0" encoding="UTF-16"?><BOM><BO><AdmInfo><Object>219</Object></AdmInfo><CSHS><row><FormID>133</FormID><ItemID>U_GTConsCd</ItemID><ColID>-1</ColID><ActionT>2</ActionT><QueryId>104</QueryId><IndexID>1</IndexID><Refresh>N</Refresh><FieldID /><FrceRfrsh>N</FrceRfrsh><ByField>Y</ByField></row></CSHS><CUVV /></BO></BOM>
    Would you please help me with this problem?
    Anton
    EDIT: It looks as if the parser found the namespace of element "schema" (the first error) invalid. I looked at the schema for the FormattedSearches object (as returned by GetBusinessObjectXMLSchema()) and there was no namespace specified. But I am afraid I have no access to the schema and cannot fix it, right?

    I was trying to solve this myself just last night and after
    seeing your post today I figured maybe I can help you out (as long
    as I'm addressing the problem you have).
    apparently the addEventListener needs a kick start from
    something else. If you look up the Loader class in the Flash help
    files it provides an example near the bottom that holds the key.
    I'm providing a shorthanded solution that I derived from it.
    Rather than:
    imageLoader.addEventListener(Event.COMPLETE,
    completeHandler);
    There is another piece in the in the middle of the process:
    "contentLoaderInfo"
    imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,
    completeHandler);
    Hope that helps

  • How to load the .xml file list from 'C:\Drag_list\Modified' into xmltype tb

    Hi all experts,
    I am in Oracle Enterprise Manager 11g 11.2.0.1.0.
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Feb 22 11:40:23 2011
    is there anyone know why
    SQL> create or replace directory XMLDIR as '/xdb/faq/testdata'
    2 /
    SQL> set long 10000 pages 200 lines 150
    SQL> --
    SQL> select xmltype(bfilename('XMLDIR','2003.xml'),nls_charset_id('AL32UTF8'))
    2 from dual
    worked. but
    SQL> create or replace directory XMLDIR as 'C:\Drag_list\Modified';
    SQL> select xmltype(bfilename('XMLDIR','2011.xml'),nls_charset_id('AL32UTF8'))
    from dual
    did not work?
    IS there any way I can load the .xml file list from 'C:\Drag_list\Modified' into xmltype table?
    Thanks.

    did not work?Generally we'll need a bit more info than "it didn't work", was there an ora-X error message? What was the error?
    Assuming you're on *nix a 'C:\<folder name>\...' directory spec just plain won't work, the directory has to point to a valid storage location on the database server host.
    Try a host command (at the database server) and make sure the .xml file name and location is valid, in sqlplus a "bang" (exclamation) runs a host command, i.e.:
    SQL> !ls -l /xdb/faq/testdata
    ... usr grp ... 2003.xml
    ...But if you are on windows, its the `host` command:
    SQL> host dir c:\drag_list\modified
    mm/dd/yyyy ... 2011.xml
    ...  The create directory ... as ... must point to a valid storage location for it to work, at least that is step one.

  • How to load the .xml file list from 'C:\Drag_list\Modif into xmltype table?

    Hi all experts,
    I am in Oracle Enterprise Manager 11g 11.2.0.1.0.
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Feb 22 11:40:23 2011
    is there anyone know why
    SQL> create or replace directory XMLDIR as '/xdb/faq/testdata'
    2 /
    SQL> set long 10000 pages 200 lines 150
    SQL> --
    SQL> select xmltype(bfilename('XMLDIR','2003.xml'),nls_charset_id('AL32UTF8'))
    2 from dual
    worked. but
    SQL> create or replace directory XMLDIR as 'C:\Drag_list\Modified';
    SQL> select xmltype(bfilename('XMLDIR','2011.xml'),nls_charset_id('AL32UTF8'))
    from dual
    did not work?
    IS there any way I can load the .xml file list from 'C:\Drag_list\Modified' into xmltype table?
    Thanks.
    Edited by: Cow on Apr 13, 2011 12:58 AM

    This is a question better suited for the sql and pl/sql support forum, since it is NOT an APEX based question..: PL/SQL
    Thank you,
    Tony Miller
    Webster, TX
    On the road of life...There are 'windshields', and there are 'bugs'
    (splat!)
    "Squeegees Wanted"
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Custom Connection Manager only works in 32bit- 0xC0011008: Error loading from XML

    I have a very basic / stripped connection manager with only one property (SSIS 2012). It works fine in design time (you can open the connection manager editor and change the value), but in runtime it only works in 32bit mode. The runtime-validate-method
    does work, but if everything validates OK then in 64bit it throws an error when you run the package:
    Exception deserializing the package "The package failed to load due to error 0xC0011008 "Error loading from XML. No further detailed error information can be specified for this problem because no Events object was passed where detailed error information
    can be stored.". This occurs when CPackage::LoadFromXML fails.
    The 2 VS projects are .Net 4 class library projects with the Build Platform on "Any CPU"
    I only add references to:
    Microsoft.SqlServer.ManagedDTS - C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.SqlServer.ManagedDTS\v4.0_11.0.0.0__89845dcd8080cc91\Microsoft.SqlServer.ManagedDTS.dll
    Microsoft.SqlServer.Dts.Design - C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.SqlServer.Dts.Design\v4.0_11.0.0.0__89845dcd8080cc91\Microsoft.SqlServer.Dts.Design.dll
    Compiled DLL's are available in GAC and SQL Server connections folder:
    I made the sourcecode available via codeplex:
    https://ssisconnectionmanager.codeplex.com/SourceControl/latest#myFirstConnectionManager/2012/myFirstConnectionManager/myFirstConnectionManager.cs
    Please mark the post as answered if it answers your question | My SSIS Blog:
    http://microsoft-ssis.blogspot.com |
    Twitter

    AppPrincipal (identity) related? Hint http://serverfault.com/questions/339747/the-package-failed-to-load-due-to-error-0xc0011008-error-loading-from-xml
    Arthur My Blog
    Hi Arthur,
    Looks like something similar (same message, same 64bit issue), will try that tomorrow! But sounds weird that you should tell SSIS which identity to use...
    Found the same thread in MSDN:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/47d185d3-c801-45cf-becd-3c2524d98353/the-package-failed-to-load-due-to-error-0xc0011008-error-loading-from-xml?forum=sqlintegrationservices
    Please mark the post as answered if it answers your question | My SSIS Blog:
    http://microsoft-ssis.blogspot.com |
    Twitter

  • SSIS packages deployment error- The package failed to load due to error 0xC0011008 Error loading from XML

    I am trying to deploy SSIS packages to file system using manifest file. These packages are upgraded from SSDT 2005 to SSDT 2010. Also I have changed the protection level from 'EncryptSensitiveWithPassword' to 'DontSaveSensitive' to upgrade it.
    I coun't complete the deployment and the error details shown below.
    TITLE: Package Installation Wizard
    Package "Packagename.dtsx" could not be loaded. The package failed to load due to error 0xC0011008 "Error loading from XML. No further detailed error information can be specified for this problem because no Events object was passed where detailed
    error information can be stored.". This occurs when CPackage::LoadFromXML fails.
    Package ""Packagename.dtsx" could not be loaded. The package failed to load due to error 0xC0011008 "Error loading from XML. No further detailed error information can be specified for this problem because no Events object was passed where
    detailed error information can be stored.". This occurs when CPackage::LoadFromXML fails.
    ADDITIONAL INFORMATION:
    The package failed to load due to error 0xC0011008 "Error loading from XML. No further detailed error information can be specified for this problem because no Events object was passed where detailed error information can be stored.". This occurs when
    CPackage::LoadFromXML fails.
    The package failed to load due to error 0xC0011008 "Error loading from XML. No further detailed error information can be specified for this problem because no Events object was passed where detailed error information can be stored.". This occurs when
    CPackage::LoadFromXML fails.
    BUTTONS:
    OK
    Please give a solution.
    Sreekanth Mohan

    Check this
    blog post as it gives complete information about error.
    It looks like its still using SQL 2005 DTEXEC.exe instead of latest version.
    Regards,
    Vishal Patel
    Blog: http://vspatel.co.uk
    Site: http://lehrity.com

  • The package failed to load due to error 0xC0011008 "Error loading from XML....." This occurs when CPackage::LoadFromXML fails

    Source environment: Win 7 Enterprise SP1 64bit - SQL Server 2008 R2 SP1 Developer Edition (10.50.2550.0 )
    Target environment: Win 2008 R2 Standard SP1 64bit - SQL Server 2008 R2 SP1 Standard Edition (10.50.2500.0
    I want to deploy a package with the deployment manifest, but I'm getting an error (during deployment):
    Package "D:\Program Files (x86)\Microsoft SQL Server\100\DTS\Packages\Migration\Students.dtsx" could not be loaded.
    The package failed to load due to error 0xC0011008 "Error loading from XML. No further detailed error information can be specified for this problem because no Events object was passed where detailed error information can
    be stored.". This occurs when CPackage::LoadFromXML fails.
    I already remove a fuzzy lookup since this isn't part of the Standard edition, but still getting the error above.
    Package Example:
    If I just copy the package and try to run it I get this (0xC0010014):
    Any suggestions?

    Hi SSISJoost,
    After installing some update such as MS09-62 (KB970896), the "DTS.dll" and "MsDtsSrvrUtil.dll" may be unregistered. In this issue, the error may occur if the two DLL files are not registered. Here, please register both the 32 bit and 64 bit versions of the
    DTS.dll and MsDtsSrvrUtil.dll files, and check the issue again.
    Hope this helps.
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • My imac won't load from the white screen with the logo on? What shall I do?

    My imac won't load from the white screen with the apple logo and buffering sign? What shall I do..

    Try any of the steps suggested in this article that you haven't already tried:
    http://support.apple.com/kb/TS2570?viewlocale=en_US&locale=en_US

  • Form are different when save an exist form as XML then load from XML

    Hi everyone,
    Who have experience that save an exist form as XML file then load from XML, some controls position, size and color different with the source form.
    I want to use the system wizard form style and I saved system form MRP Wizard as XML file, when I load form from XML, the form shows picture with different position, size, the rectangle control lost color and position also different with source form, because I want to get the line color in the form, the separate line implement using rectangle, please share your opinion how to save the form as XML more Accurate.
    Thanks in advance!
    Kathy

    Hi Kathy
    After loading a form over XML, we made the experince that in matrices link buttons will not appear everwehere they should. It's a tricky part and we made a work around by changing the columns order and then...the Link Buttons came up ok.
    regards
    Kurt

  • AR can't be added-Error "Failed to load from XML resource"

    Hi Everyone,
    I need help with this error. When entering an item and then tabbing in an AR document, this code appears.
    "Failed to load from XML resouce".
    Thanks,\
    Debbie

    Hello experts,
    I am facing this issue in SBO 9.0 PL 08.
    Using SBOdemoUS, clic 'Duplicate' an existing Sales Order, then select a Business Partner, and hit 'yes' to the question in order to refresh rows with new BP info. You will get red bar error 'Failed to load from XML resource - (UI_API 7004) [Message 66000-6]'  and it wipes out all the copied rows info.  Does not happen with BPs that don't have default Ship To info.
    Your advise please.
    Thanks

  • Load from xml CSharp

    Hi all,
    I'm trying to write some code in C# and I have a problem with LoadFromXML function. Here's my code:
                   try
                        System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();
                        string path;
                        string refString;
                        path = Environment.CurrentDirectory;
                        <b>xmlDoc.LoadXml(path + "
    " + fileName); //Exception</b>
                        refString = xmlDoc.InnerXml;
                        App.LoadBatchActions(ref refString);
                   catch (Exception ex)
                        Msg("Load from XML failed: " + ex.Message);
    In bolded line ecpetion appears: "The data at the root level is invalid. Line 1, position 1."     . Does anyone know what to do with this?
    Regards
    Hmg

    Also instead of
    Enviroment.CurrentDirectory
    you should use
    System.Windows.Forms.Application.StartupPath
    , because after you build you add-on with an installer Enviroment.CurrentDirectory does not point to the installed folder

  • My photos won't "load" - it has worked fine for at least two years, but suddenly now when I plug in the chip, iPhoto opens up as usual, but the window just says "loading photos",  and the little wheel keeps on spinning - can anyone help me?? I am new here

    my photos won't "load" - it has worked fine for at least two years, but suddenly now when I plug in the chip, iPhoto opens up as usual, but the window just says "loading photos",  and the little wheel keeps on spinning - can anyone help me?? I am new here. I need to get it working again because we're about to go on a trip!

    What version of iPhoto? Assuming 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • How do I make a drop down list of text in numbers as it is made in the example spreadsheet for comparing cars for buying where you can choose a value from a dropdown list for each car?

    how do I make a drop down list of text in numbers as it is made in the example spreadsheet for comparing cars for buying where you can choose a value from a dropdown list for each car?

    Where is this example spreadsheet? Without seeing it I can only guess at what you are asking.
    To make a drop-down list (a pop-up menu in Numbers-speak), format the cell as a pop-up then edit and add to the list of items.
    If the example spreadsheet is pulling in a dollar value based on what car you chose in the pop-up, it is probably using LOOKUP or one of the other lookup functions, getting the information from another table (a lookup table). If, instead, these dollar values are what you are choosing in the pop-up, then you need to create a pop-up with these values in it.
    The Help menu includes a link to a page where you can download the Numbers Users Manual. It also has a link to the Formulas and Functions guide. Both are useful to new users.

  • TFS Workitems:Bugs : I want ot select different lists, from the global list, for fields basd upon user group

    Hi,
    I am customizing the bug workitem workflow.
     I want ot select different lists, from the gllobal list, for fields basd upon user group
    I am aware that I can use "when" clauses in the allowed/suggested values of the field.
    My question is : how do I get the group(s) that the current user is in and how do use this to select different lists?

    Hi!
    You can not do this through standard way. You must to create the custom work item control:
    http://witcustomcontrols.codeplex.com/
    And get the user group through IIdentityManagementService.
    IIdentityManagementService IdentityService = _workItem.Store.TeamProjectCollection.GetService<IIdentityManagementService>();
    TeamFoundationIdentity _curid = null;
    _workItem.Store.TeamProjectCollection.GetAuthenticatedIdentity(out _curid);
    string _group = "Admin";
    var _gr = IdentityService.ReadIdentity(IdentitySearchFactor.AccountName, _group, MembershipQuery.Direct, ReadIdentityOptions.None);
    if (_gr.Members.Where(s => s.Identifier == _curid.Descriptor.Identifier).Count() > 0) return true;

Maybe you are looking for

  • Lenovo 3000 N200 graphic card memory problem

    Hello, Ive recently bought a new Lenovo 3000 N200, which has a onboard graphic card Intel X3100 with 256MB (shareable) memory. The problem is, it shows, in the Intel media graphic accelerator driver (under information) it has only 128MB. This is a co

  • Exchange 2013 Mailbox Role Installation Error

    Hi All, I am getting the below error when installing Exchange 2013 Mailbox Role. This is a Windows Server 2012. Previous Exchange 2013 setup was removed since it had issues with CAS. Now we have removed all previous Exchange software and attributes.

  • Wrong Case or ClassCastException

    Hello everyone I use JWSDP2.0, JDK is jdk1.5.0_12 I have tried to generate class by the command: xjc -p test.jaxb poll.xsd Following is the schema <?xml version="1.0" encoding="UTF-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" element

  • How do I see my deleted contacts so I can add back...

    How do I see my deleted contacts so I can add back onto my contact list? Thanks in advance

  • Post 10.4.11 update, iMac restarts 30min after shutdown

    Hi everyone, Sorry if someone else has posted this, but I couldn't find a similar problem on the forum. Since updating a few days ago, my mac no longer stays permanently shutdown, but restarts itself around 30min after shutdown. I have run the combo