DW cs6 flash swf nobroder embed cropping

I have a bottom cropping issue with a swf embed "noborder" which from what I understand according the specs is an issue when using noborder. I'm wondering if anyone knows of a work around or perhaps the problem is between the keyboard and chair. I've tried playng with some CSS and HTML coding with no luck.

I still don't understand why it cropped like that though
noborder is designed to crop the content:
http://helpx.adobe.com/flash/kb/flash-object-embed-tag-attributes.html
Kenneth Kawamoto
http://www.materiaprima.co.uk/

Similar Messages

  • How to set up one-button embed-hotlinking for Flash SWF?

    Hello,
    I'm publishing a webcomic in Flash.swf format and I'd like to make it as easy as possible for people to grab my comic and put it on their website. How can I set up one-button hot-linking that will automagically provide the code so that they can easily drop it into their website, similar to the way YouTube does with video?
    Thanks,
    Tom

    you can use the following.  the bolded lines require you to use appropriate values:
        <div id="flashContent">
                <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="yourswfwidth" height="yourswfheight" id="swfname" align="middle">
                    <param name="movie" value="http://www.yourdomain.com/path/swfname.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#ffffff" />
                    <param name="play" value="true" />
                    <param name="loop" value="true" />
                    <param name="wmode" value="window" />
                    <param name="scale" value="showall" />
                    <param name="menu" value="true" />
                    <param name="devicefont" value="false" />
                    <param name="salign" value="" />
                    <param name="allowScriptAccess" value="sameDomain" />
                    <!--[if !IE]>-->
                   <object type="application/x-shockwave-flash" data="http://www.yourdomain.com/path/swfname.swf" width="yourswfwidth" height="yourswfheight">
                        <param name="movie" value="http://www.yourdomain.com/path/swfname.swf" />
                        <param name="quality" value="high" />
                        <param name="bgcolor" value="#ffffff" />
                        <param name="play" value="true" />
                        <param name="loop" value="true" />
                        <param name="wmode" value="window" />
                        <param name="scale" value="showall" />
                        <param name="menu" value="true" />
                        <param name="devicefont" value="false" />
                        <param name="salign" value="" />
                        <param name="allowScriptAccess" value="sameDomain" />
                    <!--<![endif]-->
                        <a href="http://www.adobe.com/go/getflash">
                            <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                        </a>
                    <!--[if !IE]>-->
                    </object>
                    <!--<![endif]-->
                </object>
            </div>

  • Firefox Embedded Flash swf not shown in asynchronous desktop

    Hi all,
    in a jsp I embed a binary property of a content node that includes a flash .swf file. All that in an asynchronous desktop, using Firefox.
    I use the follwing code:
    "<embed scale="exactfit" quality="high" menu="false" width="600" height="400" hswLiveConnect="false" src="<%=myPropertyUrl%>">
    When the page is loaded by "normal" browser request, the flash animation inside the jsp renders as expected. After click on an url (<a> ....</a>) inside the same JSP the portlet content refreshes (via Ajax request), only the flash disappears. After F5 it's back agian.
    The problem does not exist with IE!
    How do i need to handle this for Firefox?
    Thanks for help.

    Firefox uses the object if there isn't a classid to specify an ActiveX control for IE.<br />
    You didn't specify such a classid (classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"), so there is actually no need for the embed in this case.<br />
    As jscher2000 posted above, an object tag only works in Firefox if there is a data attribute present (copy of the movie param) to specify the Flash file and a possible MIME type.
    <pre><nowiki><object style="width:420px;height:272px" data="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf" type="application/x-shockwave-flash" >
    <param name="movie" value="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf" />
    <param name="flashvars" value="mode=mini&amp;backgroundColor=%23222222&amp;documentId=121102153057-a8027186d32d406698ae9cd6ce0305ed" />
    <param name="allowfullscreen" value="true"/>
    <param name="menu" value="false"/>
    <param name="wmode" value="transparent"/>
    </object></nowiki></pre>

  • New to flash, swf loaded while changing size

    i'm trying to create a button that will replace the current
    swf with another and i want the size to change between the various
    sizes of each page. i'm currently using the following code in the
    action inspector:
    on(release){loadMovieNum("myfilename.swf",0);
    i know there has to be a simple way to do this! a very
    grateful thanks to anyone who tries to help!

A: new to flash, swf loaded while changing size

b3autiful_dizaster wrote:
> i'm trying to create a button that will replace the
current swf with another
> and i want the size to change between the various sizes
of each page. i'm
> currently using the following code in the action
inspector:
>
> on(release){loadMovieNum("myfilename.swf",0);
> }
>
> i know there has to be a simple way to do this! a very
grateful thanks to
> anyone who tries to help!
You can't change size dynamically as it is defined by the
object embed tags.
You could use WMODE transparency which could help you fake it
tho not always best
solution to go with WMODE. It's a very buggy parameter.
WMODE will remove the background color so the flash movie
appear over the html and you
can see the HTML content trough the movie.
You could define some solid shape for the background on
bottom layer to make it look
like SWF background, than change it with the other loaded
movie making it appear as it
changed size while the over all flash size stats the same. As
said above - faking it.
Best Regards
Urami
!!!!!!! Merry Christmas !!!!!!!
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

b3autiful_dizaster wrote:
> i'm trying to create a button that will replace the
current swf with another
> and i want the size to change between the various sizes
of each page. i'm
> currently using the following code in the action
inspector:
>
> on(release){loadMovieNum("myfilename.swf",0);
> }
>
> i know there has to be a simple way to do this! a very
grateful thanks to
> anyone who tries to help!
You can't change size dynamically as it is defined by the
object embed tags.
You could use WMODE transparency which could help you fake it
tho not always best
solution to go with WMODE. It's a very buggy parameter.
WMODE will remove the background color so the flash movie
appear over the html and you
can see the HTML content trough the movie.
You could define some solid shape for the background on
bottom layer to make it look
like SWF background, than change it with the other loaded
movie making it appear as it
changed size while the over all flash size stats the same. As
said above - faking it.
Best Regards
Urami
!!!!!!! Merry Christmas !!!!!!!
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

  • Horizontally centering flash .swf" and disallowing horizontal scroll??

    Is it possible to center a flash .swf file on a website, and then disable horizontal scrolling?
    I made my website in Flash Catalyst, and I made the width 1700px and the height 1200px. I made the width large because I wanted it to look good in the largest screen resolutions, but my biggest problem now that I've finished making the website is putting it up. Simply embedding it makes it scroll horizontally all the way to 1700px, which isn't good for those with small browsers.
    Originally, I was planning on making the flash file the background in CSS (using body {background: url(FILE.swf) no-repeat #000 top center}) but then I found out you can't put .swf's as backgrounds.
    Basically, I want to know if it's possible to center the .swf horizontally, and then disallow horizontal scrolling. I want to keep vertical scrolling,
    Any help appreciated!

    Is it possible to center a flash .swf file on a website, and then disable horizontal scrolling?
    Yes, but it introduces other problems. With scrolling disabled, you might not be able to see all the page. I DO NOT recommend what you are trying to do. Flash scaling would most likely give you better results.
    Background images if intended to cover a large area are typically very small images which are repeated to create a pattern. Using one large image will still never cover all the possible screen resolutions or page sizes... for example larger than 1700 or taller than 1200 pixels.
    Centering requires a set dimension, like 1700 so auto set margins would center it, but it still may not cover 100% as using a width of 100% would.
    That being said, turn off horizontal scroll and leave vert on with:
    overflow-y: auto !important;
    overflow-x: hidden !important
    then you'll need to use z-indexing to lay anything else over the top of you background .swf
    Here a sample page that should get you going... dimensions are smaller so you can see how it works... the principle is the same.
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>No Scroll</title>
    <style type="text/css">
    <!--
    body, html {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    overflow-y: auto !important;
    overflow-x: hidden !important
    #main_container {
    position: relative;
    width: 800px;
    height:800px;
    background-color:#ff0000;
    border:none;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    #flash {
    position: relative;
    width: 800px;
    height:600px;
    background-color:#cccccc;
    border:none;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    #content {
    position: relative;
    top:-600px;
    width: 400px;
    height:300px;
    background-color:#00ff00;
    border:none;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
    z-index: 5;
    -->
    </style>
    </head>
    <body>
    <div id="main_container">
    <div id="flash">
      <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="800" height="600" id="overflow" align="middle">
      <param name="allowScriptAccess" value="sameDomain" />
      <param name="movie" value="overflow.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffff00" /><embed src="overflow.swf" quality="high" bgcolor="#ffff00" width="800" height="600" name="overflow" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
      </object>
    </div>
    <div id="content">
    <p align="center">This is the center</p>
    </div>
    </div>
    </body>
    </html>
    Best of luck!
    Adninjastrator

  • Flash SWF file within Swing JFrame

    I was wondering whether its possible to open a Flash swf file within a JFrame
    I am looking for a solution similar to the usage of Flash Activex control in .NET
    thanks in advance
    Vikas

    I have read the forum link and other such entries in this forum. I have found the following:
    1.) JFlash - a java based flash player. https://jflash.dev.java.net/
    Could'nt find the app or the official site
    2.) a few projects on sourceforge.org :
    java flash bridge where you embed the flash inside an Integrated Browser Component
    3.) SWT Flash integration.
    I do not find any of these solutions satisfactory.except the SWT/Flash integration which I havent tried.
    My question is that isnt there an easier and simpler way to :
    Embed Flash into Swing app where actionscript and java can communicate.
    I am aware of Remoting and web services. But It is a desktop app I am talking about.
    Can anyone suggest anything?
    thanks in advance..
    from a very frustrated programmer....

  • Swing and Flash SWF objects

    Is there a way to embed Flash files on a Swing application?
    What I want to do is grab locations of images through the java application and pass it to an SWF file to display an animation.
    If embedding flash in Swing isn't possible, what other options are there in Swing for animation?
    Thanks

    there is one more way to embed flash swf file in swings . ie thru JDIC .
    java desktop integration compnentsMy current favourite way is thru the DJNativeSwing project. I realised it provides a slightly better renderering of components than JDIC, especially for the embedded IExplorer on Windows platforms, and it also has some extra cool features that one can use out of the box, like mixing heavyweight and lightweight containers. And Swing borders even work great.
    ICE

  • Resizing output when exporting to Flash/SWF

    Does anyone know if there is a way to resize the output when exporting a Keynote presentation to Flash/SWF? When you export to QuickTime, you can adjust the output size. I can't find a way to do that when exporting to Flash.

    I think that's because the Flash output displays at whatever size you want when you embed it into a website. For example, you can't create a Keynote presentation smaller than 200x200. BUT, if you create at 200x200 and then, in your embed statement, change it to 100x100, then that's how it will display on your web page.

  • Importing Flash swf

    Hello,
    I'm as new as it comes to Captivate. From what I've researched and seen, Captivate looks like an interactive Powerpoint that captures scores, answers, and responses,etc.
    Right now, I'm looking for an authoring program to help me use some of those abilities -- but also host the main interactivity that I've built into a flash swf.
    Before I go off and start programming, is it possible to embed a fully interactive .swf into Captivate -- or is this the wrong use and I should be attempting to rebuild that in Captivate? The program I'm going to build in Flash includes a time slider with simultaneous videos and animation.
    Are time sliders possible in Captivate? (A scrubbing bar back and forth)
    Thanks for your time.
    Kristin

    Everything you speak of is possible in Captivate, and it certainly does allow you to import SWFs created in AS3.
    Whether or not your program will work well with Captivate depends a lot on your programming abilities and how well you understand the Captivate architecture so that your app integrates well with it.
    It might be wise to consider building your app as a Captivate widget.
    Go here for good information about widget coding: http://www.infosemantics.com.au/widgetking/

  • Flash Pro CCでembedメタデータで埋め込むとコンパイルエラー:1120になる

    Flash Pro CCでembedメタデータタグをつかって画像を埋め込んだ場合に
    1120: 未定義のプロパティ ×××_embeddedClass へのアクセスです。」
    となって、コンパイルエラーになります。
    ASでは
    [Embed(source="/images/embedImage.jpg")]
    var embeddedClass : Class;
    とembedメタデータタグを使って埋め込んでいますが、いっこうにコンパイルをとおりません。
    ちなみに、同じflaファイルをFlash CS6でコンパイルすると問題なくコンパイルされます。
    これは、Flash Pro CCのコンパイラにバグがあるということでしょうか?
    解決方法をご存知でしたら、教えていただけますでしょうか。

    http://livedocs.adobe.com/flash/9.0_jp//ActionScriptLangRefV3/compilerErrors.html
    未定義のプロパティ _ へのアクセスです。
    未定義の変数にアクセスしようとしています。たとえば、変数 huh が定義されていない場合、この変数を呼び出すとこのエラーが発生します。huh = 55;このエラーは、コンパイラが strict モードで実行されている場合にのみ表示されます。
    1120未定義のプロパティで調べるとこのようなものが出てきますね。
    私も気になるのでもうちょっと調べてみますね!

  • Encore CS6 Flash Export problem, Grey screens

    Hi everyone,
    I am having a problem with my encore CS6 flash exports, they are not behaving as expected online (seems to be like a loading issue).
    I've tried exporting FLV and F4V and the problem is the same. The same project exported from CS5.5 does not produce this undesirable
    problem. It may be important to say that the project was started in CS5.5.
    I have a button that links to another menu, and I am using videos as 'transitions'. The videos are dynamic after effects compositions.
    When it's online, and you press the button it fills the canvas with a  'grey screen' before starting the video transition. This totally breaks
    the experience and feels like an authoring error. It would be important to note, that this screens only appear the first time you see the flash.
    Somehow the next time you press it doesnt show it.
    I would happily go back to CS5.5 but I started using auto-activate buttons that are only available on CS6 flash exports.
    Any ideas what has changed between this versions flash exports?
    Any help would be appreciated..
    Thanks in advance,
    Cris

    Encore CS6 6.0.2.004, IE9, Win7
    Simple project, DVD NTSC, One menu with one button. One timeline. Menu first play, button linked to timeline.
    Output flash with flv (and again with f4v - same results), No template, keep with flash swf rather than streaming.
    Open index.html locally, must manually enable active content. Menu opens, movie plays. No grey screen.
    Copy entire folder to USB, same result; USB plays on a different PC also.
    Upload to web site; same result.
    Am I doing soething differently from either of you? Are you using templates?
    Factors related to flash security (for local and probably USB playback) can be problems. Various server settings can be problems for on line.

  • Embedding Flash SWF Skin in External Site

    I posted this under the Flash forum as well. My Flash video
    displays correctly on my server, however, if I try embedding my
    Flash SWF file on an external site – just as you would with
    YouTube – the skin does not transfer. The video is the only
    thing that displays.
    I understand when using components that 2 SWF files are
    created when published – SO with that said, is there an HTML
    embedding technique to display both the video w/ the skin? If not,
    is this something that needs to be corrected within the Flash file.
    Any thoughts?

    I have this in front of the trace:
    myvars.onLoad = function(success){
    When I put in the full URL to the attachment on the Google page (i.e., something similar to "myvars.load("https://sites.google.com/a/..../home/department-sites/sales/variables.txt,");" - instead of just "myvars.load("variables.txt");", it doesn't work. So right now its set to just "variables.txt" and the swf file is in the same root location as the variables.txt file on the Google page. I also have a copy of the variables.txt file in the same local directly in which I am running the flash file for testing. So I think when I run it in debug mode, its referencing the variables.txt file in the local directory, rather than the one stored as an attachment on the Google page.
    That's what seems so weird...it runs locally in debug mode...but not when I embed it on the Google page. I can also get it to work if I explicity define the variables in the flash file, rather than rely on the external text file. That's the only time I can get it to work on the Google page.
    Thank you for your help!

  • Flash swf button doesn't work in DW

    This must be simple but I'm a newbie bonehead. I made a movie
    clip button in Flash and it tests fine. In DW, the rollover, link,
    none of it works. I've changed the settings to allow the url and
    the code looks OK. I'm using layers to build the site which I know
    is kid stuff. Thanks for any help. Otherwise, love DW!

    Sorry, left a few things out the first time. Here's a more
    useful look. Thanks:
    </object>
    </noscript></div>
    <div id="Layer19">
    <a href="
    http://video.google.com/videoplay?docid=7785260041098879488&hl=en"
    target="_blank">
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','110','height','110','src','/Halfpipe
    Button_Halfpipe1','loop','false','quality','high','pluginspage','
    http://www.macromedia.com/go/getflashplayer','play','false','movie','/Halfpipe
    Button_Halfpipe1' ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="110" height="110">
    <param name="movie" value="/Halfpipe
    Button_Halfpipe1.swf">
    <param name="quality" value="high">
    <param name="LOOP" value="false">
    <param name="PLAY" value="false">
    <embed src="/Halfpipe Button_Halfpipe1.swf" width="110"
    height="110" loop="false" quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"
    play="false"></embed>

  • Accessing movie clip from flash swf file

    I have the situation where in flash i created a simple
    animated movie clip with few stop() commands on timeline. Movie
    clip consists of simple animatio played on roll over and on roll
    out which is controlled using actionscript. I loaded movie clip
    into flash using [embed] tag but actionscript code is stripped,
    there is no stop() action so movie clip loops continously. I guess
    that's normal behaviour for embedded flash swf files but i would
    like to know is there a way to still achieve that? Can i load swf
    some other way with its actionscript and then control movie clip
    from flex?

    You need the FLA's to open in Flash.
    You could download the free trial of a flash decompiler
    (www.sothink.com). The free trial won't give you actionscript, but
    it will give you all of the art in the swf.

  • Converting Flash/SWF to HTML5

    I.
    Following Ned's advice I'm posting this message on Dreamweaver's forum (after posting it in the Flash/Actionscript 3 forum).
    I'm not a programmer, so this question might sound a bit noobish.
    I have this flash project with an advanced button - here's the code:
    portfolio.addEventListener(MouseEvent.ROLL_OVER,btnOver);
    portfolio.addEventListener(MouseEvent.ROLL_OUT,btnOut);
    portfolio.addEventListener(MouseEvent.CLICK,clickPortfolioToGoToWebPage);
    function btnOver(event:MouseEvent)
        event.currentTarget.gotoAndPlay("Rollover");
    function btnOut(event:MouseEvent)
        event.currentTarget.gotoAndPlay("Rollout");
    function clickPortfolioToGoToWebPage(event:MouseEvent):void
        event.currentTarget.gotoAndPlay("ClickPortfolio");
        navigateToURL(new URLRequest("http://www.fudzilla.com/"), "_blank");
    In order to comply with the HTML5/CSS3 "new standards", I converted the swf file to HTML5 with Google Swiffy. The problem was that it doesn't support Actionscript 3, so it was converted as a looping movie. Question: Is it even possible to retain the Mouse events? Or do I have to make a HTML5 for the Rollover, another one for the Rollout and one for the Click? Again, I'm not a programmer.
    Forgive my noobish remarks...
    ***** UPDATE: I got the code and downgraded to Actionscript 2.0 and it worked. *****
    One question though: is this good practice? Creating my animations in Flash AS2 and then converting the SWF file to HTML5 using a SWF/HTML5 converter? Will I have any problems? I suppose it's not an elegant way of doing it...

    Hi
    If you want your animations to work on HTML5 devices including mobile devices, one solution is to convert the flash content to video and use the HTML5 <video> tag to embed the video on a webpage.
    Of course this works only if your content is non-interactive.
    FLABACO (www.Flash-Banner-Converter.com) is a Free, online tool which converts Flash (SWF) to video.  It generates excellent quality video which can be used with HTML5 to work on all HTML5 devices / mobile devices.
    Kayo
    Flabaco

  • Maybe you are looking for

    • Cost Center and G/L account search help not working

      Hi Gurus, I am facing a problem with the search help button for cost assignment in Shop screen. When I press the search button for cost center, there is no new screen coming up asking me the search criteria to be given as input. Same is the problem w

    • Target Host error

      When I open Host home page I get error message: ===================================== oracle.jbo.TooManyObjectsExeption: JBO-25013: Too many objects match the primary key oracle.jbo.Kye[798 0 UNKNOWN 537003012 UNKNOWN DA018E44DD2B08EEE044005056B03247

    • Cannot subscribe to podcasts; no podcast icon under source list

      Hi, all. I scanned the first couple of pages of threads under this forum and didn't read any threads that helped me. I downloaded my first couple of podcasts ever last week, going directly through npr.org. I wanted to try subscribing through the itun

    • Lightroom 5.5 will not open

      It was downloaded from creative cloud and is showing as up to date. I am using it on a Mac. On clicking the doc icon (or directly via Finder) it briefly displays the splash screen then nothing. It was working previously. Os X 10.9.4 update installed

    • Anyone having this problem when using iPhoto and iMovie?

      I've posted this question in the iMovie forum without much luck. I hope someone here may have some ideas. I make iMovies that are largely composed of still photos. Recently I'm having trouble with the preview screen in iMovie. When I click on a photo