Odd Flash Embedding Problem

I am using Flash with SlideShowPro (component) installed, no
actionscript.
My XML file and my images are in a sub folder. The Flash is
not working. I copied the swf into the subfolder the XML is in.
When I open the root level page which has the flash embedded on it,
it pulls up the flash SWF, but does not recognize the xml file
that's in the sub directory. It tries to get an XML file from the
root level, instead.
If I run a page from the subdirectory, it works correctly,
which tells me that the XML file is properly configured when
sitting in that directory.
What do I have to do with the embed statements (or anything
else) to make sure it takes the XML file that is in the same
subdirectory as the swf file, rather than trying to find an xml
file on the root level?
I don't think I can have the swf on the root level, because
it asks for an XML file and there are many different subfolders for
which this has to work. If there is a way, I'd be glad to hear of
it.
The subfolders are all dynamically created, so I can't
preconfigure with separate names for the swf or xml files. At time
of dynamic subfolder creation, I copy in the SWF file and the XML
file is created into that folder.
I appreciate your help.

I'm really desperate for help here.
My problem lies that I'm trying to use a dynamic situation
and PHP.
The PHP creates a folder in images/pictures, copies the swf
file into it, and creates an XML file in it...so, we'll use the
example of 10.
So now we have the houseInfo.php page on the root level with
the swf on it, and the images, actual swf file, and xml sheet are
in images/pictures/10
(remember, it's dynamic. So the number could be 14 or
24...depending on which houseID is in the database)
I can't use a php statement in flash, so I can't make the
flash dynamically grab the correct xml sheet from
images/pictures/10...
So I tried using this method:
http://components.earthscienceagency.com/support/slideshow/examples/dynamic_xml/
By this method, the SlideShowPro doesn't have an xml file
path declared in the component, but rather I have this in the
actionscript:
mySlideshow.loadXML(playlist);
and the component is ID'd as mySlideshow
The embedding on the page uses a php id and it seems to read
it right...this is what a view source will show:
<object height="270" width="250" codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
<param value="slide_frame.swf" name="movie"/>
<param value="playlist=images/pictures/10/slideshow.xml"
name="FlashVars"/>
<param value="high" name="quality"/>
<embed height="270" width="250"
type="application/x-shockwave-flash" pluginspage="
http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
quality="high"
flashvars="playlist=images/pictures/10/slideshow.xml"
src="slide_frame.swf"/>
</object>
You will notice in the flash the playlist is showing the
correct path to where the XML sheet would reside.
But it still doesn't work.
Please, help?
Thanks,
Denise

