Resizing swf in Panini

Hi all,
I'm doing a project with Panini and I'm stuck with a problem.
I added a swf slideshow in one state and I want it to resize and always keep its center in the artboard. However, when I check the resize buttons, and I am checking all of the four buttons, horizontal with "center" and vertical "fixed", the swf gets to the left when I resize it, and does not center. Is it possible to make this always centered, at any window size?
What I am trying to achieve is something like this: http://www.duribeiro.com.br/
But all I am getting is this:
What am I doing wrong? Please help! I've tried all kinds of combinations with this buttons - center, fixed, only vertical, only horizontal etc.
My artboard is 1024/768px, the swf slideshow is 902/600px
THANKS!

Hi,
It is a slideshow pro file I created. Unfortunately, I don't think that is the source of the issue, as the same seems to happen if I drag a flash component to the artboard:
It's very annoying because it seems to be the most obvious and easy thing to do....
Thanks.

Similar Messages

  • Help resize  SWF in vertical direction

    I have more reach application, in simplify my problem looks so:
    I dont' need in scroling.
    How do it? With JavaScript? or exists decision in ActionScript 3?
    Help plz.

    Quick google search provided me following have you tried any of these?
    http://forums.adobe.com/thread/689870
    Can the SWF size itself in an HTML page?http://www.flepstudio.org/forum/tutorials/3578-resizing-swf-real-time.html

  • Perplexed about resizing swf to window

    Hi all,
    I cannot change both the width 100% and height 100% of my SWF in the properties panel of DW and have the movie load on my website (it is missing).  I can change the width to 100% and the height to any size (100 to 2000 px) and the movie will fit horizontally all the way across my screen but is either to short or to tall vertically, respectively.
    I can change all kinds of parameters (adding or deleting) and get the same result.  I see a lot of conversation about this in the forums but not a straight forward fix for the non-java types. I have changed alot of info for the tags inculding padding and margin to 0 and height and width to 100%.
    I am using DW CS5.  Any suggestions?
    Thanks,
    Randy

    Hi
    Setting height and width to 100% -
    In some browsers it will work, to some degree, in others it will not without a little JavaScript and/or resizing the page,
    For an example of resizing swf to the page, (try this in various browsers, to see how they differ, and that all do) - http://www.pziecina.com/design/turorial_demos/autoresize_flash.php. View source to see how it is done.
    PZ

  • Can we resize swf file created with AIR API in AIR application?

    Hi,
    I created a .swf file with AIR API.
    I want to open and resize it in AIR application. This .swf file taking dimensions as default in which it opens.
    I want to change its width and height.
    Is there any way to change its dimensions?
    Please suggest me the solution.
    thank you

    Loading a Flex WindowedApplication into another is not supported.  However,
    you might be able to access the WindowedApplication and size it.  Sub-Apps
    in AIR should be based on Application, not WindowedApplication.

  • Resizing Swf at runtime based on content

    Hi I am working on a project and I am trying to figure out how to resize the swf at runtime based on the content (which is brought in by xml) .  What I am trying to do is similar to http://www.mustardlab.com/developer/flash/objectresize/  but unfortunately this is written in AS1 and doesnt help me much!  If anyone could please explain to me how to do this in AS3 I would really appreciate it.  I know I need to use the ExternalInterface but I am very new to AS3 and am not sure how to do this.  I have searched and searched all over the internet and still can't figure it out.  Any source code you might have would be AWESOME!
    Thanks again,
    Kathy

    Hi again:)  I guess that’s the problem, I'm not sure of the code..i mean I guess I understand the basics..i need to call on the textField.height and send it to the javascript via the ExternalInterface..then I'm stuck..how to get the javascript to resize the div which is what I'm assuming it needs to do?  Again, this I'm really new at this and I'm working on a site for a client..I have been struggling to get it to work..i'd dump the flash all together but she reallllllllllly wants it!
    Here is the site if you want to see it.  Its not finished yet but I'm getting there!
    www.daedaldesigns.com/jackiegood/
    Right now the issue is the text on some pages is short and on others is long..so I need to get it to expand.
    Thanks again..I really appreciate your time!
    Kathy

  • Problems resizing SWF to browser

    Hi all,
    I am having trouble making a SWF project resize to full screen.  I am using a third party flash component “Slideshowpro” and I am working with CS5 Flash and CS5 Dreamweaver.
    There is only 1 layer when I open slideshowpro and I have added the following code to the first key by opening “Window>Actions” in Flash:
    import net.slideshowpro.slideshowpro.*;
    stage.align = StageAlign.TOP_LEFT;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    resizeHandler(null);
    function resizeHandler(event:Event) {
         my_ssp.setSize(stage.stageWidth,stage.stageHeight);
    stage.addEventListener(Event.RESIZE, resizeHandler);
    I set my instance name to "my_ssp"
    I also did a similar set up in Flash “Publish Settings” on the HTML tab (W/H 100%, Scale: No scale, Flash Alignment Hor/Left and Vert/Top).
    I also set height and width to 100% in html doc using Dreamweaver.  The site is www.rannallenphotography.com.
    I can only see a truncated version of my SWF movie in IE and only gray background in Firefox?  If I add any px dimension to the horizontal position, the SWF slideshow opens to max width and the horizontal pixel dimension…
    I feel as if I am overlooking something simple being a novice at Flash and DW.
    Any Suggestions?
    Randy

    Not sure how, but by coping code from a website where resizing worked, my website now works and the swf resizes to browser...   Now when I exit from Full Screen it resizes incorrectly, but that (I think) is a flash problem. 
    thanks

  • Resizing swf dynamically

    Hi Guys,
              I am uploading different size of images dynamically but at the same time I want the stage to be resized accordingly to image's height and width.
    What is the best way to do it?

    In the following Actionscript I am passing image's(which is on stage) width and height to the Javascript:-
    stagewidth = 400 stageHeight = 300
    imageWidht = 540 stageHeight = 544
    import flash.external.ExternalInterface;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    var data1 = 10;
    var data2 = 20;
    var divid = "flashid";
    trace("clip dimensions : "+clip_mc.width+" "+clip_mc.height);
    ExternalInterface.call("setFlashHeight", divid,clip_mc.height);
    ExternalInterface.call("setFlashWidth", divid,clip_mc.width);
    HTML Code:-
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>resizeStage2</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
        var version;
        var axo;
        var e;
        // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
        try {
            // version will be set for 7.X or greater players
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
            version = axo.GetVariable("$version");
        } catch (e) {
        if (!version)
            try {
                // version will be set for 6.X players only
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                // installed player is some revision of 6.0
                // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                // so we have to be careful.
                // default to the first public version
                version = "WIN 6,0,21,0";
                // throws if AllowScripAccess does not exist (introduced in 6.0r47)       
                axo.AllowScriptAccess = "always";
                // safe to call for 6.0r47 or greater
                version = axo.GetVariable("$version");
            } catch (e) {
        if (!version)
            try {
                // version will be set for 4.X or 5.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                version = axo.GetVariable("$version");
            } catch (e) {
        if (!version)
            try {
                // version will be set for 3.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                version = "WIN 3,0,18,0";
            } catch (e) {
        if (!version)
            try {
                // version will be set for 2.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                version = "WIN 2,0,0,11";
            } catch (e) {
                version = -1;
        return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
        // NS/Opera version >= 3 check for Flash plugin in plugin array
        var flashVer = -1;
        if (navigator.plugins != null && navigator.plugins.length > 0) {
            if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                var descArray = flashDescription.split(" ");
                var tempArrayMajor = descArray[2].split(".");           
                var versionMajor = tempArrayMajor[0];
                var versionMinor = tempArrayMajor[1];
                var versionRevision = descArray[3];
                if (versionRevision == "") {
                    versionRevision = descArray[4];
                if (versionRevision[0] == "d") {
                    versionRevision = versionRevision.substring(1);
                } else if (versionRevision[0] == "r") {
                    versionRevision = versionRevision.substring(1);
                    if (versionRevision.indexOf("d") > 0) {
                        versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
        // MSN/WebTV 2.6 supports Flash 4
        else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
        // WebTV 2.5 supports Flash 3
        else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
        // older WebTV supports Flash 2
        else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
        else if ( isIE && isWin && !isOpera ) {
            flashVer = ControlVersion();
        return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
        versionStr = GetSwfVer();
        if (versionStr == -1 ) {
            return false;
        } else if (versionStr != 0) {
            if(isIE && isWin && !isOpera) {
                // Given "WIN 2,0,0,11"
                tempArray         = versionStr.split(" ");     // ["WIN", "2,0,0,11"]
                tempString        = tempArray[1];            // "2,0,0,11"
                versionArray      = tempString.split(",");    // ['2', '0', '0', '11']
            } else {
                versionArray      = versionStr.split(".");
            var versionMajor      = versionArray[0];
            var versionMinor      = versionArray[1];
            var versionRevision   = versionArray[2];
                // is the major.revision >= requested major.revision AND the minor version >= requested minor
            if (versionMajor > parseFloat(reqMajorVer)) {
                return true;
            } else if (versionMajor == parseFloat(reqMajorVer)) {
                if (versionMinor > parseFloat(reqMinorVer))
                    return true;
                else if (versionMinor == parseFloat(reqMinorVer)) {
                    if (versionRevision >= parseFloat(reqRevision))
                        return true;
            return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();   
        switch (currArg){   
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":   
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    function setFlashWidth(id,data2){
            alert("newW  : "+data2);
            document.getElementById(id).style.width = data2+"px";       
    function setFlashHeight(id,data1){
            alert("newW  : "+data1);
            document.getElementById(id).style.width = data1+"px";       
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet-->
    <div align="left">
        <div id="flashid">
            <script type="text/javascript" language="JavaScript">
                //e = canResizeFlash();
                document.write('<object data="resizeStage2.swf" width="100%" height="100%" type="application/x-shockwave-flash">');
                document.write('<param name="movie" value="resizeStage2.swf" />');
                //document.write('<param name="FlashVars" value="allowResize='+e+'" />');
                document.write('Flash Movie With Resizing Content');
                document.write('</object>');
            </script>
            <noscript>Javascript must be enabled to view Flash movie</noscript>
        </div>
    </div>
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
            'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
            'width', '550',
            'height', '400',
            'src', 'resizeStage2',
            'quality', 'high',
            'pluginspage', 'http://www.adobe.com/go/getflashplayer',
            'align', 'left',
            'play', 'true',
            'loop', 'true',
            'scale', 'showall',
            'wmode', 'window',
            'devicefont', 'false',
            'id', 'resizeStage2',
            'bgcolor', '#ffffff',
            'name', 'resizeStage2',
            'menu', 'true',
            'allowFullScreen', 'false',
            'allowScriptAccess','sameDomain',
            'movie', 'resizeStage2',
            'salign', ''
            ); //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=10,0,0,0" width="550" height="400" id="resizeStage2" align="middle">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name="movie" value="resizeStage2.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />    <embed src="resizeStage2.swf" quality="high" bgcolor="#ffffff" width="550" height="400" name="resizeStage2" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
        </object>
    </noscript>
    </body>
    </html>
    The error messgae I get on the first line of the script: - "null" is null or not an object
    Thakn you for your help.

  • Resizing .swf files

    Hello,
    I recently published two seperate Captivate projects. You can see the work below:
    http://extmedia.kaplan.edu/legal/global/images/Legal_Studies1/Legal_Studies1.swf
    http://extmedia.kaplan.edu/legal/global/images/LSplaybook3/LSplaybook3.swf
    My problem is that one of the files will resize when you drag the browser window, but the other file will not.
    Is there a publishing setting somewhere that i missed?
    Any help is greatly appreaciated!
    Thanks,
    Tom

    Thank you for your quick response.
    I still don't understand why only one of my published projects will resize  . I need both projects to resize because they are being featured in a lightbox and I will need them to stay in a defined size.
    Click on the links. One can scale, the other cannot.
    Thank you,
    Tom

  • Resizing swf!!? (px not kb)

    Hi,
    I'm hoping someone can help me with this small issue I'm having...
    For  one of my clients I created a small flash animation that was 300px x  300px. The resolution was perfect. I now need to insert the animation  into another html page but it needs to be resized to 175px x 175px. This  is where the problems happen. When I scale the file down in Dreamweaver  CS4 the animation becomes very pixellated. I don't really understand  why. I could understand it if I were scaling up but wouldn't have  thought it would be a problem when scaling down.
    Does anyone know how I can fix this? I would prefer to not have to re-do my original animation in the size I know need it!
    Any help would be greatly appreciated.
    Thanks!

    If your file uses flash vector graphics, resizing in any direction will not matter, but when you use bitmap files (jpg, etc) they can get distorted when they are not displayed at the actual size.  So if it is images in the file that are presenting the problem, then your best bet at trying to get them to adapt, short of recreating the file with resized images, will be to set the images to allow smoothing.  You can do this by right clicking the images in the library, selecting Properties, and then selecting the option to allow smoothing.

  • Resizing SWF without PARAM

    Hi
    should we have a default size to show *.swf file on webpage
    with <embed> tag without defining width and height of file.
    we just want to show file with original size which is big
    than it shows, without defining resolution it shows it very small.
    we use <embed src="file.swf"></embed> tag to
    insert flash file into our code. is right? if its right then i am
    not geting needed result. Plz help me!!
    I will be very thankfull!

    badalin wrote:
    > Hi
    > should we have a default size to show *.swf file on
    webpage with <embed> tag
    > without defining width and height of file.
    > we just want to show file with original size which is
    big than it shows,
    > without defining resolution it shows it very small.
    > we use <embed src="file.swf"></embed> tag to
    insert flash file into our code.
    > is right? if its right then i am not geting needed
    result. Plz help me!!
    >
    > I will be very thankfull!
    you can't show swf in its original size w/o Embed and Param
    tags. It will fill the
    browser windows w/o it.
    Publish the file with complete set of tags, just <embed
    src="file.swf"></embed> is not
    enough.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Not getting a true swf resize when resizing swf in captivate

    I am using Captivate to generate a certain animation, that is
    an external swf, played by a larger swf. OK, this is unusual.
    The original problem is that when I authored the captivate to
    the correct size (110 x 110 pixels), the animated text letters were
    unacceptably aliased, choppy. No problem I thought. I'll simply
    create a captivate 220x220, then publish at 50% size and thus have
    an anti-aliased and good looking text in my little animation. And
    it does look good when I preview it in Captivate.
    However I notice that when I use the master swf to play the
    reduced captivate swf (I do not define in the master swf what size
    the reduced captivate swf should display at), it keeps wanting to
    display at 220x220! This is very odd. Is captivate not really
    natively reducing the size of the swf when I publish to be reduced?
    Your help would be appreciated!

    Instead of extending JPanel in ColeMain, why not extend JFrame?? Then you will be able to explicitly set the size.
    From your main method, you will be able to remove the part where you instantiate the new JFrame. You only have to instantiate the instance of class ColeMain.
    Use the setSize method on the JFrame simply by using setSize(int,int), instead of myframe.setSize().

  • How To  resize swf with actionscript 2

    I want to make a swf that loads other swf files and when
    rollOver, the swf loaded, will change it's size from 50x50 to
    100x100
    How can I do this?
    PLS help....I need to have this done today
    here you can see what I have done for now
    http://www.claudiudesign.org/adobe_forums_pt_resize/adobe_forums_pt_resize.html
    the file has 3 mb so you'll have to wait a bit to load

    He Peter,
    Thanks for your reply. I've made some steps, but still no perfect solution. I've managed to compile a swf with ant using only the AIR SDK.
    But, check these results
    - Compiled using Flash Builder release : 455 kb
    - Compiled with ant using mxmlc : 104 kb
    - Compiled with ant using compc : 139 kb
    Can you provide us an example, how to compile a swf using ant. For example, with an AIR mobile project.
    Thanks Peter.
    Tim.

  • How to resize swf module loaded by ModuleLoader according to parnet container?

    Hi,
    I have an Application MXML which contains ModuleLoader which loads external flex movie.
    I want that the loaded module should adjust its size atomatically based on its parent container.
    Can anybody help on this issue?
    Thanks,
    Prithvi Zankat.

    Hi,
    I have an Application MXML which contains ModuleLoader which loads external flex movie.
    I want that the loaded module should adjust its size atomatically based on its parent container.
    Can anybody help on this issue?
    Thanks,
    Prithvi Zankat.

  • I want to build android application using existing desktop dimension fla files. so for this I am resizing existing desktop dimension fla files to mobile dimension files but during resizing some files are resizing properly but most of the files the content

    problem definition:
    To build android application using existing desktop dimension fla fies , I am resizing that files to mobile dimension and publishing with air fo android 16  . In this process some fla's are not resizing properly I mean the content is not matching with stage
                      In one post I saw that by copying frames in movie clip we can adjust with stage . I did this and made an application but the swf's which are following the movieclip resized swf are going out of stage
    development tool : adobe flash professsional cc
    extension : air for android 16
    original file dimension: 800 * 600 px
    new dimension required is : 2650 * 1600 px ( to get full screen view)
                                           anyone please suggest me to solve this problem
    when I resized using copy frames in movie clip the output swf is coming with white screen . If I played with package it coming properly but the files which are following this are going out of stage
    Thanks&regards
    K.Niranjan

    problem definition:
    To build android application using existing desktop dimension fla fies , I am resizing that files to mobile dimension and publishing with air fo android 16  . In this process some fla's are not resizing properly I mean the content is not matching with stage
                      In one post I saw that by copying frames in movie clip we can adjust with stage . I did this and made an application but the swf's which are following the movieclip resized swf are going out of stage
    development tool : adobe flash professsional cc
    extension : air for android 16
    original file dimension: 800 * 600 px
    new dimension required is : 2650 * 1600 px ( to get full screen view)
                                           anyone please suggest me to solve this problem
    when I resized using copy frames in movie clip the output swf is coming with white screen . If I played with package it coming properly but the files which are following this are going out of stage
    Thanks&regards
    K.Niranjan

  • Placing an image on top of a flash file

    Is there a way to keep a image on top of a flash file? When I
    place it on top then publish the flash file jumps in front of the
    pic when it plays.
    What I am trying to do is place a border around the window. I
    can't just shrink the flash file down because this great program
    causes errors with the flash content.

    There is no way to keep an image on top of a Flash file.
    Having said that, we do a couple things to get around that:
    1: add the border to the flash file-- when we're creating
    swfs for Breeze in Captivate or Flash itself, we add the highlight
    or border there
    2: Add the border to a file that rests behind the flash file
    and make the flash file fit
    It sounds as if you've tried the second, but with no success.
    I 've never had a problem resizing swfs that I've imported into ppt
    through Breeze Presenter. I sthat the issue you're having?

Maybe you are looking for

  • VMWare Fusion and slow system: solution

    Having seen few answers to this problem on the Forum and many posts with the same issue, and finally figuring it out myself, I post a solution to the sluggish behaviour of SnowLeopard when VMWare Fusion 3 is running, and the beachball keeps appearing

  • Can no longer find Printer on Windows network

    I had a connection to the HP LaserJet 4050 at work and accidentally deleted it. We have a Windows network. I remember using the Windows Printing option before, but the printer no longer shows up when I select Network Neighborhood. The only thing that

  • Call a remote RFC from one sap system to to other sap system

    Hi experts, I'd like to know how to connect two sap systems via RFC. The two systems are in the same network and I'd like to know how to set up the SM59 in order to create the destination to the RFC. Any help in configuring the SM59 to stablish the c

  • Can I wirelessly conect my iPad2 to an Interactive White Board?

    I am looking to connect my ipad2 wirelessly to an Interactive White Board using the wi-fi network in my classroom. Has anyone managed to easily achieve this? Any suggestions?

  • Pse 11 organiser view screen background colour

    Am I able to change the background colour of the view screen in PSE 11 organiser?  The current background is grey, which isn't a great colour to optimise viewing images.  Black would be better.