SWF/Flash help required

I've been trying to edit a .swf document to change the logo
from a website navigation bar but not having any luck. The file can
be found at
http://steevo.bravehost.com/navbar.swf.
I'm trying to swap the current green/yellow logos to
this and would like
to retain the animation if possible. Is there a simple method of
doing this?
Many thanks in advance!

In the Library panel...find your image and right click on it.
On the window
that pops up, click the import button. Find your new image
and press OK.
That should do it.
Dan Smith > adobe community expert
http://www.dsmith.tv
"Steevo123" <[email protected]> wrote in
message
news:fgfc38$qmj$[email protected]..
> I've been trying to edit a .swf document to change the
logo from a website
> navigation bar but not having any luck. The file can be
found at
>
http://steevo.bravehost.com/navbar.swf.
I'm trying to swap the current
> green/yellow logos to
http://steevo.bravehost.com/logo.gif
and would like
> to
> retain the animation if possible. Is there a simple
method of doing this?
>
> Many thanks in advance!
>

Similar Messages

  • Please help, need to import .swf/flash media

    Hi all, have a little issue here. I have some SWF flash media and I want to bring it into imovie so I can edit it more effectivley then with qt. However, I have been haveing alot of trouble, most time I only get the audio part of it and no image. Most of the media is widescreen, I was able to export the media in qt to dv stream and then import it, however, it lost its widescreen look and was kinda squished from the sides if that makes sense, if anybody has expeirence with this type of media, please help.
    Nathan

    Hi Nathan,
    I've never "dared" to convert .swf, but I read a lot about problems doing so... probably the Quicktime section of this forum is better to ask...
    maybe a much easier workaround is using tools as SnapzPro from Ambrosia; this tool claims to "record" any screen content (and audio) and convert it directly into any wanted format (as dv)...
    just a thought.......

  • Flash player requires external internet access?

    Hello,
    I'm wondering if flash player requires access to the external web to run. I have a machine where external internet access is blocked. When I load my webpage that contains a SWF, Flash player seems to throw the #2032 error and fail.
    Can anyone confirm if the Flash player connects to the web during startup? If so, can this be turned off? If not, I'm trying to find what may be causing the famous 2032 error.
    Thanks
    Udam

    You may need to turn off Flash Player update checking. Unfortunately this also needs Internet access (http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l).

  • How to read .xml file from embedded .swf(flash output) in captivate

    I have been trying to read .xml file from the .swf (Flash output) that is embedded within the captivate file but no luck yet . Please if anyone got any clue on how get this thing done using Action script 3.0 then let me know. I am using Adobe Captivate 5.5 at present and Flash CS 5.5.
    I am well aware about how to read .xml file through action script 3.0 in flash but when insert the same flash in captivate and publish nothing comes in captivate output. I would higly appreciate if anyone could help me out with that.
    Here is is graphical demonstration of my query :
    Message was edited by: captainmkv

    Hi Captainmkv,
    Does the information in this post cover what you're trying to do: http://forums.adobe.com/message/5081928#5081928
    Tristan,

  • JavaScript to swap an img for an swf, need help...

    Heya,
    So I have an mp3 player that is generated dynamically, it
    displays a compact play button beside each song an artist has
    published. But what happens on the high content pages is the flash
    just jams the browser. So I want to show an image to start, then,
    when it's clicked, I want it to swap out the swf file, can anyone
    help me out?
    I'm confident I should be able to write it myself I am just
    unsure of the proper syntax to use when writing it. I figure it
    will look something like this...
    When the page
    loads {
    display this image
    but when it's
    clicked swap it out with {
    this swf
    }

    Sorry for the delayed response, I work with two other
    programmers so often times they're not available to give input at
    the time I post in here. Anyway, one of the other programmers
    solved the problem. Here was the conclusion...
    // Display functions: to be used in partials and bodies
    function ocp_audio_player($uri, $compact = false, $return =
    false) {
    $player_path = $compact ? '/flash/compact_mp3_player.swf' :
    '/flash/regular_mp3_player.swf';
    $width = $compact ? '17' : '120';
    $autostart = $compact ? 'true' : 'false';
    $uri_for_player = $compact ? "' + uri + '" : $uri;
    $player = <<<QQQ
    <object width="{$width}" height="18"
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
    <param name="movie" value="{$player_path}" />
    <param name="bgcolor" value="#fff" />
    <param name="menu" value="false" />
    <param name="quality" value="medium" />
    <param name="flashvars"
    value="file={$uri_for_player}&autostart={$autostart}&shuffle=false&shownavigation=false&d isplayheight=0&showicons=false&autoscroll=true&repeat=list"
    />
    <embed src="{$player_path}" bgcolor="#ffffff"
    menu="false" quality="medium" type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    height="19" width="{$width}"
    flashvars="file={$uri_for_player}&autostart={$autostart}&shuffle=false&shownavigation=fal se&displayheight=0&showicons=false&autoscroll=true&repeat=list"
    />
    </object>
    QQQ;
    if ($compact) {
    $GLOBALS['player_counter'] =
    isset($GLOBALS['player_counter'])
    ? $GLOBALS['player_counter'] + 1
    : 0;
    $player = str_replace("\t", "", $player);
    $player = str_replace("\n", "", $player);
    if(!$GLOBALS['audio_functions_displayed']) {
    $GLOBALS['audio_functions_displayed'] = true;
    $functions = <<<QQQ
    <script type="text/javascript">
    function activateAudioPlayer(id, uri) {
    var player = '{$player}';
    var playerImg = '<img
    src="/ocpimages/compact_mp3_player.png" height="19"
    onclick=\'activateAudioPlayer($("..", this).attr("id"), $("..",
    this).attr("audio_uri"));\' />';
    $('.compactAudioPlayer').empty().append(playerImg);
    $('#' + id).empty().append(player);
    </script>
    QQQ;
    $player = "{$functions}<div class=\"compactAudioPlayer\"
    id=\"compactAudioPlayer{$GLOBALS['player_counter']}\"
    audio_uri=\"{$uri}\" style=\"height: 19px;\"><img
    src='/ocpimages/compact_mp3_player.png' height=\"19\"
    onclick='activateAudioPlayer($(\"..\", this).attr(\"id\"),
    $(\"..\", this).attr(\"audio_uri\"));'></div>";
    if ($return) {
    return $player;
    } else {
    print $player;
    }

  • Running a .swf (Flash file) in JMF

    Hi,
    In my application i have to run .swf(Flash file) file. I have to do it using Java API. Can i do it using JMF.If so, how to do it. Is there any other API available to run .swf files in java.
    Thank you in advance.

    Hi,
    I don't know as much as most users here, but I have put up
    about 18 different photo galleries on my DW site (almost ready to
    be published).
    I had to go into each code page where I wanted the gallery to
    appear and paste the swf etc code. And it had to be pasted into the
    code page not the design page.
    Now, when I click a link to the specific page and look at it
    in the design view, all I see is a large grey object. I can go into
    the page properties and look at it that way, but I usually just
    view it in my browzers. This Flash album is designed to work in the
    browzer, not actually on the DW design page unless I specifically
    click something.
    This may not help you, as I said, this is my first site and
    photo album dealings.
    Good Luck
    Rere

  • How could I change the heade in Flash Help

    Hi everybody,
    I am pretty new to this forum, that is I just began to probe
    with RH7, and it is going well so far, because of your help and the
    technical service's help from Adobe.
    I tried different layers to see which one is the most
    appropriate for my project, and the Flash is very interesting.
    However, I would like to put a logo or a text in the header
    (the coloured one), and I have no clue how, and what tool I should
    use.
    Is anybody familiar with Flash Help tweaking?
    Thank you,
    Bogdan

    I'm not familiar with the .fsw file type. Where are you
    finding that file? Is it named skin_background_tb?
    Try searching for skin_background_tb.fla in your project's
    source files. I think .fla is your best bet.
    It's been long enough since I've started a brand new
    FlashHelp project that I can't remember if the "FlashHelp Default"
    skin is included in the project automatically or if you have to
    generate the layout with a skin from the gallery before any Flash
    skin files appear in your source files. If you haven't done so
    already, open the FlashHelp layout dialog, select a skin, and
    generate the layout. Once you've done this, you should see a folder
    within the !SkinSubFolder! directory that has the name of the skin
    you selected. That skin folder should contain all the .fla and .swf
    files for the skin. Those .fla files are the ones you would edit to
    change the skin. (Whenever you edit a .fla file, you then export it
    as a .swf movie to that same skin folder, then generate the layout
    again to see the results.)

  • How to import a .swf flash movie

    I am trying to put this .swf flash file in keynote but it wont go in. I drag it in and a picture of a piece of film shows up...its not recognizing the format.
    What and how can i convert this .swf flash file to be compatible with keynote.
    Thanks

    Hello Tara,
    It's simple, I've developed an animation with Catalyst (took me 2 days...to learn a move forward) and i would like to use that animation inside a flash website. so i'm trying to load the Catalyst swf file animation inside my flash main movie without success !
    I"m tryin to do : loadMovie("catalyst_animation.swf", TargetA);  TargetA is an empty movie clip located a certain position.
    the loadMovie("catalyst_animation.swf", 0); is working but this is not what i want for a clear reason (loading inside and at a certain position).
    Thank you for our help.

  • XSLT mapping Help Required.

    XSLT mapping Help Required.
    Hi Experts,
    I am New to XSLT Mapping. I am practising the below Example:
    InputXML File:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    XSL StyleSheet File:
    <?xml version='1.0' encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/Gen"
    Xmlns:ns1=”http://XYZ.com/Test”>
    <xsl:template match="/">
    <ns1:MT_XSLT_Target>
    <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title>
    <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/>
    </Name>
    <Street> <xsl:value-of select="concat(concat(ns0:Mt_XSLT_Source/Person/Address/Houseno,' '),
    ns0:Mt_XSLT_Source/Person/Address/Street)"/> </Street>
    <City> <xsl:value-of select="ns0:Mt_XSLT_Source/Person/Address/City"/> </City>
    </ns1:MT_XSLT_Target>
    </xsl:template>
    </xsl:stylesheet>
    The Desired Output shuold be:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:MT_XSLT_Target xmlns:ns1="http://XYZ.com/Test">
    <Title>Male</Title>
    <Name>Anshul Chowdhary</Name>
    <Street>83/b 2nd Main</Street>
    <City>Mysore</City>
    </ns1:MT_XSLT_Target>
    I have refered the xsl in xml and i am getting the below Oupt in a Single line like this:
    Anshul Chowdhary Male 2nd Main 83/b Mysore
    I am Unable to display in Target XML Fomrat as shown above. Please check and do the needful.
    Regards,
    GIRIDHAR

    Hi,
    I have used below for testing.
    Input xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    xsl code:
    <?xml version='1.0' encoding="UTF-8"?> 
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/gen" 
        xmlns:ns1="http://XYZ.com/Test"> 
        <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> 
        <xsl:template match="/"> 
            <ns1:MT_XSLT_Target> 
                <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title> 
                <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/> 
                </Name> 
                <Street> <xsl:value-of select="concat(concat(/ns0:MT_XSLT_Source/Person/Address/Houseno,' '), 
                    /ns0:MT_XSLT_Source/Person/Address/Street)"/> </Street> 
                <City> <xsl:value-of select="/ns0:MT_XSLT_Source/Person/Address/City"/> </City> 
            </ns1:MT_XSLT_Target> 
        </xsl:template> 
    </xsl:stylesheet>
    For testing in PI ,change the extension from .txt to .xsl and zip it and upload into PI as an imported archive .
    Regards
    Venkat

  • Urgent help required: Query regarding LC Variables

    Hi All
    Sometime earlier I was working on a performance issue raised by a customer. It was shell script that was taking almost 8-9 hrs to complete. During my research I came across a fact that there were some variables which were not set, the LC variables were impacting the sort funnel operations because of which the script was taking a long time to execute.
    I asked them to export the following commands, after which the program went on smoothly and finished in a couple of mins:
    export LC_COLLATE=en_US.ISO8859-1
    export LC_MESSAGES=C
    export LC_MONETARY=en_US.ISO8859-1
    export LC_MONETARY=en_US.ISO8859-1
    export HZ=100
    export LC_CTYPE=en_US.ISO8859-1
    export LANG=en_US.UTF-8
    Later I did recover that setting the LC_COLLATE to C, is not helping and the program was again taking a lot of time. Few questions that I want to ask are:
    1. Can someone please tell me, what each of these variable mean and how these values make a difference.
    2. When I exported LC_COLLATE=en_US.ISO8859-1, it worked fine, but when i tried with the defalut value LC_COLLATE=C, then why the program didnt work.
    As this issue is still going on, hence I would request All to provide their valuable inputs and let me know as much as possible.
    Appreciate your help in this regard.
    Thanks
    Amit
    Hi All
    A new development in this regard. The customer has send us a screen shot in which they were trying to export the locale variable using the commands which I have pasted above. I can see in the screen shot that while exporting LC_COLLATE and LC_TYPE, they get a message that ""ksh: export: couldn't set locale correctly"".
    Request everyone to please give their inputs as it's a bit urgent.
    Thanks for all the help in advance.
    Thanks
    Amit
    Some help required please...
    Edited by: amitsinhaengg on Jul 22, 2009 2:03 AM
    Edited by: amitsinhaengg on Jul 22, 2009 2:06 AM

    LC_CTYPE
    Controls the behavior of character handling functions.
    LC_TIME
    Specifies date and time formats, including month names, days of the week, and common full and abbreviated representations.
    LC_MONETARY
    Specifies monetary formats, including the currency symbol for the locale, thousands separator, sign position, the number of fractional digits, and so forth.
    LC_NUMERIC
    Specifies the decimal delimiter (or radix character), the thousands separator, and the grouping.
    LC_COLLATE
    Specifies a collation order and regular expression definition for the locale.
    LC_MESSAGES
    Specifies the language in which the localized messages are written, and affirmative and negative responses of the locale (yes and no strings and expressions).
    You can use command
    # locale -k LC_CTYPE
    to see more detail about each type.

  • Help required - Sales order item is partially delivered but the item grayed

    I have a sales order 123 having say item10 with qty 1, item20 with qty 10 , item 30 qty 12
    Item 1 confirmed qty 1 and delivered qty is 1
    Item 2 confirmed qty 10 and delivered qty 10
    Item 3 confirmed qty 1 and delivered qty is 1
    Now the item3 still has open requirements of 11 to be delivered. But the item is GRAYED OUT already.
    even if I do ATP the qty is not confirming for the remaining 11 pieces.
    Why is that? How to make that item out from GRAY.
    How to confirm the remaining 11 qty for that item.
    Help required as early as possible.
    Appreciate ur help guys
    Radha

    hi Radha, how are you ?
         ---the partial deliveries in master data must have not been mentioned.
         ---the deliveries should be upto target quantity.
         ---check order type, item category and schedule line category.
         ---check unrestricted stock availability.
    thank you
    regards
    Khera.

  • Search Help with in a serach help required in SRM 4.0

    Hi,                                                     
    Requirement: Search help required for Product Category field in the Search help for Product(BBPH_PRODUCT) in SRM portal.
    This search help is used in Create shopping Cart transaction. The hyper link on Internal Goods/Services leads to the search help BBPH_PRODUCT. 
    My analysis:           
    The field Product Category (CATEGORY_ID) has search help(COM_CAT_HIER) attached to its data element. When I single test the search help BBPH_PRODUCT in SAP GUI,I can see the search help for field product category in the selection dialogue box. However the same does not appear on the corresponding screen in HTML.
    Please let me know whether I need to do some thing to make the search help appear on the HTML screen?
    With Regards,         
    Prakash Kamath

    Hi Prakash,
    I have the same problem but with another field. Unloading point. Could you please tell me how did you solve this problem with displaying F4 help on html/ SRM portal?
    Thank you very much.
    Best regards,
    Danijela ZIvanovic

  • Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying "attempt to access invalid address" then "application not respo

    Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying “attempt to access invalid address” then “application not responding” Suggestions how to access would be much appreciated. Tks. Stuart

    What is the size of your hard disk?  PSE 4 is a very old program and I suspect it is not able to access the entire hard disk on your machine.  Just a thought here.

  • Help require with installing Adobe Acrobat onto my Macbook Pro Retina.

    Help require with installing Adobe Acrobat onto my Macbook Pro Retina.
    I have successfully installed all of my creative cloud apps with the exception being acrobat.
    I cannot print from Indesign to PDF.
    I have unistalled, reinstalled and still no Adobe Acrobat.
    I now have to go back to Windows 8 and create the PDF's there.
    Any one know how to get around this issue?
    Thanks in advance
    Kelvin

    OSX has effectively killed the ability to print to pdf, (print to pdf eliminates most of the "Rich features" of current pdf).
    Export from InDesign, always, excpet for the 1% of the time where you know why print to pdf would produce a better result.

  • All plugins uptodate but on upload file get "USING one of the supported browser with latest Adobe Flash is required to experience enhanced file upload features

    I am freelancer. When I tried to upload files on elance it give following error and disable the upload button:using one of the supported browser with latest Adobe flash is required to experience enhanced file upload features.
    All plugins are up to date. Flash version 11.7 installed.

    I assume Firefox 19 worked fine on the site?
    Some sites may be mistakenly identifying Firefox 20 as Firefox 2, which is a very old version they probably no longer support. As a test, you could "lie" to the site about your Firefox version and see whether that little deception works.
    This take a minute to set up. Here's how:
    (1) Select and copy the following preference name to the clipboard:
    general.useragent.override.elance''.''com
    (2) In a new tab or window, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (3) In the filter box, type '''override''' and pause while the list is filtered
    (4) Make sure '''general.useragent.site_specific_overrides''' is set to its default value of true (or right-click and choose Reset if it is not).
    (5) Right-click anywhere in the preference list area and choose
    New > String
    then paste the preference name you copied. Click OK and enter TEMP or asdf or any text as a temporary placeholder. You should see the preference added in bold. Leave about:config open and switch back to this tab.
    (6) Select and copy the following useragent string to the clipboard ''(it's all one line)'':
    Mozilla/5.0 (Windows NT 6.1; rv:19.0) Gecko/20100101 Firefox/19.0
    (That's Firefox 19 on Windows 7 32-bit)
    (7) In about:config, double-click '''general.useragent.override.elance''.''com''' and paste to replace the temporary text with the new useragent string. Click OK, you're done here.
    Now try reloading a page where you need to upload (use Ctrl+Shift+r) and test that function again. Any change?

Maybe you are looking for

  • Using iPod as backup?

    I just recently built a new computer, using the same hard drive i had but reformatting it with all the new components. I backed up all my files on the old version of the hdd, and i thought of using my iPod nano as a backup for all my music files, con

  • Managed Metadata Fields not showing up in preview mode

    0down votefavorite In our SharePoint 2013 Publishing page, managed metadata fields doesn't show in preview, they show up only in edit mode or after we publish page. Is this bug? Thanks in advance.

  • "Save as" misses the point

    Hi, the Save as- function is back which makes me quite happy. But after using it the first time with preview, I am greatly disappointed. It doesn't work the way it previously did and should work. I cropped several images and hat to manually recover a

  • I want to know the coordinates of the mouse

    I want to know the coordinates of the mouse when the mouse is outside my application?

  • Data DVD compatability issues between PC and Mac

    I own a macbook g4 12" 1.5ghz and have recently created over 30 data file based dvds using disk utility and dvd-r's speeds 1-16 and 1-8 phillips brand. When I put these dvd's in a pc the drives do not recognize the dvd's or anything being in the driv