Similar Messages

  • Dreamweaver Flash Embedding Problem...

    Hello all,
    Just stumbled across a slight issue which im hoping some of
    you may be able to help me with...
    Firstly I will give a slight bit of background...
    As part of a University assignment, a small Dreamweaver based
    website is to be created. In this case I am doing a small website
    for a local architecture firm (it is a live brief).
    As a total beginner with dreamweaver, ive come across a
    problem which is the final piece of the jigsaw, once this is sorted
    it is pretty much finished!
    Anyways, onto the problem...
    The background to the site is one simple jpeg, with the bulk
    text and the links as part of the jpeg, with basic hot-spots
    covering each element.
    However, I also want to integrate flash movies onto the
    page...
    To do this I created a new layer and placed the flash movies
    into their relevant places.
    When published, the flash elements seem to align themselves
    with the browser window itself, as apposed to the page as a whole
    (which is centred).
    Here is a URL to the test upload (there is a spelling mistake
    and a few other things that I have now sorted ready for a final
    upload once sorted)
    http://www.pnefans.net/LMP/home.html
    Any help would be greatly appreciated.
    Thankyou in advance....
    James Lawson

    > When published, the flash elements seem to align
    themselves with the
    > browser
    > window itself, as apposed to the page as a whole (which
    is centred).
    This is how layers work. Their position is offset from the
    location of the
    closest positioned ancestor contaner. When there is none, the
    position is
    relative to the <body> tag. That's what you are
    describing.
    To change that, create a 'closest positioned ancestor
    container' that just
    happens to be one that will center along with the rest of the
    page.
    Change this -
    </head>
    to this -
    <style type="text/css">
    <!--
    body { text-align:center; }
    #wrapper { text-align:left; width:720px; margin:0
    auto;position:relative; }
    /* change the width to suit */
    -->
    </style>
    </head>
    change this -
    <body ...>
    to this -
    <body ...>
    <div id="wrapper">
    and this -
    </body>
    to this -
    </div><!-- /wrapper -->
    </body>
    and see if that helps.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Jimbopne" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello all,
    >
    > Just stumbled across a slight issue which im hoping some
    of you may be
    > able
    > to help me with...
    >
    > Firstly I will give a slight bit of background...
    >
    > As part of a University assignment, a small Dreamweaver
    based website is
    > to be
    > created. In this case I am doing a small website for a
    local architecture
    > firm
    > (it is a live brief).
    >
    > As a total beginner with dreamweaver, ive come across a
    problem which is
    > the
    > final piece of the jigsaw, once this is sorted it is
    pretty much finished!
    >
    > Anyways, onto the problem...
    >
    > The background to the site is one simple jpeg, with the
    bulk text and the
    > links as part of the jpeg, with basic hot-spots covering
    each element.
    >
    > However, I also want to integrate flash movies onto the
    page...
    >
    > To do this I created a new layer and placed the flash
    movies into their
    > relevant places.
    >
    > When published, the flash elements seem to align
    themselves with the
    > browser
    > window itself, as apposed to the page as a whole (which
    is centred).
    >
    > Here is a URL to the test upload (there is a spelling
    mistake and a few
    > other
    > things that I have now sorted ready for a final upload
    once sorted)
    >
    >
    http://www.pnefans.net/LMP/home.html
    >
    > Any help would be greatly appreciated.
    >
    > Thankyou in advance....
    >
    > James Lawson
    >

  • Konqueror + Flash keyboard problem

    Hi,
    I've stumbled upon a problem today with Konqueror and Flash. It's not that it doesn't work at all... The problem is: i can't use keyboard controlls in flash embedded objects like games etc.
    Anyone could help me with this one?

    I've had that problem before too - both with firefox and konqueror. Move the mouse into the flash object, and click somewhere and let the mouse be inside the flash object. That usually does it for me.

  • Pixelation problems occurs in my videos when using adobe flash but using chromes pepper flash no problemes so its definitely adobe problems on my WIndows 8.1

    pixelation problems occurs in my videos when using adobe flash but using chromes pepper flash no problemes so its definitely adobe problems on my WIndows 8.1

    Problem is:
    Flash Player for IE11 (which is the worst browser ever developed - BAR NONE) is a Microsoft product, when it comes right down to it.
    Adobe writes the base code and yes, they do collaborate on updates for it, but the gang in Redmond alter the plug-in and add "proprietary" code before embedding it, and at that point it's "their baby".
    There are two (2) registry keys - 1 for 32 bit IE and the other for 64 bit IE, as well as a KB patch that prevent all but the most experienced Windows users from ever touching the Flash Player plug-in for IE. So there's NO WAY you could have done a clean install of the ActiveX plug-in in Windows 8. Unless you're an uber-geek, you can only update it through Windows Update.
    WIn 8 is an abomination and IE11 made it worse. IE has always been the "problem child" of browsers, failing to handle CSS, Javascript, some PHP and most design "tweaks" that good webmasters can use with other browsers, trouble free.
    I have IE8 on XP, 9 on VIsta, 11 on 7, 10 on 8 and 11 on 8.1... but they're all for testing only. I'd have to be out of my mind to ever think of using IE as my primary browser. ActiveX controls have to be disabled formost stuff and that opens millions of security holes in IE.
    You've got a good video card and a decent sound card. It's a shame to waste them on a pile of garbage like IE, just because it came with Windows.

  • Font embedding problem PPT plugin Acrobat 9 Pro

    Hi,
    having just updated to Acrobat 9 Pro I encounter a font embedding problem when using the PowerPoint plugin (PPT2007) to create a PDF of my presentation. I am working under Windows 7 (64Bit) and use fonts from Mathematica (Wolfram). The generated PDF shows problems displaying the fonts, indicating that they have not been embedded (although font embedding of these fonts is set in the options). The problem does not occur if I directly print to the PDF printer - here all Mathematica fonts are correctly embedded (but this has other disadvantages since videos/animations are not integrated). The problem seems to be specific to Acrobat 9 since under Acrobat 8 everything worked correctly as well.
    Any ideas/solutions for that issue?
    Thanks & best regards
    Ralf

    Perhaps you may need to upgrade to version 9.2 (Acrobat support of Windows 7 begins at this dot release)?
    Be well...

  • Adobe Flash Player Problem: "Movie Not Loaded"

    new user to mac.
    i'm getting more and more frustrated with this computer.
    what's bugging me the most right now is
    i am unable to view videos on certain websites.
    rather than showing the content,
    a white box appears.
    when i right click on the white box,
    it says "movie not loaded" (in gray) and adobe flash player 9 (in black).
    i can't click on the gray line.
    when i click on the black line, it brings me to the adobe website and tells me adobe flash player 9 has been successfully installed.
    i am fairly sure this has nothing to do with heavy traffic.
    any insights on how to resolve this issue?
    cheers.

    Adobe Flash Player Problem
    http://www.adobeforums.com

  • Why Ctrl+Tab stops working when opening a flash embedded page?

    This a huge pet peeve I have. Everytime I watch a video in youtube.com or megavideo.com, I can't just Ctrl+Tab to change tabs. I'll have to clic in some portion of the page without video to get it to work, but even that, isn't always the case.
    - jtbandes
    http://superuser.com/questions/12601/why-ctrltab-stops-working-when-opening-a-flash-embedded-page

    There are other things that need your attention.
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Shockwave Flash 10.1 r53
    See:
    *http://www.mozilla.com/plugincheck/
    Update the Flash plugin to the latest version.
    *https://support.mozilla.com/kb/Managing+the+Flash+plugin
    *http://kb.mozillazine.org/Flash
    *http://www.adobe.com/software/flash/about/
    Update the Adobe Reader plugin to the latest version.
    *https://support.mozilla.com/kb/Using+the+Adobe+Reader+plugin+with+Firefox
    *http://kb.mozillazine.org/Adobe_Reader
    *http://get.adobe.com/reader/otherversions/

  • Strange flashing cursor problem

    Hi,
    I've just finished installing Vista 32bit on my Macbook Air (1.6) and its working fine apart from one small problem - when starting up it freezes on a black screen with a flashing cursor for 2-4 mins and then will start loading Vista fine. Once in there is no problem and its stable and what not. I have had a look at some on the articles on here and other forums and the flashing cursor problem usually refers to when people try to first install a MS OS and not once one has been installed successfully.
    I only have to boot into Vista every now and then and only for a few minutes at a time so I usually spend as much time in Vista as it does loading.
    Any help appreciated.

    General purpose Mac troubleshooting guide:
    Isolating issues in Mac OS X
    Creating a temporary user to isolate user-specific problems:
    Isolating an issue by using another user account
    Identifying resource hogs and other tips:
    Using Activity Monitor to read System Memory and determine how much RAM is being used
    Starting the computer in "safe mode":
    Mac OS X: What is Safe Boot, Safe Mode?
    To identify potential hardware problems:
    Apple Hardware Test
    General Mac maintenance:
    Tips to keep your Mac in top form
    Direct you to the proper forum for MacBook :
    MacBook Series Forums 
    https://discussions.apple.com/community/notebooks?view=discussions
    http://www.apple.com/support/macbookpro
    Mac OS X Forum
    https://discussions.apple.com/community/mac_os?view=discussions
    This forum deals with a desktop/tower 65lb Mac Pro
    http://www.apple.com/support/macpro
    TimeMachine 101
    https://support.apple.com/kb/HT1427
    http://www.apple.com/support/timemachine
    Mac OS X & Mountain Lion Community
    https://discussions.apple.com/community/mac_os
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion?view=discussio ns
    Recovery Mode
    http://support.apple.com/kb/HT4718
    Unless you did a clean install, and I can't tell what your system maintenance is whether it is what I would do. Backup / clone your system, use ML RECOVERY and erase the system partition and update with just Apple updates, don't restore anything.
    Run Apple Hardware Test.
    Take it in for a free check and diagnosis.

  • Flash player problem after updating to belle on my...

    flash player problem after updating to belle on my nokia c7.when I try to play .flv videos screen goes blank as show in image,previously these videos runs fine on symbian anna plz help plz  help or tell me the way to downgrade to anna
    Attachments:
    scr000002.jpg ‏10 KB

    1) product code  059B7W0
    2) software version 111.030.0609
    3) it is actually stored .flv files on my phone  workes fine on symbian anna
    Attachments:
    Scr000003.jpg ‏17 KB
    Scr000004.jpg ‏15 KB

  • When did these flash player problems begin?

    So, I had a computer running Win98 and IE6, which worked
    great until Flash Player 8 autodownloaded about 4 months ago,
    causing the beginning of an extreme headache. Several
    communications with Adobe support (they eventually stopped
    responding) over several weeks went nowhere None of the fixes
    suggested by them, nor the ones here worked. Countless manhours led
    me to think it was time to bite the bullet, buy a new computer. So,
    as of two months ago I have a new computer running XP and IE6 with
    SP2. I didn't know it until today, when I started having crashes,
    but I have Flash Player 7.0.19.0. When i go to Adobe's Test page,
    both Shockwave and Player windows show the animations (and no
    crash).
    On certain pages, which I believe have flash content, I get
    the "IE has experienced a problem and must close" message. It
    specifically mentions the flash.ocx file as the offender. It is
    repeatable when visiting certain pages.
    So, before I jump into the abyss of attempting to fix this, I
    am wondering when these types of problems began. I have been using
    Windows and IE since 1998 with no trouble until this year. I hoped
    moving to a new computer would solve my Flash compatibility
    problems. Could the root problem be new types of spyware, etc that
    change something in the registry? Some of the fixes suggested by
    Adobe were regarding keys changed in the registry. Unfortunately
    those fixes didn't work (in Win98).
    Finally, does anyone know if attempting to fix flash player
    under XP is any easier than 98? Also, I will admit I may have
    visited some sites recently that downloaded some adware, etc. Any
    suggestions on cleaning that may solve the flash player problem? I
    know this post is all over the map - I don't know where to begin...
    Thanks in advance, Don

    Hi
    Which browser is giving you the error? Is it IE11?
    Are you saying when you go to Adobe's website and download flash player it gives you an error?
    Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Macbook air flash drive problem

    my air mid 2012 has flash drive problem cant update and theres written apple would replace it free of charge but theres no official service center in my country what to do?Is it possible that they could send me flash drive or smthing like that

    Apple Authorized Service Providers
    https://locate.apple.com/country
    Best.

  • [help] Flash cache problem?

    Operating Environment: IIS6+ASP.Net 2.0+Flash
    Framework / Procedure:
    When running, Flash will run ASP.NET program. ASP.NET then
    extracts data from the database and generates a XML file for Flash.
    Flash reads the XML file and parse it into a readable format
    for the users.
    Problem:
    When Flash displays the XML content and user leaves/exits the
    webpage, this process creates a change in the database.
    Then if this Flash function is executed again, ASP.NET
    generates a new XML file, but Flash still displays the old XML
    content.
    We discovered that when IE's "Temorary Internet Files"
    setting is set to AUTO, the above problem would occure, we suspect
    this is related to IE cache.
    Is there any way to resolve this Flash cache problem?

    Did you try returning the XML via an ASP script?
    In other words have the ASP generate an ASP wrapper that
    returns XML.
    Then if necessary, you can then add a random URL var to the
    Flash XML load url variable. "theXMLWrapper.asx?x=" +
    getTimer()

  • Cross-browser compatible flash embedding in html5

    I am a newbie with flash with less than a year of experience and this is my first post in this forum.
    I recntly converted my web site from xhtml1.1 to html5 and when it came to flash I was a bit stumped.
    Then the light came on, why not use html5's new and powerful JavaScript engine and I did.
    I was able to use JavaScript to embed the flash object which tested with IE8, FF3.6.4, Safari 5.0, Opera 10.53, SeaMonkey 2.4, Chrome 5,6 and maxthin 2.5 & 3.0.
    I wanted also to keep away from making a http call for swfobject and use the html5 enviornment.
    Therefore, I used the following and placing the JavaScript function within the <head>..</head> tags just above the <body> tag.
    My web site is multi-lingual currently with/for English and German with French and Spanish to follow; the html5 used is simple and it W3C validates it as html5.
    Using the english version this was placed within the head tags
    <script>
           //<![CDATA[
         document.write('<object width="100%" height="100%"  type="application/x-shockwave-flash" data="english.swf"  >');
         document.write('<param name="classid"  value="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" />');
         document.write('<param name="pluginurl" value="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,24"  />');
         document.write('<param name="movie" value="english.swf"  />');
         document.write('<param name="quality" value="best" />');
         document.write('<param name="menu" value="false" />');
         document.write('<param name="allowFullScreen" value="true"  />');
         document.write('<param name="allowScriptAccess" value="sameDomain"  />');
         document.write('<param name="bgcolor" value="#000000"  />');
         document.write('<param name="scale" value="noscale"  />');
         document.write('<param name="wmode" value="window" />');
         document.write('</object>');
            //]]>
    </script>
    I have also noticed that an iPAD visited my wbe site indicatingn to me that it works on an iPAD and by virtue that this method of flash embedding works with the above borwser types; it is I think a cross-browser method.
    To see this in action feel free to visit my web site and look at the index.html, english.html or the german.html code to see this implemented; the web site is www.mirana.net
    Now my questions is:
    1. is this a good method and why? or why not?
    2. can this be placed mainstream ?
    Thank you for reading this and be merciful in responses

    Hi
    Thanks for replying, I appreciate that.
    I do agree that that an initial view may appear as the 'standard flash embed' but in this case it is not by virtue of its location being between the head tags.
    There is IMHO considerable difference placing this method between the head tags as compared to placing in/on the body.  Try it out yourself in html5.
    1. it valdiates
    2. reduces http calls
    3. appears to load faster but that can be purely dependent upon the visitor's internet connectivity
    4. fundamentally works with all browser that I tested it with
    Traditionally with flash embedding there was an issue with/in validation of the html document and this goes back to 2002 when the 'Satay' method corrected this. As I now understand it with the release of CS5 html that is published uses the object method of embedding.
    The fact that an iPAD was on my web site and viewing pages certainly was a surprise, I only wish I had an iPAD.

  • For 4 hours..."Flashing embedded controller.Do not power off." -- on my screen for 4 hours...

    On a Thinkpad X1 Carbon,  I did a Lenovo System Update.  
    One of the updates included the BIOS.   The system shutdown and rebooted.
    The message on the bottom left of the reboot splash screen has been:
    "Flashing embedded controller.  Do not power off."
    for the past 4 hours. 
    Any suggestions? 

      Remove Sophos.
    https://discussions.apple.com/message/21069437#21069437
    Upgrading RAM may help.
    If your Mac runs slowly:
    http://support.apple.com/kb/PH19031?viewlocale=en_US&locale=en_US
      Start up in Safe Mode.  http://support.apple.com/en-us/HT1564
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    Repair Disk
    Steps 1 through 7
    http://support.apple.com/kb/PH5836
    Best.

  • I have a problem to print PDF files with flash embedded.

    I embedded some flash into a PDF file. When previewing the PDF file in Adobe reader 9, the flash looks fine. But when printing the PDF file, the size of the flash become smaller than I specified, and starting repeating in the specified area.
    Am I missing something or is it a bug of Adobe reader 9?

    But do you have the current version of Adobe Reader, which is version 9.2?
    You can check adobe.com for updates for your Adobe Reader for it to function to its full potential.

Maybe you are looking for