HELP: Seems  impossible to change height x Width & bgcolor

Hi, I was wondering if someone can help me out...
I tried editing the .xml & .html files, but for some reason, nothing seems  to want to produce desired results
Info about tag cloud:
This tag cloud was generated using the online tool available at tagcloud-generator.com
Contains 5 test word and Flash settings  for "FLY"  tag cloud with output size of 600 width & 600 height.
Default Background color is #FFFFFF.
Default Bordercolor is #FFFFFF.
Problem / Issues
There seems to be no way to change the background to transparent.
I am trying to change the output size size from 600px (width) x 600px (height) to 100% x 100%, so that it would look alright in all browsers. However,  no matter how many times I change the width x height value in .html or .xml  file, it does not seem to want to accept it.
If someone can please help in making above changes, it will be very much appreciated.
Here is the flash tag  file with all the working code  that I downloaded from tagcloud generator: http://www.plasticsurgerytulsa.org/tag/flash-tagcloud.zip
Thank you.

Hi,
Thanks for the response.
Here is the content of HTML file
===========================================================
<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" />
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0" />
<title>tagClouds</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<body bgcolor="#ffffff">
<?xml version="1.0" encoding="utf-8"?>
<script language="javascript">
    if (AC_FL_RunContent == 0) {
        alert("This page requires AC_RunActiveContent.js.");
    } else {
        AC_FL_RunContent(
            'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
            'width', '600',
            'height', '600',
            'src', 'tagClouds',
            'quality', 'high',
            'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
            'align', 'middle',
            'play', 'true',
            'loop', 'true',
            'scale', 'showall',
            'wmode', 'transparent',
            'devicefont', 'false',
            'id', 'tagClouds',
            'bgcolor', '#ffffff',
            'name', 'tagClouds',
            'menu', 'true',
            'allowFullScreen', 'false',
            'allowScriptAccess','sameDomain',
            'movie', 'tagClouds',
            'salign', '',
            'flashVars', 'xmlURL=tagClouds53b5923d61d6103ad5d7342b03cfe6c51362858605.xml'
            ); //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=9,0,0,0" width="600" height="600" id="tagClouds" align="middle" >
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="tagClouds.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="flashVars" value="xmlURL=tagClouds53b5923d61d6103ad5d7342b03cfe6c51362858605.xml" />
    <embed src="tagClouds.swf" quality="high" bgcolor="#ffffff" width="100%" height="100%" name="tagClouds" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashVars="xmlURL=tagClouds53b5923d61d6103ad5d7342b03cfe6c51362858605.xml"/>
    </object>
</noscript>
</body>
</html>
===========================================================
Here is the content of the XML file
===========================================================
<?xml version="1.0" encoding="UTF-8"?>
<tagClouds>
  <einstellungen>
    <allgemein modus="fliegen" breite="600" hoehe="600" hintergrundfarbe="0xFFFFFF" rahmenfarbe="0xFFFFFF"/>
    <wolke prozentsatz_vertikal=""/>
    <globus radius="" maximale_Drehgeschwindigkeit=""/>
    <fliegen geschwindigkeit_aktiv="4" geschwindigkeit_passiv="2" richtung="vorwaerts"/>
    <schrift schriftart="Arial" kleinste_Schriftgr="12" groesste_Schriftgr="22" link_dekoration="nounderline"/>
    <farbe wert="0xFF7600"/>
    <farbe wert="0x87A800"/>
    <farbe wert="0xDE2159"/>
    <farbe wert="0x039FAF"/>
  </einstellungen>
  <tag linkURL="" prioritaet="9" text="word-one" target="_self"/>
  <tag linkURL="" prioritaet="10" text="word-two" target="_self"/>
  <tag linkURL="" prioritaet="8" text="word-three" target="_self"/>
  <tag linkURL="" prioritaet="6" text="word-four" target="_self"/>
  <tag linkURL="" prioritaet="4" text="word-fire" target="_self"/>
</tagClouds>
===========================================================
*Edit*
Here is the direct URL to SWF file (In case you need it)
http://www.plasticsurgerytulsa.org/tag/tagClouds.swf

Similar Messages

  • How to keep anchor in middle while changing height and width for comp in extendscript?

    When i try to change my composition height and width using extendScript, it works but with anchor point at top left corner. How do I maintain it at the center??
    My code:
    comp.width = 4000;
    comp.height= 4000;
    result:
    expected:
    Thank you

    So you caught me on an open day, and I even dragged in another staffer (Josh) to sit and figure this out and we did. I just need to clean it up into a function for ease of use. It literally became an obsession between Josh and I to figure this problem out. We seriously need to get outside more, haha. I'll post the solution here shortly once it's cleaned.
    Is there a way to access layer's properties like position, rotation etc without its comp open or selected and not knowing its item number.
    Finding layers can be done by looping through all comps and all layers. You must set a series of matching criteria to compare against so you don't accidentally grab a duplicate layer that has the same values though. Usually the layer name, size or any property spec that is unique, source asset if it's an AVLayer, etc... It's also possible to have a list returned that you choose from if you wanna verify the layer before proceeding. All this has to be manually coded though.
    var comp = app.project.activeItem;
    var layer = comp.selectedLayers[0];
    //assuming layer is a comp
    layer.duplicate();
    var num = layer.index;
    var name = (layer.name + "_comp");
    var newComp=  comp .layers.precompose([Lnum], Lname, true);
    newComp.width =  4000;
    newComp.height =  4000;
    now what am trying to achieve is move the comp (layer) to the center of newComp i.e at 2000, 2000
    I'm not fully understanding the process you are intending. You are searching for precomps (comps used as layers) basically?

  • API for Iview to change its propeerties height and width

    Hi ,
    i need the API for Iview  to change its proiperties like height and width and to assign iview to role,
    Regards ,
    venkat p

    Hi,
    Check this to set height & Width to Iview:
    Setting iView Parameters
    To assign iview to role:
    Adding a Role To another Roles by program
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5f/cf9d4207e1c86ae10000000a155106/frameset.htm
    Regards,
    Praveen Gudapati

  • Changing video frame width and height...

    In Adobe Premiere Pro CS 5 I cannot seem to produce (output) a video larger than frame width: 720 and frame height: 480. The video is recorded in full HD 1920 x 1080p but after editing and adding effects in Premiere Pro CS5, the video changes to only 720 x 480.
    1) Where are the settings in Premiere Pro changed to produce a video size of frame width: 1280 and frame height: 720 or even frame width: 1920 and height: 1080?
    2) Is it possible to produce a video at 1920 x 1080 or is 720 x 480 the max?
    Your time is appreciated.

    John,
    For now I will be using the videos for youtube promos and viewing on desktops but if I were, I would more likely output to DVD.  From what I understand it doesnt matter if I output 720 x 480 or 1920 x 1080 if it's going on youtube, however I would like the best quality video possible given that these videos wont be very long. (Elaborate on this if you can clear some stuff up for me).
    Also, I may have mislead readers with my thread title "Changing video frame width and height."  I guess a more accurate title would be "How to Change frame width and height of Video Output."  Don't get me wrong 720 x 480 looks great on my desktop, but I would also like to output one at 1280 x 720?

  • [svn] 3411: * Change layout-related width/height, explicit width/height, measured width/height properties from post-scale to pre-transform.

    Revision: 3411
    Author: [email protected]
    Date: 2008-09-29 16:44:01 -0700 (Mon, 29 Sep 2008)
    Log Message:
    * Change layout-related width/height, explicit width/height, measured width/height properties from post-scale to pre-transform. yay!
    * Flex3 containers are updated to support the new behavior.
    * Repeatedly scaling a component can differ from before, since we no longer accumulate rounding errors.
    * The change is gated by a version flag, in compatibility mode these properties don't change.
    Reviewed by Glenn, Ely
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/layout/LayoutItemUIC.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/DividedBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormItem.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/BoxLayout.a s
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/CanvasLayou t.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
    Added Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/PostScaleAd apter.as

    I am sorry to have to point out to you that you have changed SpryMenuBasicSkin.css so much that it is impossible to render any assistance.
    To start with, the menubar has an ID of MenuBar, yet in the CSS I only see this referenced as a CLASS as in
    .MenuBar  {
    background-color:#cccccc;
    font-family: Arial, Helvetica, sans-serif; /* Specify fonts on on MenuBar and subMenu MenuItemContainer, so MenuItemContainer,
    MenuItem, and MenuItemLabel
    at a given level all use same definition for ems.
    Note that this means the size is also inherited to child submenus,
    so use caution in using relative sizes other than
    100% on submenu fonts. */
    font-weight: normal;
    font-size: 16px;
    font-style: normal;
    padding:0;
    border-color: #ffffff #ffffff #ffffff #ffffff;
    border-width:0px;
    border-style: none none none none;
    I would suggest to start again.
    Once you have done that, supply a link to your site and we will assist you further.
    Gramps

  • How do I change just the width or the height of a brush in CS4

    I have a brush that is square.  Is it possible to change just the width or just the height and if so, how?

      Thanks so much.  Before I asked this question I searched and searched for what I knew was going to be an easy answer, but just couldn't find it.  Thank you for your quick and perfect answer.

  • Can someone help me change the line width of my numbers table, its not set to thin or none and its stuck on .25. its a spreadsheet i imported from excel.

    Can someone help me change the line width of my numbers table, its not set to thin or none and its stuck on pt25. its a spreadsheet i imported from excel.

    MR,
    Apparently the import wasn't a good one.
    The best option at this point might be to start a new table. Insert a new Table, Copy the old table cell range, select the first cell in the new table and Edit > Paste and Match Style. This will throw out all the old formatting. A bit of work, but a nice clean start.
    Jerry

  • How to change the height and width of a control?

    Dear all,
    is there anyway to change the height and width of a control?
     In the property nodes, i am just able to read the bound values but cudnt write to it.
    How can i set the bound values for a control?
    Thanks,
    Ritesh

    Not all controls can be sized this way. For example to change the vertical size of a simple numeric, you would need to change the font size.
    LabVIEW Champion . Do more with less code and in less time .

  • Changing the height and width of a pop-up

    I've run in to this script that sets these variables for the pop-up. Can someone please point me in the righ direction as to how to modify these variables? I've tried changing them and inserting a width and height in pixels, but the size does not change. I wish I had more time for Jave, but I've been spending most of my time with VB and asp.net. It's very hard to keep up accross the board. Here is the code:
    Thanks!!
    <SCRIPT LANGUAGE="javascript">
    function calpopup(lnk, winHeight, winWidth, winTop, winLeft) {
    windowSpecs = "fullscreen=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height=" + winHeight + ",width=" + winWidth + ",scrollbars=no,top=" + winTop + ",left=" + winLeft
    window.open(lnk, "calendar",windowSpecs)
    </SCRIPT>
    <SCRIPT type=text/javascript>
    var win= null;
    function NewWindow(mypage,myname,w,h,scroll){
      var winl = (screen.width-w)/2;
      var wint = (screen.height-h)/2;
      var settings  ='height='+h+',';
          settings +='width='+w+',';
          settings +='top='+wint+',';
          settings +='left='+winl+',';
          settings +='scrollbars='+scroll+',';
          settings +='resizable=yes';
      win=window.open(mypage,myname,settings);
      if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
    </SCRIPT>
    <SCRIPT LANGUAGE="JScript">
    function SwapImage(clickedObject, newImage)
       clickedObject.src = newImage;
    </SCRIPT>

    You need to ask on a JavaScript forum. Java != JavaScript

  • Batch file rename.  I have multiple files I want to rename, that have a date in their name in the mm/dd/yy format. The slashes seem to freak out the batch rename function.  Any workarounds that would help me avoid manually changing each name?

    OS X Yosemite 10.10.2, Macbook Air,
    Finder batch file rename function. I have multiple files I want to rename, that have a date in their name in the mm/dd/yy format. The slashes seem to freak out the batch rename function and it won't work.  I took out the slashes and worked fine.  Any workarounds that would help me avoid manually changing each name?  I should point out that I want to leave most of the name intact just change the first word in each name.  Also the files I'm working with are in PDF format.

    That's a comment in the file. It has no effect at all.

  • Dynamically changing the height and width of Stage

    Hi,
              I would like to know how can I change the height and width of stage dynamically. I tried it with the following code:
                             Stage.height = 250;
                             Stage.width = 250;
    during the run time. Initially the Stage is at a height and width of 370 and 450 respectively. Also when I tried to trace the height and width of Stage after resizing the stage width and height, its showing the old value of width and height. That means the width and height not chnaging. Anybody have any idea about this.

    Hi Ross,
                I could understand something about the problem after making a research on this topic. We can't change the width and height of stage from actionscript itself, right? I will explain the way I am planning to do. I don't know whether its right or not. Anyway you just go through it. First the player need to be resized, according to the specified height and width. Then in the object tag, there are two fields named height and width. We should change these value according to the specified height and width of video controller, dynamically. Am I right? But I am confused with two properties of Stage such as: align and scaleMode. The code was actually developed my trainer. There, the scaleMode is set to "noScale" and no align property is used. My doubt is how should I set align and scaleMode properties of Stage. Hope you understood what I meant.
    Regards,
          Sreelash.S.

  • I am new to apple having worked with microsoft all these years.  The switch was more for my photos. iPhoto seem to have changed my digital albums into tiff. All pictures are now in very small resolution. Can anyone out there help me retrieve my photos. Ta

    I am new to apple software having worked with microsoft all these years. The switch was mainly for my photographs. Iphotos seemed to have changed all digital albums from jpeg to tiff format hence the very small resolution. Can anyone out there please help me recover these photos to origianal format???
    Thanks
    suvieve63

    Gosh I am already tired of trying to retrieve this photo album and it seems like a waste of time and money spent on an apple IMac.
    No disrespect intended but until you learn how iPhoto and Macs work you will continue to be confused and frustrated. 
    You say you want to create a book in iPhoto and have it printed by Apple, right.  Have you finished creating  the book in iPhoto? If so the Control (right) - click in the View all pages window background and select Save Book as  PDF in the contextual menu?
    Open the the PDF file with Preview and check for any errors or problems.  If there are none you can order the book by clicking oin the Buy Book button at the bottom. Save the pdf file to compare with the printed book when it arrives in you feel there's a problem with it.  That's all you need to do.  There's no use of the Finder required.
    OT

  • Changing the Height and Width of Multiple Cells

    Is there a way of selecting a group of cells and making them a specified height and width? It would make my life so much easier when producing large tables!
    Any help appreciated.
    Regards,
    Adam Colvin

    Hi Adam,
    Select the block of cells.
    Open the Inspector.
    Choose the Table inspector.
    Set the row height and column width using the appropriately labeled controls.
    Regards,
    Barry

  • I used the iTune help and followed it but seem impossible to get my data from my PC to my iTunes., I used the iTune help and followed it but seem impossible to get my data from my PC to my iTunes.

    I followed the instructions but it seems impossible to get data from PC to iTunes.
    What could be the problem?

    What data?
    Any error messages?
    Exactly what instructions?

  • Help!  Batch Capture Changes My Logged Clips' Media Start & Media End

    I'd be very grateful for any help on this.
    I log a tape with about 40 clips ranging from 30 seconds to 4 minutes. I select the clips and start a batch capture. Everything appears to be capturing normally and I receive no error messages or dropped frame warnings - after my last clip is captured I get a "Successfully Captured" message.
    However, as soon as I click "Finished," all of my clip media start's, media end's, and durations in the log window arbitrarily change to weird times. All my media start points are 26 frames too early (I've tripple-checked that "Add Handles" is indeed deactivated), and the media end points make no sense at all.
    A clip that was once 44 seconds long is now only 12 seconds long, the media end point moved a whopping 34:03 too early. Another clip will become 2 seconds longer, the media start point still shifted back 26 frames, but with the media end now 31 frames too late. Checking the original files on my drive confirms that only these weird, unusable segments are what has been captured.
    What complicates things is that I just discovered today that if I capture locally to my internal hard disk, the clips capture normally (the times remain unchanged). But if I set my capture scratch to my external hard drive (a LaCie F800 2-TB RAID-5 using Firewire-800), that's when the clips start changing themselves. I ran disk utility and found no errors on the drive, and have never had a problem with it or any part of my configuration until the last month or so... the only changes to my system being the regular use of Software Update.
    On top of that, my colleague is experiencing a similar problem with batch capture changing his clip times, even though he is using a different computer (single-processor G5), a different video deck (Sony DHR-1000), and a different storage medium (Apple Xserve RAID).
    So my question is: What is happening! The only thing I can think of is that perhaps some update has a bug - but I can't find anyone with a similar problem online.
    Any help on this would be extremely appreciated! Thank you in advance for your advice.
    Dual 2.3GHz PowerPC G5 Mac OS X (10.4.4) Deck: JVC CU-VH1 / Storage: LaCie F800 2-TB RAID-5
    Dual 2.3GHz PowerPC G5 Mac OS X (10.4.4)

    Here's an update on this. Both my colleague and I have confirmed that if we capture to an internal or external drive that is not a RAID FCPro batch captures just fine.
    But, if the drive we are capturing to is a RAID (in my case a LaCie Biggest F800 and his case an Apple Xserve), then we get dropped frame reports and/or clip in's and out's changing after the batch capture is complete.
    We even tried reformatting one of the xServe's and rebuilding it as non-journaled, it didn't solve the problem.
    It seems impossible that we're the only ones to be experiencing this problem... does anybody have any help or suggestions!?

Maybe you are looking for