HtmlLoader and swf alignment

Hello! I'm using adobe air 1.5, i created an htmlLoader that resizes with the stage as well, the problem is when the user visits websites with flash content like youtube, the swfs move to the origin of the htmlloader instead of its own place in the html site?! why does this happen?????
here is what i'm talking about, when i resize the movie, the youtube window for example, stays:
http://img441.imageshack.us/img441/958/airhtmlissue.jpg

The AIR runtime uses a sandbox based security model. This basically means that content loaded for example from the root of your AIR application can only load resources from the local sandbox while content loaded from a non-application sandbox (for example http://www.example.com) can load content only from that specific domain. More info on the AIR security model and how sandboxes work in AIR please read the following article - Introduction to the AIR security model.
The referral cannot be changed programatically in an AIR application but using a non-application sandbox that will load resources from the root of your application but which will behave as they were loaded from a custom domain (http://www.example.com) you could obtain the needed HTTP referral. More info on non-application sandboxes can be found at the following location - Cross-scripting content in different security sandboxes.
Let us know if this helped you,
--Catalin

Similar Messages

  • Is there a way of running cd's"windows" formatted with inf and swf files?

    Is there a way of opening and running CD's 'window' formatted with .inf and .swf files on a mac??

    In your operating system, move the photos to wherever you want them to be (keeping the folder tree structure the same), and then in Lightroom re-link via http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm

  • After Effects CC 2014 - removal of H.264, MPEG-2, WMV, FLV, F4V, and SWF exporters - WHY !?

    While reading the features of AfterEffects CC2014, I noticed the following:
    "removal of H.264, MPEG-2, WMV, FLV, F4V, and SWF exporters from After Effects"
    THAT IS IS REDICULOUS!!
    NO FLV !?!?
    WHAT DO YOU EXPECT USERS TO IMPORT INTO FLASH ??
    IF no FLV export is available under After Effects CC 2014, there is NO WAY to EMBED an flv into flash !! (Linking is NOT always what is wanted!!)
    NO H264 !?!?!
    HAVE YOU GONE CRAZY ?!!?!?
    YOU BREAK WORKFLOWS!!!!!!!!!!!!!!!!!
    THAT IS REDICULOUS!!!
    Any chance of restoring such features so that it makes updating to it worthwhile ?

    To date I've primarily been a Photoshop user and have dealt with years of mystifying UX and workflow changes, features that are useless to me added, and critical ones taken away (I'm looking at you Bridge, you worthless piece of garbage).  Then, to add insult to injury, Adobe forum mods telling me I'm doing it wrong and should be jumping through more hoops to achieve the same results. Now, with AE becoming a bigger part of my work, I am sad to find, that the same culture of disconnected arrogance and myopia prevails on the AE dev team.
    "Oh um user, you really want to be going through AME, because um technically speaking there have been many problems with the H.264 and MPEG-2 exporters in After Effects"
    Oh really? Tell me more about my job. Tell me about my experiences exporting these formats directly from AE. Tell me how my client views my content, is it on a Mac, or a PC? Maybe it's on his phone, or her iPad. What kind of phone is it though? Tell me at what point in my process it's ideal to render. Tell me about other tasks I'm performing. Tell me about the resolution and the bit-rate my files should play at. Tell me the final application I will be using the footage. Probably broadcast right? Or is it web? Or is it PowerPoint? Wait, what if there is no final output? What if it's just pre-vis for some other application?
    Tell me how to win over my clients; what's the correct method of presentation to engage them most impactfully? Tell me about how much time I have to render massive video files. Is it more time efficient due to the nature of my composite to render once because my file is super shallow and will render quickly or is it more efficient to render twice because my file is extremely complex with hundreds of layers?
    That the deprecated formats were hidden away in the preferences menu is dumb and annoying. That this same preference would then be removed is despicable and petty and is further confirmation that Adobe has contempt for me as a user.

  • Missing images in pdf and swf

    When I print to FlashPaper (2.01.2283) my pdf and swf result
    files don't contain the logo image in the word document. Is there a
    workaround for this. I was able to generate a correct pdf using
    pdf995.com's free converter. But I would like also to provide the
    site with Flashpaper, as I've been able to do this for all the text
    only documents.
    Thanks.

    I think I've narrowed this down to the AVG Linkscanner. Turned it off and all images are present and correct.

  • Need help with gallery showing .jpg AND .swf

    Hi all,
    I have an image gallery that loads images and swf-files from an XML-file. The .jpg's load and display just fine, but the .swf files won't show. The data is loaded though. Any help is greatly appreciated!
    Thanks so much in advance,
    Dirk
    My XML file looks like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <slideshow>
    <image src="photo1.jpg" time="1" title="test" desc="test" artist="sabre" link="" target="_self" />
    <image src="photo2.jpg" time="3" title="test2" desc="test2desc" artist="sabre" link="" target="_self" />
    <image src="flash1.swf" time="2" title="test3" desc="test3desc" artist="sabre" link="" target="_self" />
    </slideshow>
    And the AS3:
    // import tweener
    import caurina.transitions.Tweener;
    // delay between slides
    const TIMER_DELAY:int = 5000;
    // fade time between slides
    const FADE_TIME:Number = 1;
    // flag for knowing if slideshow is playing
    var bolPlaying:Boolean = true;
    // reference to the current slider container
    var currentContainer:Sprite;
    // index of the current slide
    var intCurrentSlide:int = -1;
    // total slides
    var intSlideCount:int;
    // timer for switching slides
    var slideTimer:Timer;
    // slides holder
    var sprContainer1:Sprite;
    var sprContainer2:Sprite;
    // slides loader
    var slideLoader:Loader;
    // current slide link
    var strLink:String = "";
    // current slide link target
    var strTarget:String = "";
    // url to slideshow xml
    var strXMLPath:String = "xml.xml";
    // slideshow xml loader
    var xmlLoader:URLLoader;
    // slideshow xml
    var xmlSlideshow:XML;
    function initSlideshow():void {
    // hide buttons, labels and link
    mcInfo.visible = false;
    btnLink.visible = false;
    var request:URLRequest = new URLRequest (strXMLPath);
    request.method = URLRequestMethod.POST;
    var variables:URLVariables = new URLVariables();
    variables.memberID = root.loaderInfo.parameters.memberID;
    request.data = variables;
    var loader:URLLoader = new URLLoader (request);
    loader.addEventListener(Event.COMPLETE, onXMLLoadComplete);
    loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    loader.load(request);
    // create new timer with delay from constant
    slideTimer = new Timer(TIMER_DELAY);
    // add event listener for timer event
    slideTimer.addEventListener(TimerEvent.TIMER, nextSlide);
    // create 2 container sprite which will hold the slides and
    // add them to the masked movieclip
    sprContainer1 = new Sprite();
    sprContainer2 = new Sprite();
    mcSlideHolder.addChild(sprContainer1);
    mcSlideHolder.addChild(sprContainer2);
    // keep a reference of the container which is currently
    // in the front
    currentContainer = sprContainer2;
    // add event listeners for buttons
    btnLink.addEventListener(MouseEvent.CLICK, goToWebsite);
    btnLink.addEventListener(MouseEvent.ROLL_OVER, showDescription);
    btnLink.addEventListener(MouseEvent.ROLL_OUT, hideDescription);
    mcInfo.btnPlay.addEventListener(MouseEvent.CLICK, togglePause);
    mcInfo.btnPause.addEventListener(MouseEvent.CLICK, togglePause);
    mcInfo.btnNext.addEventListener(MouseEvent.CLICK, nextSlide);
    mcInfo.btnPrevious.addEventListener(MouseEvent.CLICK, previousSlide);
    // hide play button
    mcInfo.btnPlay.visible = false;
    function onXMLLoadComplete(e:Event):void {
    // show buttons, labels and link
    mcInfo.visible = true;
    btnLink.visible = true;
    // create new xml with the received data
    xmlSlideshow = new XML(e.target.data);
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // get total slide count
    intSlideCount = unesc_xmlSlideshow..image.length();
    // switch the first slide without a delay
    switchSlide(0);
    function fadeSlideIn(e:Event):void {
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // add loaded slide from slide loader to the
    // current container
    addSlideContent();
    // clear preloader text
    mcInfo.lbl_loading.text = "";
    // check if the slideshow is currently playing
    // if so, show time to the next slide. If not, show
    // a status message
    if(bolPlaying) {
      mcInfo.lbl_loading.text = "Next slide in " + unesc_xmlSlideshow..image[intCurrentSlide].@time + " sec.";
    } else {
      mcInfo.lbl_loading.text = "Slideshow paused";
    // fade the current container in and start the slide timer
    // when the tween is finished
    Tweener.addTween(currentContainer, {alpha:1, time:FADE_TIME, onComplete:onSlideFadeIn});
    function onSlideFadeIn():void {
    // check, if the slideshow is currently playing
    // if so, start the timer again
    if(bolPlaying && !slideTimer.running)
      slideTimer.start();
    function togglePause(e:MouseEvent):void {
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // check if the slideshow is currently playing
    if(bolPlaying) {
      // show play button
      mcInfo.btnPlay.visible = true;
      mcInfo.btnPause.visible = false;
      // set playing flag to false
      bolPlaying = false;
      // set status message
      mcInfo.lbl_loading.text = "Slideshow paused";
      // stop the timer
      slideTimer.stop();
    } else {
      // show pause button
      mcInfo.btnPlay.visible = false;
      mcInfo.btnPause.visible = true;
      // set playing flag to true
      bolPlaying = true;
      // show time to next slide
      mcInfo.lbl_loading.text = "Next slide in " + unesc_xmlSlideshow..image[intCurrentSlide].@time + " sec.";
      // reset and start timer
      slideTimer.reset();
      slideTimer.start();
    function switchSlide(intSlide:int):void {
    // check if the last slide is still fading in
    if(!Tweener.isTweening(currentContainer)) {
      // check, if the timer is running (needed for the
      // very first switch of the slide)
      if(slideTimer.running)
       slideTimer.stop();
      // change slide index
      intCurrentSlide = intSlide;
      // check which container is currently in the front and
      // assign currentContainer to the one that's in the back with
      // the old slide
      if(currentContainer == sprContainer2)
       currentContainer = sprContainer1;
      else
       currentContainer = sprContainer2;
      // hide the old slide
      currentContainer.alpha = 0;
      // bring the old slide to the front
      mcSlideHolder.swapChildren(sprContainer2, sprContainer1);
      // delete loaded content
      clearLoader();
      // create a new loader for the slide
      slideLoader = new Loader();
      // add event listener when slide is loaded
      slideLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, fadeSlideIn);
      // add event listener for the progress
      slideLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, showProgress);
      var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
      // load the next slide, seems to f*ck up here...
      slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
      // show description of the next slide
      mcInfo.lbl_description.text = unesc_xmlSlideshow..image[intCurrentSlide].@title;
      // show artist's name of the next slide
      mcInfo.lbl_artist.text = unesc_xmlSlideshow..image[intCurrentSlide].@artist;
      // set link and link target variable of the slide
      strLink           = unesc_xmlSlideshow..image[intCurrentSlide].@link;
      strTarget          = unesc_xmlSlideshow..image[intCurrentSlide].@target;
      mcInfo.mcDescription.lbl_description.htmlText = unesc_xmlSlideshow..image[intCurrentSlide].@desc;
      // show current slide and total slides
      //mcInfo.lbl_count.text = (intCurrentSlide + 1) + " / " + intSlideCount + " Slides";
      mcInfo.lbl_count.text = " Slide " + (intCurrentSlide + 1) + " / " + intSlideCount;
    function showProgress(e:ProgressEvent):void {
    // show percentage of the bytes loaded from the current slide
    mcInfo.lbl_loading.text = "Loading..." + Math.ceil(e.bytesLoaded * 100 / e.bytesTotal) + "%";
    function goToWebsite(e:MouseEvent):void {
    // check if the strLink is not empty and open the link in the
    // defined target window
    if(strLink != "" && strLink != null) {
      navigateToURL(new URLRequest(strLink), strTarget);
    function nextSlide(e:Event = null):void {
    // check, if there are any slides left, if so, increment slide
    // index
    if(intCurrentSlide + 1 < intSlideCount)
      switchSlide(intCurrentSlide + 1);
    // if not, start slideshow from beginning
    else
      switchSlide(0);
    function previousSlide(e:Event = null):void {
    // check, if there are any slides left, if so, decrement slide
    // index
    if(intCurrentSlide - 1 >= 0)
      switchSlide(intCurrentSlide - 1);
    // if not, start slideshow from the last slide
    else
      switchSlide(intSlideCount - 1);
    function showDescription(e:MouseEvent):void {
    // remove tweens
    Tweener.removeTweens(mcInfo.mcDescription);
    // fade in the description
    Tweener.addTween(mcInfo.mcDescription, {alpha:1, time:0.5, y: -1});
    function hideDescription(e:MouseEvent):void {
    // remove tweens
    Tweener.removeTweens(mcInfo.mcDescription);
    // fade out the description
    Tweener.addTween(mcInfo.mcDescription, {alpha:0, alpha:1, time:0.5, y: 30});
    function clearLoader():void {
    try {
      // get loader info object
      var li:LoaderInfo = slideLoader.contentLoaderInfo;
      // check if content is bitmap and delete it
      if(li.childAllowsParent && li.content is Bitmap){
       (li.content as Bitmap).bitmapData.dispose();
    } catch(e:*) {}
    function addSlideContent():void {
    // empty current slide and delete previous bitmap
    while(currentContainer.numChildren){Bitmap(currentContainer.getChildAt(0)).bitmapData.disp ose(); currentContainer.removeChildAt(0);}
    // create a new bitmap with the slider content, clone it and add it to the slider container
    var bitMp:Bitmap =  new Bitmap(Bitmap(slideLoader.contentLoaderInfo.content).bitmapData.clone());
    currentContainer.addChild(bitMp);
    // init slideshow
    initSlideshow();

    I'm sorry, you're right! Didn't intend to be lazy...
    This line loads the image in the loader 'slideLoader'. This seems to work fine with image files (.jpg), but .swf files are ignored. Is it possible to load both .jpg AND .swf files in a loader, or do I have to use some other method for this?
    slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
    Thanks again,
    Dirk

  • Protecting EXE, PDF and SWF files from piracy

    I am hoping others in the community have some experience with protecting their Captivate output (EXE and SWF files) from piracy.  We will be selling our eLearning products developed with Captivate through our online store and want to protect them against file sharing and other forms of piracy.  I have found several companies online offering DRM (digital rights management) and SAS (software activation services) that require users to enter a license key to use the products.  I am looking for any recommendations from users who have implemented these types of services.  What provider did you use and what issues did you encounter.  Any insights would be greatly appreciated!
    Thanks,
    Jason

    Most of the tools I have seen are geared towards extracting
    resources from swf's. I use one myself (eltima.com) for
    "harvesting" manufacturers content for my motorcycle dealers. They
    are authorized to use this content, but finding someone at Yamaha
    of Kawasaki or any of the majors who even knows where to find these
    resources is next to impossible. I have also used it to learn from
    by viewing scripts, but as you say, at the end of the day, I think
    the concepts and best practices are about the only thing worth
    taking away from others efforts, not the code.
    Unlocking a protected file can be done as well and I remember
    using a product over a year ago to get at the scripts within an swf
    (I wanted the URL's that pointed to media - it was legal for me to
    do this). It ran from the command line and output the scripts.
    There aren't too many of these types of programs to be found, but
    they exist.
    My personal opinion is that it's not worth the effort. My
    java classes can be decompiled and if someone wants to go to that
    trouble, more power to them. To my knowledge, there isn't anything
    out there yet that is perfect for backwards engineering an swf into
    an MXML file, but a competitor of FLASH Decompiler says that they
    can decompile Adobe 9 PLAYER swf's. For what it's worth, I plan on
    posting the majority of my code on my flexdev.org site once I get
    it established.
    For people who make components for sale, this could be an
    issue of stolen revenue if the decompilers get sophisticated enough
    to reverse engineer the swc into a usable MXML file. I would be
    against anyone who stole code for this purpose, for sure.

  • Exit button not working Captivate 7 output to HTML5 and SWF

    I have several courses developed in Cp 6.5 that do not have this issue and are currently running on Taleo LMS.
    I've built a test course with 6 (mostly blank) slides, including two quiz questions. On the final slide I have placed a Finish Course button with On Success: Exit action. The project end options are set to close project and I've included an On Exit: Exit action on the final slide. The Finish Course button successfully closes the browser window in Preview in Browser (IE9) and Preview HTML5 output modes.
    I then published the course to both HTML5 and SWF output formats with scalable HTML selected. Once I uploaded the course to the LMS and tested it, the Finish Course button does not close the browser window. I've tested in IE9, Firefox, and iPad, and it doesn't work on any of these. I've also tried including the built in exit button on the playbar, and it doesn't close the window either. At the final slide, after clicking the Finish Course button, the slide fades to white and then stops.
    The LMS reports that the course is complete; I thought maybe it was an issue with the settings in the LMS course, however I have several other courses that were developed in Cp 6.5, published to the same LMS with the same "Exit" button on the final slide, and I have mirrored every course setting that has worked in the past.
    Any suggestions as to what could be keeping the window from closing?
    Thanks,
    PV

    Why does there need to be a button used now when in CP 6 and 6.5 it worked seamlessly? Will this be fixed by Adobe and when?
    Adam Lynch
    Senior Media Specialist
    Project Lead The Way, Inc.
    3939 Priority Way South Drive, Suite 200
    Indianapolis, IN 46240
    phone: 317.669.0845  | mobile: 518.469.7617
    fax: 317.663.8296
    www.pltw.org<http://www.pltw.org/>
    Preparing students for the global economy. Now even earlier.
    PLTW Elementary coming fall 2014. Click here to view the trailer<http://www.youtube.com/watch?v=rikLnSAoTpQ>.
    Confidentiality Notice: The information transmitted is the property of the sender and is intended only for the person or entity to which it is addressed and may contain confidential and or privileged material.  Statements and opinions expressed in this e-mail may not represent those of Project Lead The Way, Inc.  Any unauthorized review, retransmission, dissemination and other use of, or taking of any action in reliance upon, this information is prohibited.  If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message and delete the material from any computer.  If you are the intended recipient but do not wish to receive communications through this medium, please so advise the sender immediately.

  • My subs look good in dvdsp but when I burn an example the subs are too high in the frame.All my offsets are 0 and the alignment button is bottom.

    My subs look good in dvdsp but when I burn an example the subs are too high in the frame.All my offsets are 0 and the alignment button is bottom.
    Any thoughts

    Try creating a new project, and bring in a short clip and one or 2 subtitles and see if you see the same behavior.  If you don't,  something's probably wonky in the project.  If the sample behavior has the same problem, if you want to send it to me with the associated media, I'll take a quick look.
    My email is [email protected]

  • Page height bounces and miss aligns

    Can anyone steer me in the right direction on this issue.
    I have a wc3 validated page that when I drop coding for 3rd party a widget, the designated
    the page height bounces and miss aligns with the other pages on the navigation.
    http://santabarbararealestatepro.com/listings.php
    Thank you in advance for you help! Crissymarie

    On the page that is "bouncing" you have this -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!--START HEADER-->
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    On the page that doesn't, you have this -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    Make you think?

  • Versioning of fla and swf files

    Hi there,
    I am working on a small flash project with one other
    developer and we email fla and swf files back and forth. So far
    date/time stamps and file sizes have been good enough for "version
    control".
    I am familiar with versioning systems for development but
    what about after a release? How can I determine a released swf
    file's build version? Date/time stamps can change with copying and
    development could have already progressed and multiple version of
    the same swf file are out there...
    I am surprised that there isn't a built in mechanism to
    assign a version number to a fla/swf file (e.g. as part of the
    publish profile) that one can then view via the files properties
    dialog... or perhaps somebody has to show me the light... :)
    Does anybody have a recommendation on how to give a fla/swf
    file a version number that can be checked once the file has been
    released?
    Thanks,
    Dan

    .. or, Plan B), use QuicktimeX' ability of Screen-Recordings to record while you playback those files in their app.
    The resulting mov can be treated as any other movie in iMovie.
    Vector-graphics, interactive formats, etc are of no use in an video-editor ...

  • Issue with publish settings: html and swf files

    In Flash CS5.5 when selecting, Publish Settings: html and swf, the html file does not display the swf from the URL after ftp. The swf file, however, does display from the URL without the html file. My work around has been to hand code the html. Is this a known issue or is there something else that might be causing this to occur?

    Here are two examples created by two different students in the same lab using the same software configurations:
    http://www.miszxbrii.byethost13.com/howellanimatic.html
    The first frame of this one displays only.
    http://vaivadesigns.byethost3.com/YoungMidterm/YoungMidterm.html
    Here it is again with a new html page:
    http://vaivadesigns.byethost3.com/YoungMidterm/midterm.html
    The swf path was the documents folder and another folder on the HD.

  • Do flv and swf have pixel sizes?

    I am putting some video at a website. The video is in FLV format. How do I know what size the pixels would be?
    Do flv and swf files have actual pixel sizes? Thank you!

    Stop please
    Enviado desde mi iPhone
    El ene 16, 2013, a las 5:09 p.m., "roymeo_" <[email protected]> escribió:
    Re: Do flv and swf have pixel sizes?
    created by roymeo_ in Using Flash Player - View the full discussion
    The video would have whatever size it is encoded as, and then the player could display that at whatever size it desired.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4999752#4999752
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4999752#4999752
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4999752#4999752. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Using Flash Player by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Firefox will not show links to flv files. I get the error message for each flv file: "File not found. Firefox can't find the file at (path) .flv." Any mov and swf files in this same path will show. I can see the videos in Safari so the paths are correct.

    Firefox will not show links to flv files. I get the error message for each flv file: "File not found. Firefox can't find the file at http:// (path) .flv." Any mov and swf files in this same path will show. I can see the videos in Safari so the paths are correct.

    Is this a webpage that contains a link to a flv file? Please post a link to the page and tell us which link(s) are the problem flv files or else post a link to the .flv file itself.
    Alternately, click on one of the sample FLV File links on this page and tell us exactly what happens:
    http://www.mediacollege.com/adobe/flash/video/tutorial/example-flv.html
    It might also help if you post the exact error message, including the path to the flv file.
    '''Note:'''
    Depending on how you have Firefox set up, clicking on a FLV File link will either save the FLV file to your computer or Firefox may open it automatically in an external application right after downloading (Firefox may ask you first). Firefox itself can't play FLV files so you need a "helper" application (or a plugin for flv files, if ther is one. You can see if Firefox is already set up to download or open FLV files by going to Firefox Preferences and looking in the Applications list. Find the FLV file type in the list and, if the action is "Open with", it should show the application that can play FLV files (e.g., VLC Media Player or Perian). See [[Managing filetypes]] for more information.

  • DVD and SWF playback

    My client wants to play DVD and swf animations
    simultaneously.
    Has anyone done this and if so, what performance issues can I
    expect ????
    Minimum spec, anything would be good.
    Would be nice just to tell him NO !

    At least, the minimum system requirement will have to be
    raised to
    accomodate simultanious playback, setting a short test demo
    might be the
    most definitive way to prove unfeasability.

  • Web site broken up and not aligning

    I've messed something up and can't figure it out? My level of website building can't fix this problem. I would like to know what is going on and how to fix it? It has spaces and the alignment it off, like something is flowing over and breaking it up.
    Look at http://www.eastportonpickwick.com/
    Please advise!
    Thanks, Wallace

    Ken Pickwick is in Mississippi. I figured it needed to be re-worked. I inherited the site and have managed it with Dreamweaver. Yes the page was built in Fireworks and sliced, but the site is very unique.
    Although I must say, as bad as it is, it has done its job and ranks #1 on Google and Bing in most Pickwick Lake searches. I've never had a problem until now with it breaking up and thought I could get some immediate help/direction from this community.
    I knew it had errors, but these sophisticated search engines still interpreted the site.
    Thanks
    Wallace

Maybe you are looking for