Flash root Movie Resize Problem

Greetings ladies and gentlemen,
I have been going round and round in circles, trying to solve
this annoying little problem, and have just ended up biting myself
in the small of the back. I need help from someone who really knows
their flash.
My problem is this - I have a parent flash movie of size
900x800. I have a button inside this parent that then loads an
external swf (size 300x200) into an empty mc in the parent. My
problem is that when the external swf loads, it resizes the parent
movie (or repositions it depending on whether I am using IE or
Firefox).
I can't seem to work out why or how it's happening, and it
happens whether I use the standard Flash embedding or the swfobject
method for my HTML page that the movie is embedded in.
The actionscript code in the parent is very basic:
but1.onRelease = function() {
_root.createEmptyMovieClip("mp3_player",
getNextHighestDepth());
mp3_player._x = 240;
mp3_player._y = 390;
mp3_player.loadMovie("mp3player.swf");
I can't imagine why the root movie jumps down in size when
the button is pressed and the external swf loaded. Please, could
anyone shed some light?
My html file has the following embedding:

Yep. I have the same problem and I have searched every forum
on the web and have spent hours messing with AS. If anyone has a
clue please throw us a bone.
Thanks,
Dr-Clegg

Similar Messages

  • Flash plugin window resize problem

    When i try to resize non-maximized window with this page, firefox not let me do this. I tried on other browsers works fine, but firefox just cancel resize operation and change it's size only on 1-3 pixels.
    [http://armsenergy.com/as3/forFirefox/index.php back up'd example]

    Try to "disable the hardware acceleration" in the Flash Player.
    *http://helpx.adobe.com/flash-player/kb/video-playback-issues.html
    See also:
    *https://support.mozilla.org/kb/keep-flash-up-to-date-and-troubleshoot-problems
    Flash "Display settings" window:
    *http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html
    You can check for problems caused by a recent Flash 11.3 update and possibly downgrade to Flash 11.2 or 10.3.
    *https://support.mozilla.org/kb/flash-113-doesnt-load-video-firefox
    *https://support.mozilla.org/kb/flash-113-crashes

  • Flash 8 Movie Link Problems...

    Ok I have created a short flash vid for my front page all
    works as planed and on the last scene I have put in 3 buttons.
    These links direct to the same page and that work fine. I then
    finished the page these link to and I want to direct there link
    directly to a specific area on the page. So I created anchors on
    the page and edited the actions for these buttons and added in the
    anchor name to the link as so:
    getURL("C:\\Documents and Settings\\Peter Crawley\\My
    Documents\\Web\\PCC Group Web Site Files\\Its About..html#time",
    "_self");
    Now when I click on each button they link to the top of the
    page and do not direct to the anchors I specified. Now I am more
    than likely doing something very stupid. I haven't done this before
    so it is a bit new to me.
    Could you have a look and see if I am doing something wrong
    please.
    Thanks

    system requirements for flash 8 do not support ME - Me is an
    outdated OS that is no longer supported
    by Microsoft (if it is supported I don't think it will be for
    much longer). The sytem requirements
    for Flash are found on the product page. If you are serious
    about using Flash, you may want to
    consider upgrading your OS to XP.
    --> Adobe Certified Expert (ACE)
    --> www.mudbubble.com :: www.keyframer.com
    -->
    http://flashmx2004.com/forums/index.php?
    -->
    http://www.macromedia.com/devnet/flash/articles/animation_guide.html
    -->
    http://groups.google.com/advanced_group_search?q=group:*flash*&hl=en&lr=&ie=UTF-8&oe=UTF-8
    jjarrett96 wrote:
    > I downloaded Flash 8 Trail. My operating system is
    Windows Me. When I try to
    > install Flash 8 it says Windows Installer needs
    upgraded. I click yes to do it
    > and get an NTDLL.DLL error. I downloaded Windows
    Installer 2.0 from microsoft
    > and it still won't install. Is there a work around for
    this so I can try Flash
    > 8?
    >

  • [svn:fx-gumbo_beta2] 10484: Fix for autoCenter problem when Move/ Resize effects are used.

    Revision: 10484
    Author:   [email protected]
    Date:     2009-09-21 19:38:14 -0700 (Mon, 21 Sep 2009)
    Log Message:
    Fix for autoCenter problem when Move/Resize effects are used. autoCenterTransform calculates the center dynamically, using the current width/height of the target. This calculation can be one frame off if a Resize effect is running in parallel with the transform effect. Also, containers do their validation lazily, so they need to be forced to validate in order to have an up-to-date width/height. This fix addresses these problems by reordering the effects in a Parallel hierarchy to put the Resize effects (and composite effects containing Resize) at the front of the set of effects and by calling validateNow() on the target of a transform effect prior to calculating the transform center (if appropriate).
    QE notes: None
    Doc notes: None
    Bugs: SDK-23306
    Reviewer: Jason
    Tests run: checkintests, Mustella spark/effects mx/effects, manual tests
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23306
    Modified Paths:
        flex/sdk/branches/gumbo_beta2/frameworks/projects/framework/src/mx/effects/effectClasses/ CompositeEffectInstance.as
        flex/sdk/branches/gumbo_beta2/frameworks/projects/framework/src/mx/effects/effectClasses/ ParallelInstance.as
        flex/sdk/branches/gumbo_beta2/frameworks/projects/spark/src/spark/effects/supportClasses/ AnimateTransformInstance.as

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • FABridge.flash.root() is null or not an object

    Hello everyone! I'm having a problem with Flex-Ajay Bridge in
    an aspx page. Days ago I could access flex variables from
    javascript without problems, but now I can´t. This is my flex
    code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*" layout="absolute" height="194" width="374"
    creationComplete="init()">
    <fab:FABridge xmlns:fab="bridge.*" bridgeName="flash"
    id="flash"/>
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    public function init():void
    mx.controls.Alert.show("ready");
    ]]>
    </mx:Script>
    <mx:Label x="227" y="171" text="Probemos......"
    fontSize="14"/>
    <mx:TextInput x="140" y="27" id="pki"/>
    <mx:TextInput x="140" y="76" id="pkf"/>
    <mx:TextInput x="140" y="122" id="nc"/>
    <mx:Label x="27" y="29" text="PKI" fontSize="14"/>
    <mx:Label x="27" y="78" text="PKF" fontSize="14"/>
    <mx:Label x="27" y="123" text="Max. Carriles"
    fontSize="14"/>
    </mx:Application>
    It's just some text boxes and labels. I want to access those
    labels from javascript, so I wrote in my html page this:
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    >
    <head runat="server">
    <title>Inventario de Carriles con Flex</title>
    <script
    src="JS/FABridge.js"type="text/javascript"></script>
    <script type="text/javascript" language="javascript">
    function setMessage()
    var flexApp = FABridge.flash.root();
    alert("1");
    alert("2");
    flexApp.pki().setText("1");
    flexApp.pkf().setText("2");
    flexApp.nc().setText("3");
    </script>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    <table>
    <tr>
    <td>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="374"
    height="194" >
    <param name="movie" value="FlexApp\Inventario.swf"/>
    <param name="quality" value="high"/> <
    <embed src="FlexApp\Inventario.swf" width="374"
    height="194" align="middle" quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"></embed>
    </object>
    </td> (...............)
    When I click in the button, the js fuction starts executing
    but when it tries to initialize the flexApp variable it shows an
    error: flexApp.flash.root() is null or not an object.......... can
    you please help me? I tried everything and didn't manage to solve
    this problem, I know that the flex .swf is initialized but I don't
    know why the javascript can't access it :(
    Does someone knows what can I do in order to solve this???
    Thanks!!!
    Regards,
    Mariana

    Hi,
    javascript isn't made by sun, so you won't find it here, but google can help you out:
    http://www.google.se/search?hl=sv&ie=UTF-8&q=javascript+forum&btnG=S%C3%B6k&meta=
    /Kaj

  • Problem description: My iMac (early 2008) with OS 10.10.2 runs slow.  I have run EtreCheck several times, and I am unable to move beyond Problem System Launch Agents (11 processes killed due to memory pressure) and Launch Daemons (12 processes killed

    Problem description:
    My iMac (early 2008) with OS 10.10.2 runs slow.  I have run EtreCheck several times, and I am unable to move beyond Problem System Launch Agents (11 processes killed due to memory pressure) and Launch Daemons (12 processes killed).
    EtreCheck version: 2.1.8 (121)
    Report generated April 14, 2015 at 9:50:48 AM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (24-inch, Early 2008) (Verified)
        iMac - model: iMac8,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR2 SDRAM 800 MHz ok
            BANK 1/DIMM1
                2 GB DDR2 SDRAM 800 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 8800 GS - VRAM: 512 MB
            iMac 1920 x 1200
    System Software: ℹ️
        OS X 10.10.2 (14C1510) - Time since boot: 4 days 20:29:22
    Disk Information: ℹ️
        Hitachi HDS721010KLA330 disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Mac iBook HD (disk0s2) / : 999.35 GB (521.60 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Configuration files: ℹ️
        /etc/sysctl.conf - Exists
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.Maps.pushdaemon.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.SafariNotificationAgent.plist
        [killed]    com.apple.sbd.plist
        [killed]    com.apple.scopedbookmarkagent.xpc.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        [killed]    com.apple.warmd_agent.plist
        11 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nesessionmanager.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    org.cups.cupsd.plist
        12 processes killed due to memory pressure
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [running]    com.arubanetworks.via.NetworkMonitorLaunchd.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        ChronoSyncBackgrounder    Application  (/Library/Application Support/ChronoSync/ChronoSyncBackgrounder.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        Canon IJ Network Scanner Selector2    Application Hidden (/Library/Printers/Canon/IJScanner/Utilities/Canon IJ Network Scanner Selector2.app)
        Google Drive    Application  (/Applications/Google Drive.app)
    Internet Plug-ins: ℹ️
        Google Earth Web Plug-in: Version: 6.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 [Click for support]
        Flip4Mac WMV Plugin: Version: 3.1.0.24   - SDK 10.8 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 Outdated! Update
        iPhotoPhotocast: Version: 7.0
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.8 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User internet Plug-ins: ℹ️
        WebEx: Version: 1.0 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
    3rd Party Preference Panes: ℹ️
        Adobe Version Cue CS2  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        VIA PrefPane  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             3%    WindowServer
             3%    Mail
             2%    com.apple.iCloudHelper
             1%    Creative Cloud
             1%    Google Chrome
    Top Processes by Memory: ℹ️
        223 MB    Google Chrome
        150 MB    Finder
        129 MB    Google Chrome Helper
        112 MB    Mail
        69 MB    Google Drive
    Virtual Memory Information: ℹ️
        35 MB    Free RAM
        1.45 GB    Active RAM
        1.45 GB    Inactive RAM
        888 MB    Wired RAM
        27.01 GB    Page-ins
        851 MB    Page-outs

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Hi. Please can anyone show me how to install a flash document / movie into a powerpoint presentation so that the animation plays within the powerpoint? Thanks

    Hi. Please can anyone show me how to install a flash document / movie into a powerpoint presentation so that the animation plays within the powerpoint? Thanks

    wouldn't it make more sense that a flashtard is someone who
    just generally sucks at flash and asks idiotic questions?
    anyway, so i pretty much got the banner done - but i'm stuck
    on one problem. I made a motion clip of a heart, and i want the
    heart to fall from top to bottom, following a squiggly motion
    guide, and to rotate 1/4 turn on the way. I got it as far as
    following the motion guide, but when i try to select the instance
    in the first frame and rotate it, shouldn't the motion tween make
    it appear to slowly rotate, rather than stay put then rotate 1/4
    turn at the last frame? When I select the clip and play around with
    alpha and stuff, that works fine. What the heck?

  • Move/Resize photo within a mask?

    I've been trying to figure this out forever:
    When I drag one of my photos onto a placeholder image that is on an Apple template, it replaces it just fine. The problem I have is that I want to be able to move/resize my image around inside the mask until it fits just how I want it to. Is this possible?
    In other words, I want the mask area to stay where it is and have JUST my image move around inside of the mask.
    Any ideas?

    Unfortunately, the instructions here do not refer to the thumbnail photos in the photo template. Is that what you are asking about?
    Aside from setting the maximum caption height, there really isn't a whole lot you can do to type more into those boxes. Here are some things to try...
    1. Make the caption font used teeny tiny so that you can squish more words in there. Obviously this has its limits.
    2. Try overlaying the caption area with your own text box. Then at least you can make it as big as you want. You may have to fill the textbox with the background color in order to fully cover up the existing caption box.
    Just some random ideas.

  • Blogger / Flash audio widget spacing problem

    This is a multi-part message in MIME format.
    ------=_NextPart_000_0157_01C8E5D5.30A1E450
    Content-Type: text/plain;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    Please excuse me re-posting this question, but I have new
    info and =
    needed a new subject line. :-)
    I'm trying to use a very nice little Flash audio player
    script on a =
    Blogger page. Here's what it looks like on a simple HTML
    page:
    http://ayersvirtual.com/deleteme.htm
    On that page above, in all my browsers, the spacing above and
    below the =
    audio player is fine. That's what I want.
    But when I put the same code in a Blogger post, there are
    massive =
    top-bottom margins in Firefox 3, and none at all in IE 7.=20
    Here is a sample Blogger post showing this:=20
    http://pattyayers.blogspot.com/2008/07/blogger-flash-audio-player-problem=
    .html
    I dug through Blogger's CSS, and don't see anything that
    should cause =
    this. I added a line of CSS targeted at the <object>
    tag, zeroing its =
    margins, but that didn't do it.=20
    Any help with figuring this out would be MUCH appreciated!
    --=20
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    ------=_NextPart_000_0157_01C8E5D5.30A1E450
    Content-Type: text/html;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=3DContent-Type content=3D"text/html; =
    charset=3Diso-8859-1">
    <META content=3D"MSHTML 6.00.6001.18063"
    name=3DGENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY>
    <DIV><FONT face=3DArial size=3D2>Please excuse me
    re-posting this =
    question, but I=20
    have new info and needed a new subject line. 
    :-)</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>I'm trying to
    use a very nice little =
    Flash audio=20
    player script on a Blogger page. Here's what it looks like on
    a simple =
    HTML=20
    page:</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><A href=3D"
    http://ayersvirtual.com/deleteme.htm"><FONT
    face=3DArial =
    size=3D2>
    http://ayersvirtual.com/deleteme.htm</FONT></A></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>On that page
    above, in all my browsers, =
    <STRONG>the=20
    spacing above and below the audio
    player</STRONG> is =
    fine. That's=20
    what I want.</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>But when I put
    the same code in a =
    Blogger post,=20
    there are <STRONG>massive top-bottom margins in Firefox
    3</STRONG>, and=20
    <STRONG>none at all in IE 7</STRONG>.
    </FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>Here is a sample
    Blogger post showing =
    this:=20
    </FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial=20
    size=3D2>
    http://pattyayers.blogspot.com/2008/07/blogger-flash-audio-playe=
    r-problem.html</FONT><A=20
    href=3D"
    http://pattyayers.blogspot.com/"></A></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>I dug through
    Blogger's CSS, and don't =
    see anything=20
    that should cause this. I added a line of CSS targeted at the
    =
    &lt;object&gt;=20
    tag, zeroing its margins, but that didn't do it.
    </FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>Any help with
    figuring this =
    out would be MUCH=20
    appreciated!  :-)</FONT></DIV>
    <DIV><BR><FONT face=3DArial size=3D2>--
    <BR>Patty Ayers | </FONT><A=20
    href=3D"
    http://www.WebDevBiz.com"><FONT
    face=3DArial=20
    size=3D2>www.WebDevBiz.com</FONT></A><BR><FONT
    face=3DArial =
    size=3D2>Free Articles on=20
    the Business of Web Development<BR>Web Design Contract,
    Estimate Request =
    Form,=20
    Estimate
    Worksheet<BR>--</FONT></DIV></BODY></HTML>
    ------=_NextPart_000_0157_01C8E5D5.30A1E450--

    Yeah, it does make me appreciate Wordpress. I would have
    stuck with it, but
    when I found out that you have to pay to edit your CSS (on
    their hosted
    plan), I switched back to Blogger!
    I'll keep my eye on that beta ("draft") version of Blogger. I
    have to be
    cautious with my client's account, but maybe I'll try it for
    my own blogs.
    Thanks again...!
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    "Mad Dog" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm glad it worked. Yes, it's weird how Blogger adds
    <br>s, but remember,
    > it's for the masses who still act like they're on
    typewriters, so it does
    > make sense for most people. As I mentioned, the new
    version (in Draft mode
    > now) supposedly will get rid of that. Funny....the first
    thing I was going
    > to tell you want to remove anything more than a single
    space from the
    > <object>.....
    >
    > I'm surprised the setting affects everything. I would
    have expected it
    > would only affect a new post, not everything!
    >
    > Makes ya appreciate Wordpress, doesn't it? (Though I do
    like the interface
    > in Blogger)
    >
    > Anyway, glad I could help point you in a direction.
    >
    > MD
    >
    > P@tty Ayers ~ACE wrote:
    >> I think I found a way! I can't leave that setting
    turned off, because
    >> my client needs it turned on. (What a bizarre and
    silly way Blogger
    >> handles something as simple as paragraphs of text!)
    >>
    >> But, if I remove every ounce of white space from the
    <object> tag
    >> before I paste it in, Blogger doesn't add any
    <br> tags into it.
    >>
    >> I believe this is going to work. Mad Dog, thank you
    VERY much for
    >> giving me the clues I needed. I truly appreciate
    it!! This was really
    >> about to drive me crazy.
    >>
    >> --
    >> Patty Ayers | www.WebDevBiz.com
    >> Free Articles on the Business of Web Development
    >> Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    >>
    >> "P@tty Ayers ~ACE"
    <[email protected]> wrote in
    >> message news:[email protected]...
    >>>
    >>> "Mad Dog"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>
    >>>> First...try going into the SETTINGS >
    FORMATTING and change
    >>>> "Convert line breaks" to "No." That might
    help, but might not.
    >>>> Blogger loves adding <br> and has been
    known to add them in
    >>>> embedded objects.
    >>>
    >>> That stops Blogger from adding <br /> tags
    into my <object> code!
    >>> Yay!! But unfortunately it left all of my blog
    posts completely without
    >>> any
    >>> paragraphs at all. If this was just for *my*
    blog, I could just add
    >>> the <p> tags in (which I tried, and it
    works). But it's for my
    >>> client's blog, and she's not going to do that.
    >>>
    >>> Does Blogger seriously not have a setting where
    hard returns are
    >>> turned into normal paragraph tags?? It's either
    <br> tags everywhere
    >>> and anywhere, or nothing??
    >>>
    >>>
    >>> --
    >>> Patty Ayers | www.WebDevBiz.com
    >>> Free Articles on the Business of Web Development
    >>> Web Design Contract, Estimate Request Form,
    Estimate Worksheet
    >>> --
    >>>
    >>>
    >>>
    >>>>
    >>>> If that doesn't do it, try using the new
    Draft version of Blogger
    >>>> (
    http://draft.blogger.com/).
    It's still a work in progress (it won't
    >>>> Autosave!) but it doesn't add the automatic
    <br> linebreak. Check
    >>>> out more info about it at
    >>>>
    http://bloggerindraft.blogspot.com/2008/06/new-feature-new-post-editor.html,
    >>>> especially about halfway down. It's
    certainly worth a try!
    >>>>
    >>>> (I used Draft Blogger when I was away a
    couple of weeks ago since
    >>>> if you advance date a post, it won't show up
    until then, unlike the
    >>>> current version which posts it immediately
    but with an advance
    >>>> date. Doh!) MD
    >>>>
    >>>>
    >>>> P@tty Ayers ~ACE wrote:
    >>>>> The "Edit HTML" window in Blogger is a
    strange thing. I never see
    >>>>> much HTML in there. There are no
    <p> or <br> tags, just my text.
    >>>>> The code that I paste into the "Edit
    HTML" window has no extra <br
    >>>>> /> tags. Blogger apparently adds them
    before publishing the page.
    >>>>>
    >>>>> In other words, no, I can't manually
    remove them, because they're
    >>>>> not shown to me. :-(
    >>>>>
    >>>>> Do you use Blogger, MD? Is the "Edit
    HTML" feature like that for
    >>>>> you, also? Any other ideas?
    >>>>>
    >>>>> --
    >>>>> Patty Ayers | www.WebDevBiz.com
    >>>>> Free Articles on the Business of Web
    Development
    >>>>> Web Design Contract, Estimate Request
    Form, Estimate Worksheet
    >>>>>
    >>>>> "Mad Dog"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> Have you gone into the HTML window
    and manually removed them?
    >>>>>>
    >>>>>> P@tty Ayers ~ACE wrote:
    >>>>>>> Yup, Blogger has added 7 <br
    /> tags *inside* my <object> tag.
    >>>>>>> Argh. What I need is a way to
    stop Blogger from doing that. I
    >>>>>>> wonder if I can trick it
    somehow.
    >>>>>>>
    >>>>>>> --
    >>>>>>> Patty Ayers | www.WebDevBiz.com
    >>>>>>> Free Articles on the Business of
    Web Development
    >>>>>>> Web Design Contract, Estimate
    Request Form, Estimate Worksheet
    >>>>>>>
    >>>>>>> "P@tty Ayers ~ACE"
    <[email protected]> wrote
    >>>>>>> in message
    news:[email protected]...
    >>>>>>>> I'm sure you're both right,
    but there are no <br /> tags in the
    >>>>>>>> <object> code that I
    enter into Blogger. For some perverse
    >>>>>>>> reason, Blogger adds them.
    Not sure where that leaves me. :-( Any
    >>>>>>>> ideas? --
    >>>>>>>> Patty Ayers |
    www.WebDevBiz.com
    >>>>>>>> Free Articles on the
    Business of Web Development
    >>>>>>>> Web Design Contract,
    Estimate Request Form, Estimate Worksheet
    >>>>>>>> --
    >>>>>>>>
    >>>>>>>> "Speculumcm"
    <[email protected]> wrote in message
    >>>>>>>>
    news:[email protected]...
    >>>>>>>>> Osgood escribió:
    >>>>>>>>>> You have quite a few
    <br /> tags within the <object> tag
    >>>>>>>>>> itself which
    should'nt be there and will cause spacing issue.
    >>>>>>>>>> I'd remove them and
    see what happens.
    >>>>>>>>>>
    >>>>>>>>>
    >>>>>>>>> Yep, Osgood it's right,
    remove <br /> tags within <object> tag
    >>>>>>>>> and <embed> tags
    as well. Something like this:
    >>>>>>>>>
    >>>>>>>>> <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    >>>>>>>>> codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
    >>>>>>>>> width="290"
    height="24"> <param name=movie
    >>>>>>>>> value="
    http://mojomom.com/podcast/audio-player/player.swf"><param
    >>>>>>>>> name=quality
    value=high><param name="LOOP" value="false">
    >>>>>>>>> <param name="wmode"
    value="transparent"><param name="FlashVars"
    >>>>>>>>>
    value="playerID=1&amp;soundFile=http://media.libsyn.com/media/mojomom/Mojo__Mom_and_Momma _Zen_v1.mp3">
    >>>>>>>>> <embed
    src="http://mojomom.com/podcast/audio-player/player.swf"
    >>>>>>>>>
    FlashVars="playerID=1&amp;soundFile=http://media.libsyn.com/media/mojomom/Mojo__Mom_and_M omma_Zen_v1.mp3"
    >>>>>>>>> quality=high
    >>>>>>>>> pluginspage="
    http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
    >>>>>>>>>
    type="application/x-shockwave-flash" width="290" height="24"
    >>>>>>>>> loop="false">
    </embed> </object>
    >>>>>>>>>
    >>>>>>>>>
    >>>>>>>>> Eso lo arregla
    definitivamente
    >>>>>>>>>
    >>>>>>>>> Saludos
    >
    >

  • Need Help Making Flash Intro Movie

    I have a 30 second .wmv movie I need to convert to a flash
    format. No problem.(fla or swf)? But, I would like it to play
    before going into my main website with a skip into button. I need a
    preloader and to have it go directly onto the index.html (first
    page of the website) after playing. I have mad many failed
    attempts! Can anyone help me do this?
    Thank You,
    [email protected]

    actually - let me re-phrase that; who would sit and wait to
    download a 30 minute intro before
    entering a site?
    There's plenty of info in the help docs about flash video -
    tons of articles on adobe's site
    dedicated to flash video - google is your friend here.
    ~~~~~~~~~~~~~~~~
    --> Adobe Certified Expert
    --> www.mudbubble.com
    --> www.keyframer.com
    ~~~~~~~~~~~~~~~~
    Chris Georgenes wrote:
    > 30 minute intro? That's about the biggest oxy-moron I
    have ever heard
    > of. I think you are trying to do something nobody else
    would ever do -
    > who would sit and watch something for 30 minutes before
    entering a site?
    >
    > ~~~~~~~~~~~~~~~~
    > --> Adobe Certified Expert
    > --> www.mudbubble.com
    > --> www.keyframer.com
    > ~~~~~~~~~~~~~~~~
    >
    >
    >
    >
    > MXBrian wrote:
    >
    >> I have a 30 minute .wmv movie I need to convert to a
    flash format. No
    >> problem.(fla or swf)? But, I would like it to play
    before going into
    >> my main website with a skip into button. I need a
    preloader and to
    >> have it go directly onto the index.html (first page
    of the website)
    >> after playing. I have mad many failed attempts! Can
    anyone help me
    >> do this?
    >>
    >> Thank You,
    >> [email protected]
    >>

  • Flash Player movie not working.

    Hi,
    I tried to add flash player movie in website(www.consumer-court.in) but that movie is not working it is due to browser problem or need to install flash player in my system and my browser name and version is FireFox 3.6.
    Please help.

    This doesn't seem to relate to Acrobat, so you should try one of the Flash forums: http://forums.adobe.com/community/flash

  • Stop flash site from resizing to viewers browser

    Hi peoples
    I just wanted to know how to stop my flash site from resizing to the size of whoevers looking at its browser? I just want it to remain as it's set size.
    Any help would be great

    In the HTML section of the Publish Settings window, set your Dimensions: option to "Match Movie" and the Scale option to "Default (Show all)". This will keep the .swf at its original size regardless of the size of the html document that contains it.

  • Illustrator Resizing Problems

    I am having reduction resizing problems in Illustrator CS6.  E.G. Straws & lemon wedge rinds become significantly proportionately wider when reduced.   Also, numerical text does not skew with everything else.  I have a CC membership w/PS & Ai installed.  There are no other Adobe items on my 8 month old imac, Lion 10.7.4 except Flash player & the Adobe Applications Manager.  Additionally, I have no 3rd party plug-ins & deleting the prefs file does not fix the problem.  Any help on this matter would be greatly appreciated. 

    sgem,
    And untick Align to Pixel Grid if ticked (you can do it in the Transform panel, or search for it in the Helpfile).
    Hi Steve. Still summer?

  • DV resize problem with QuickTime's iPod 320 x 240 export

    Just a heads up for those with new 5th generation iPods who plan on converting their DV movies for display on the iPod. It seems that the iPod 320 x 240 export does not resize DV correctly. Here is a link concerning this problem:
    Waymen, "Possible resize problem with iPod 320 x 240 Export?" #1, 03:02am Oct 13, 2005 CDT

    This article show a workaround to have DV export correctly in QuickTime Pro
    http://docs.info.apple.com/article.html?artnum=302955

  • On 12/23/11 I update the adobe flash player and have had problems since- unexpected closing and freezing. Remove the adobe flash player and those problems resolved. How do I go back to the earlier version of adobe?

    I was prompted by Firefox to update my adobe flash player on 12/23/11, which I did. Ever since then the web site has frozen and/or crashed. I run a internet business and can't have this continue. I uninstalled the flash player and the problems have stopped. I would like to reinstall the earlier version of adobe, since that didn't seem to impact the web site.
    This is the flash player I installed on the 23rd - Flash Player 10.3 for Mac OS X 10.4-10.5 (Intel)

    Your above posted list of installed plugins doesn't show the Flash plugin for Firefox.<br />
    See [[Managing the Flash plugin]] and [[Installing the Flash plugin]]
    You can check the Adobe welcome and test page: http://www.adobe.com/software/flash/about/
    You can use this manual download link:
    *http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller

Maybe you are looking for

  • Moved iTunes music folder to new HD and it won't play

    I recently moved my iTunes music files to a larger external hard drive (for the third time) and now iTunes can't find any of the songs. It has worked in the past on 2 other HD's but not this time. I've selected the correct iTunes Music Folder locatio

  • Space Designer tutorial ?

    Hi dears, i need to found Space Designer tutorial files, i need for sampling a room. Please help. Thanks in advance.

  • Apple TV does not connect to my iTunes Library

    Apple TV has worked perfectly for the past couple of years but over the past couple of months the same message keeps appearing "could not connect to "my" Library". I have checked the following: iTunes is up to date Home sharing is turned 'on' on comp

  • HT4623 My phone does not appear in the devices

    My phone doesnot appear in the devices. I have the updated iTunes on my computer.

  • To do list disappears

    My to do list keeps disappearing. There doesn't seem to be any pattern to when this happens or doesn't happen. Isn't it supposed to be permanent until it's deleted? Can it be accidentally deleted? Could these disappearing lists be hiding somewhere? T