Content dissappears in IE7

I have a flash navigation that works fine in every browser
except IE7. I
have the flash 8 plugin installed and exported the movie at
version 7. The
content is loaded from an external txt file. The movie
actually loads fine
but the content is missing. I tried a the following parameter
to get it
working but to no avail.
<param name="swliveconnect" value="true">
LINK:
http://www.valenciacc.edu/LearningConference/
Please help. Thanks!
-- Jeff

I have a flash navigation that works fine in every browser
except IE7. I
have the flash 8 plugin installed and exported the movie at
version 7. The
content is loaded from an external txt file. The movie
actually loads fine
but the content is missing. I tried a the following parameter
to get it
working but to no avail.
<param name="swliveconnect" value="true">
LINK:
http://www.valenciacc.edu/LearningConference/
Please help. Thanks!
-- Jeff

Similar Messages

  • Problem:  Apps won't open, Music, Movies iPod contents dissappear

    I was just wondering if anyone else has had this problem.
    The other day, I just turned off my phone and turned it back on. Then all my downloaded apps stopped working. I would try to open and they would begin to open only to go back to my iPhone screen.
    Then I noticed all iPod contents (Movies, music, Audiobooks) were gone. I ended up restoring my phone which worked temporarily.
    It happened again yesterday. Had to restore again.
    It happened again just now. Can't restore right now.
    I have many applications 40+. I guess it could be one of those causing it but I'm also thinking it might be a hardware issue.
    Anyone else have this or a similar problem?
    Thanks!

    Does your apps work? I'm guessing they don't.
    Just uninstall all your apps through iTunes. It will take forever but once its done, check your music. If its still missing, power off your phone and power it on.
    The music should return. If it didn't, you might have to restore it. You can contact Apple if you like.
    Then go through and install the apps you want one at a time. Don't go too much over 20. If you install too many, you will have the problem again and you'll have to repeat the steps above.
    Hopefully the next update will fix the problem. I think I read some places where downgrading to iTunes 7.7 fixed their issue but I didn't go through all that.

  • Inbox contents dissappeared

    my whole inbox content disappeared, i noticed another discussion going on in the forum but it involved tiger and im on 10.3.9
    any suggestions?

    im not sure of my hard drive capacity, where should i look for that
    Copied from Dr. Smoke's Problems from insufficient RAM and free hard disk space.
    1. In Finder, select the icon of the hard drive containing your Mac OS X startup disk.
    2. Press the Command-I key combination. The Get Info window for the hard drive will open, showing the following statics about your Mac OS X startup disk: Capacity, Available (free space), and space Used.
    there were thousands of emails i had my inbox, maybe 3-4000
    Number of messages isn't as important as the overall size of a mailbox. All email clients have limits and the recommended size limit for a Jaguar or Panther mailbox is 1GB and for Tiger Mail, 2GB.
    Since an account's Inbox mailbox is usually the most active mailbox, it is more prone to corruption over time which is why you should not use an account's Inbox mailbox as the final storage location for all received messages not deleted and the same for an account's Sent mailbox.
    Using the Rebuild Mailbox function on the most active mailboxes on a regular basis is also a good idea - once a month or so depending on activity.
    Email is no different from any other important data. Besides creating and using "On My Mac" mailbox to sort received and sent messages by category that you need to save, maintaining a regular backup of Mail.app data along with all other important data is highly recommended.
    It isn't a matter of if but when your hard drive has a partial or complete failure since none last forever.
    If your free hard drive space is not adequate for OS X to function properly (the Mail.app alone requires the same amount of free hard drive space as the overall size of the Mail folder at Home > Library > Mail) for general housekeeping function during use, data loss can occur.

  • AIR Intrinsic Classes-Tried and Proven Approach to building AIR applications   in the Flash CS3 IDE

    Hi everyone,
    For all of you out there who would like to develop AIR
    applications
    from the Flash CS3 IDE but aren't sure how to get those pesky
    intrinsic
    classes working, I have a technique that you can work with to
    create
    your classes and make fully functional AIR applications.
    First of all, those solutions out there that list
    "intrinsic" functions
    in their class definitions won't work. That keyword has been
    taken out
    and simply won't work. The "native" keyword also doesn't work
    because
    Flash will reject it. The solution is to do dynamic name
    resolution at
    runtime to get all the classes you need.
    Here's a sample class that returns references to the "File",
    "FileStream", and "FileMode" classes:
    package com.adobe{
    import flash.utils.*;
    import flash.display.*;
    public class AIR extends MovieClip {
    public static function get File():Class {
    try {
    var classRef:*=getDefinitionByName('flash.filesystem.File');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get File
    public static function get FileMode():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileMode');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileMode
    public static function get FileStream():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileStream');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileStream
    }//AIR class
    }//com.adobe package
    I've defined the package as com.adobe but you can call it
    whatever you
    like. You do, however, need to import "flash.utils.*" because
    this
    package contains the "getDefinitionByName" method. Here I'm
    also
    extending the MovieClip class so that I can use the extending
    class
    (shown next) as the main Document class in the Flash IDE.
    Again, this is
    entirely up to you. If you have another type of class that
    will extend
    this one, you can have this one extend Sprite, Math, or
    whatever else
    you need (or nothing if it's all the same to you).
    Now, in the extending class, the Document class of the FLA,
    here's the
    class that extends and uses it:
    package {
    import com.adobe.AIR;
    public class airtest extends AIR{
    public function airtest() {
    var field:TextField=new TextField();
    field.autoSize='left';
    this.addChild(field);
    field.text="Fileobject="+File;
    }//constructor
    }//airtest class
    }//package
    Here I'm just showing that the class actually exists but not
    doing much
    with it.
    If you run this in the Flash IDE, the text field will show
    "File
    object=null". This is because in the IDE, there really is no
    File
    object, it only exists when the SWF is running within the
    Integrated
    Runtime. However, when you run the SWF as an AIR application
    (using the
    adl.exe utility that comes with the SDK, for example), the
    text field
    will now show: "File object=[object File]". Using this
    reference, you
    can use all of the File methods directly (have a look here
    for all of
    them:
    http://livedocs.adobe.com/labs/flex/3/langref/flash/filesystem/File.html).
    For example, you can call:
    var appResource:File=File.applicationResourceDirectory;
    This particular method is static so you don't need an
    instance. If you
    do (such as when Flash tells you the property isn't static),
    simply
    create an instance like this:
    var fileInstace:File=new File();
    fileInstance.someMethod('abc'); //just an example...read the
    reference
    for actual function calls
    Because the getter function in the AIR class returns a Class
    reference,
    it allows you to perform all of these actions directly as
    though the
    File class is part of the built in class structure (which in
    the
    runtime, it is!).
    Using this technique, you can create references to literally
    *ALL* of
    the AIR classes and use them to build your AIR application.
    The beauty
    of this technique is its brevity. When you define the class
    reference,
    all of the methods and properties are automatically
    associated with it
    so you don't need reams of code to define each and every
    item.
    There's a bit more that can be done with this AIR class to
    make it
    friendlier and I'll be extending mine until all the AIR
    classes are
    available. If anyone's interested, feel free to drop me a
    line or drop
    by my site at
    http://www.baynewmedia.com
    where I'll be posting the
    completed class. I may also make it into a component if
    there's enough
    interest. To all of you who knew all this already, I hope I
    didn't waste
    your time.
    Happy coding,
    Patrick

    Wow, you're right. The content simply doesn't show up at all.
    No
    JavaScript or HTML parsing errors, apparently. But no IE7
    content.
    I'll definitely have to look into that. In the meantime, try
    FireFox :)
    I'm trying to develop a panel to output AIR applications from
    within the
    Flash IDE. GSkinner has one but I haven't been able to get it
    to work
    successfully. Mine has exported an AIR app already so that's
    a step in
    the right direction but JSFL is a tricky beast, especially
    when trying
    to integrate it using MMExecute strings.
    But, if you can, create AIR applications by hand. I haven't
    yet seen an
    application that allows you to change every single option
    like you can
    when you update the application.xml file yourself. Also, it's
    a great
    fallback skill to have.
    Let me know if you need some assistance with AIR exports.
    Once you've
    done it a couple of times, it becomes pretty straightforward.
    Patrick
    GWD wrote:
    > P.S. I've clicked on your link a few times over the last
    couple of days to
    > check it out but all I get is a black page with a BNM
    flash header and no way
    > to navigate to any content. Using IE7 if that's any
    help.
    >
    >
    >
    http://www.baynewmedia.com
    Faster, easier, better...ActionScript development taken to
    new heights.
    Download the BNMAPI today. You'll wonder how you ever did
    without it!
    Available for ActionScript 2.0/3.0.

  • Display problems in IE 7?

    Hello,
    I updated some files in Dreamweaver yesterday and ever since I sent them live I  am having some display issues with a few of our pages in IE 7. The pages display  fine in IE 8, Chrome, Safari and Firefox. In IE7 there is a huge amount of white  space being inserted so that the text is appearing at the bottom of the page  rather than at the top. I edited some tables on our staff information page and  sent the files live yesterday...the issue seems to be affecting those pages as  well as the index page (which is kind of strange since I made no edits to that  page).
    I think this probably has something to do with a css file that might  have been changed accidentally but I am very new to this process so I'm not  exactly sure what to look for. I looked at the html code and it appears to be  the same as the pages that are not being affected by the problem.
    Has  anybody else run into this problem before? Any suggestions would be much  appreciated! Our website is ims.utah.edu if you want to take a look...the  problem is affecting the home page, the staff information pages and the hours of  operation page.
    Thanks.

    You will have to adjust your tables, images, etc in the content div to fix these problem. They are popping out of the content div in IE7 or IE8 compatability mode. If you reduce you tables to 95% (or reduce pixels by 10px) and images also, that should fix your problems. To test this, you can delete that image and if things wrap to where they belong, then the image is too wide.
    Let me be a little bit more clear on this. I wasn't very clear above.
    On your main page, the problem is with your image (campusview1_big.jpg) It is too wide for the "content div" in IE7 and IE8 compatability view (in ie go to Tools and select compatability view).
    Your Staff information page has a problem with the table width being too wide for the "content div". Adjust it down in pixels or give it a 95% width. You will have to play with the numbers here to get it to work.
    Your Hours of Operation page, same thing.
    Jim

  • T61p 6460 74M - Client Security Solution Problem

    I am having problems with the Client Security Solution running under Vista
    I am able to log in OK using the fingerprint reader or password however after the system boots the CSS widow appears asking for password, I enter the password but it does not recognise this and requeste retry or cancel. If I retry the password entry it advises that "Authentication Failed". I then cancel and the CSS window offers to configure the CSS - hit "Yes", requests verification of identity with password - I enter password - response is "Authentication Failed" and back to square 1.
    Can the CSS be reinstalled and then reinitialised. This problem may have arisen after I upgraded my Norton Internet Security 2007 or 2008 to NIS 2009, or when I reset Internet Explorer 7. I note at this time the Password Manager dissappeared from IE7.
    Does anybody have some advice please since this useful function - Password Manager - has now been either disabled or removed.
    Regards Chris R.

    I had problem with CSS also after installing (maybe) Norton Update. No answer from CSS at all any where, and I could not start it it either.
    I reinstalled it with the application:
    C:\Program Files\Lenovo\Client Security Solution\css_admin_vista_launcher.exe
    An then it works again - installation will delete all store passwords!

  • How come that AppleTV and MacBook pros playing different concerts

    Set up is fine, but when I  watch  Concert on Apple TV/TV set  i have a different concert on my  2 mac.
    this is annoying because there a different pictures/sounds.
    how to solve this?

    I think this is a well known problem that others have posted ATV3's are disconnecting from Home Sharing meaning all iTunes content dissappears but they are still on the network so Internet services such as Netflix still work.
    If you ATV is hard wired, try switching to WiFi instead that fixed mine.

  • Worst case scenario going on,..

    okay my old computer had itunes,but now its gone.everything was wiped out.no more itunes,and i didnt have any of my songs,photos,videos backed up. my ipod still has everything in it (thank god) and i just downloaded itunes a couple of minutes ago. Now i changed the settingss so tht itunes wouldnt automatically sync the emmpty library with the ipod. and im trying to drag and drop the files from my ipod to the library,but it wont let me. Is there i can do this,or am i stuck this way?
    also,i have my ipod conected right now,and its showing its summary page,and at the bottom it says 'sync",if i click that will all my content dissappear?or will all of it get transferred to itunes?

    I've never used that utility. I actually paid for this one
    http://www.zeleksoftware.com/liberator.htm
    because I it works well and has a few extra features, such as saving playlists.
    But yamiPod probably works the same way. The utility probably asks for a location to put the files. Select a place that you can easily access later, in your hard drive. Let the utility do it's thing and copy the files to that location.
    Once it is done, spot check the location to confirm the files are there. Then run iTunes. First, go to preferences Advanced tab to check two things. The checkbox for +Keep iTunes Music folder organized+ should be checked, as well as the one for +Copy files to iTunes Music folder when adding to library+. If those options are checked, when you add the songs to the iTunes library, iTunes will make a copy and put it into your designated +iTunes Music+ folder AND organize the song files by Artist and then by Album. iTunes will access the copied music files from the +iTunes Music+ folder going forward.
    To get the songs files into your iTunes library, open a Windows Explorer (or My Computer) window to show the location where yamiPod placed the files. Drag the folder with all the files from that window and drop it onto an open iTunes window; drop it onto the main pane that shows your Music LIBRARY. iTunes should look for all the music files in that folder and put them into your iTunes library (as well as copy the files to your +iTunes Music+ folder).
    Once iTunes finishes, you should spot check your +iTunes Music+ folder to makes sure the files are there. You can also do a +Get Info+ on a few random songs, and make sure their files are stored in your +iTunes Music+ folder.

  • VBAP append structure field on Overview screen 4900

    Hi,
    I have created an append structure on VBAP with a ZZ field and have included this field on the table control in the overview (sub)screen 4900 in SAPMV45A. 
    I have put the field in a number of the PAI CHAIN statements, but whenever I enter a value in the field and hit Enter, the value disappears.
    Does anyone have a definitive list of places that I need to change code to stop the field contents dissappearing?
    Many thanks,
    Andrew

    Hi - I have the issue of presenting ZZ fields from VBAP in the Item overview screen 4900. From your conversation I cannot see any solution to your similar issue. Did you do modifcations or is there a SAP way to include ZZ fileds in the 4900 screen?
    Please respond.
    Best regards Steen Pedersen

  • CDATA & nested XML data

    I've read the various entries and have ensured the column is
    defined to have HTML content, but in IE7 & Spry 1.6 the content
    provided through the NestedXMLDataSet is not being interpreted as
    HTML, whereas the content from the XMLDataSet is interpreted
    correctly. I reduced the xml data and the page to its most
    simplistic:
    e.g.
    var dsNursery = new
    Spry.Data.XMLDataSet("data/nursery_template.xml", "/events/event");
    var dsItems = new Spry.Data.NestedXMLDataSet(dsNursery,
    "items");
    dsNursery.setColumnType("heading", "html");
    dsItems.setColumnType("content", "html");
    <body>
    <div id="container">
    <div id="sidebar1">
    <ul id="MenuBar1" class="MenuBarVertical"
    spry:region="dsNursery dsItems">
    <li spry:repeat="dsNursery" spry:setrow="dsNursery">
    <a class="MenuBarItemSubmenu" href="#"
    spry:if="{dsItems::ds_RowCount} > 1">{heading}</a>
    <a href="#" spry:if="{dsItems::ds_RowCount} ==
    1">{heading}</a>
    <ul spry:if="{dsItems::ds_RowCount} > 1">
    <li spry:repeat="dsItems" spry:setrow="dsItems"><a
    href="#">{dsItems::item}</a></li>
    </ul>
    </li>
    </ul>
    <!-- end #sidebar1 --></div>
    <div id="mainContent">
    <div id="MenuBar1Detail" spry:detailregion="dsNursery
    dsItems">
    <div id="content">{dsItems::content}
    {heading}</div> <----------------------- "content" is not
    interpreted, but "heading" is.
    </div>
    <!-- end #mainContent --></div>
    <script type="text/javascript">
    Spry.Data.Region.addObserver('MenuBar1',{onPostUpdate:function(){var
    MenuBar1 = new Spry.Widget.MenuBar("MenuBar1");}});
    </script>
    </body>
    </html>
    XML file is:
    <?xml version="1.0" encoding="utf-8"?>
    <events>
    <event>
    <heading><![CDATA[<strong>heading
    1</strong>]]></heading>
    <items>
    <item >item 1</item>
    <content ><![CDATA[<strong>content
    1</strong>]]></content>
    </items>
    </event>
    </events>
    Any assistance is gratefully appreciated.

    Hi fcc770,
    I fixed the setColumnType problem for nested data sets after
    we shipped Spry 1.6. You can find a version with the bug fix here:
    http://labs.adobe.com/technologies/spry/includes/SpryNestedXMLDataSet.js
    The header at the top of the JS file should read version 0.4
    or greater.
    Let me know if that fixes your problem.
    --== Kin ==--

  • Quicktime keep crashing IE

    So I've had quick time for sometime now, latey it has been craching IE7 whenever I access a webpage that has Quicktime i get an error message that say : there was a plugin error on this page and that plug in did not initialize properly. After I get that pop up I'm forced to close IE . It's becoming annoying to the point where I want to uninstall it.

    I am having the same exact issue. This is ridiculously frustrating.
    When trying to access QuickTime content in both IE7 and Safari (ie. the new iPhone video), both browsers crash. IE7 first displays an error message similar to the ones posted above in this thread, while Safari simply crashes.
    Hopefully Apple is working on a fix for all of us being affected by this issue.

  • Dreamweaver embedded flash content will not load in IE7

    My company standard is IE7
    I'm charged with developing flv that will auto play on PC from a removable thumb drive.
    in addition it should be able to launch a url.
    I'm using CS4 Flash and Dreamweaver
    developing on a Mac.
    I've used action script 3 to program buttons that start, stop and launch url
    I've worked everything out on a Mac.it works fine in Mac environment.
    I've gotten swf files to autoplay on PC
    the PROBLEM?
    when I try load the html web page on the PC with IE7 the flash content (either a swf or flv embedded using Dreamweaver) does not load.
    IF I leave the IE specific html in the code IE7 returns a message that flash player needs to update. - IT has installed the latest version of flash player.
    if I extract the sniffer/alternative code the flash content does not load there is no message
    If the swf file auto loads and plays then Why is that a problem?
    action script -  to launch url execution launches as a security warning and the trusted settings window
    not very seamless eh?
    so the alternative is to play the flash content embedded in html and create launch url button in html . . . but ofcourse flash content won't load in IE7.
    I've not been able to test the code on any other version of IE
    I hope this is enough information to help if not let me know what you need to know . . .
    thanks in advance for any time you all spend on this.
    M

    So right now you have a SWF file that plays and FLV file and it's not loading in IE7.  Is the testing server that you are using NOT on your local machine?  The reason I ask this is because IE will typically block content if it is hosted on the local machine and treat it as a security risk, prompting the message you refer to.
    Also would it be possible for us to see the code you are using for the plugin?  Most users here will be able to help troubleshoot any issues with the HTML code if we can see it, however, there is a possibility that the fix may be in Flash, in which case you should cross-post this in the Flash forum as well for assistance just in case.

  • Flash content will not load in IE7

    My company standard is IE7
    I'm charged with developing flv that will auto play on PC from a removable thumb drive.
    in addition it should be able to launch a url.
    I'm using CS4 Flash and Dreamweaver
    developing on a Mac.
    I've used action script 3 to program buttons that start, stop and launch url
    I've worked everything out on a Mac.it works fine in Mac environment.
    I've gotten swf files to autoplay on PC
    the PROBLEM?
    when I try load the html web page on the PC with IE7 the flash content (either a swf or flv embedded using Dreamweaver) does not load.
    IF I leave the IE specific html in the code IE7 returns a message that flash player needs to update. - IT has installed the latest version of flash player.
    if I extract the sniffer/alternative code the flash content does not load there is no message
    If the swf file auto loads and plays then Why is that a problem?
    action script -  to launch url execution launches as a security warning and the trusted settings window
    not very seamless eh?
    so the alternative is to play the flash content embedded in html and create launch url button in html . . . but ofcourse flash content won't load in IE7.
    I've not been able to test the code on any other version of IE
    I hope this is enough information to help if not let me know what you need to know . . .
    thanks in advance for any time you all spend on this.
    M
    To the moderator I apologize for an earlier "test" post I was unaware nay ignorant of a test forum . . .

    I am having the very same problem and have done exactly the same... generated my html through flash professional CS5.  It works great in IE8 but is just a blank page in IE7.  You did not post the solution, did you find one? 
    My flash generated code is here http://www.asessippi.com/test/calendar.html will all of the supporting files in the same folder, and nothing else in there. 
    Any suggestions?

  • Swf reloaded autometically in aspx page and buttons dissappear from flash content

    Hi, I am facing a problem with flash content in aspx.
    After spending some time, the swf embeded in the aspx page is
    reloaded autometically ( without refresing the aspx page only swf
    reload ) and two buttons from that swf dissappear.
    I can't understand why the swf reload ?
    Can any one help me !!

    Hi,
    Thanks Darr_darshan.
    I had embed the swf directly. And the swf is reloaded using
    backend coding, so i can't get the idea about that how the swf is
    reloaded ?

  • Cannot play Flash content in IE7

    When I navigate IE7 to any site (including adobe.com) that
    has Flash content, I get a message saying I need to enable
    javascript (it is) and/or upgrade my Flash player. I am running
    Vista, and this worked until sometime in the last week or so.
    Flash content does run on this machine inside Firefox 3.0.1,
    but IE7 appears to be dead.
    The error message I get is "Error in loading DLL". It appears
    to pop up when the javascript code is trying to load or access the
    flash content.
    I tried installing the Flash Player 9.0.124 using the web
    site - no luck.
    I tried uninstalling (clean), rebooting, then installing from
    the web site - no luck.
    I tried uninstalling (clean), rebooting, then used the manual
    installer (Install Flash Player 9 AX) - no luck.
    I tried uninstalling (clean), rebooting, then used the manual
    installer (FlashUtil9f) - no luck.
    I tried running reset_minimal.cmd (per instructions) - no
    luck.
    I tried disabling my AV (Kaspersky) while repeating all of
    the above - no luck.
    I tried running sfc /scannow but it reports no errors.
    I tried the Tools/Internet Options/Advanced/Reset to "reset"
    IE to its defaults - no luck.
    I am really, really stumped on this one. What should I do
    next?

    BWolfe, dougclutter, and others with Doug's problem:
    BWolfe, I'm truly amazed that dougclutter and others have had
    this very specific and real problem for so long, and Adobe hasn't
    lifted a finger to cure it. I'm stunned. I've been plagued with
    this thing for at least 3 months now, and have been all over the
    net looking for a remedy, after finding absolutely no help from
    Adobe.
    Here's what my symptoms are:
    IE with Flash works in all accounts but mine.
    Latest Adobe Flash player (10) is properly installed. Flash
    content will play on IE8 in anyone's User Account on this machine
    but mine. The only way flash content will play in my user account
    is if it is started as "Run As Administrator". Can actually run 2
    instances of IE side by side, one started normally, the other
    started as "Run as Administrator". Oprah, U Tube, etc., will run
    flash content in the latter window, but won't in the former. Flash
    errors (in IE7} are something to the effect, "Can't run DLL", with
    line number reference, etc. No help from Adobe, HP (my machine
    manufacturer) or Microsoft without paying them a bundle. Just
    updated IE7 to 8, problem unchanged.
    Elaboratiing:
    When right clicking on where Flash Player is supposed to be,
    then clicking the "about Adobe Flash... ", the browser is sent to:
    http://www.adobe.com/products/flash/about/
    When clicking on the error message at the bottom of the
    browser, the following error message is displayed. (This was
    copied, which Vista gives you the opportunity to do, then pasted
    here.)
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT
    6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0;
    InfoPath.1; .NET CLR 3.5.30729; OfficeLiveConnector.1.3;
    OfficeLivePatch.0.0; .NET CLR 3.0.30618)
    Timestamp: Fri, 20 Feb 2009 18:08:33 UTC
    Message: Error in loading DLL
    Line: 182
    Char: 4
    Code: 0
    URI:
    http://wwwimages.adobe.com/www.adobe.com/lib/com.adobe/swfobject.js
    Flash content DOES play with Adobe Flash 10 in my user
    account with Apple Safari browser when started normally, just not
    with IE8 browser. However, the IE8 browser does play Flash content
    in any and every other user account.
    BWolfe, instead of telling us about proper Adobe procedures
    for reporting and troubleshooting these things, how about you
    forward this to someone who can tell us how to fix this thing! I,
    like dougclutter and others, have been thru the entire Adobe Flash
    Player troubleshooting guide, carried out every suggestion there
    exactly, to no avail. I can show you at least 3 other instances of
    different folks with this same problem. And, as I think I've seen
    elsewhere in this thread, and tried myself, Adobe certainly doesn't
    make it easy to report non-paying customer problems, as with Flash
    Player.
    It's high time Adobe gets with at least one of us to help
    diagnose and cure this problem, and then adds the info to their
    troubleshooting guide, or else fix it in the application if
    possible. Whether the problem is in the app, or do to interaction
    with Vista and possibly XP, you guys need to look into this thing.
    I, for one, would be more than happy to help you 'shoot this thing,
    I am and engineer and have been computing since the DOS days.
    Bewildered,
    Dave

Maybe you are looking for

  • Getlist bapi for customer based on sales org, distbtn chnl

    Hi,     Is there any standard BAPI for customer Getlist , i want to filter based on distribution chanel and sales org and divison.         Now am using BAPI_CUSTOMER_GETLIST  its showing all customer list i want to filter this based on distribution c

  • Photoshop CS6 - Stackhash APPCRASH

    This error comes when ever I try to resize, move, use filters on Photoshop CS6. It was working fine before with the same pc performance of mine (I'm using onboard intel graphics) I've tried reinstalling, RAM diagnose and check for disk errors, full s

  • Design options for interfacing RFC as Receiver

    hello guys , Need some ideas in developing a scenario for interfacing RFC as receiver from a stored procedure call on DB side , what would be best and easy way to interface this RFC? Best regards Krishna

  • Dear I have mistakenly locked touchpad of my Elitebook 6930p. How can I reactivate it?

    Dear I have mistakenly locked touchpad of my Elitebook 6930p. How can I reactivate it? cursore is moving but i cannot click with touchpad .kindly help me out.thanx This question was solved. View Solution.

  • How to make a complete backup file for Itunes?

    Hi I have a set of "FILES" that make up an old phone back-up that isn't currently working as far as Itunes not recognizing it as a back up at all. What are my options as far as making them compatible?