Flash buttons with out state

Hi there,
I'm trying to build a navigation sysytem like this:
http://www.bisazza.it/eng/index.html
(the one running along the bottom of the page).
The best I can do is here, though its not working properly:
http://www.giraffeads.com/clients/nz/button_test_3.htm
The flash file is here:
http://www.giraffeads.com/clients/nz/working/navigation_280406.fla
I'm using the following action script:
on (rollOver) {
this.gotoAndPlay("mouseover");
on (rollOut) {
this.gotoAndPlay("mouseout");
on (release) {
getURL("
http://www.odysseyphotography.net");
..applied to an instance of the movie on the stage.
There are a couple of issues:
1) When you mouseover the button, the text moves downwards
but doesn't remain in that position (like:
http://www.bisazza.it/eng/index.html)
2) If you move the mouse away then back again the movie
restarts before finishing (resulting in jerky up and down movement)
3) You have to get the mouse exactly over the text for it to
work.. It'll be difficult to make it link to another page...
Any assistance or links to a tutorial would be much
appreciated!
Thanks
OP

add this to you movi clip
onClipEvent(enterFrame) {
if(this.hitTest(_root._xmouse,_root._ymouse))
this.nextFrame();
else this.prevFrame();
on (release) {
getURL("
http://www.hotmail.com");
AND remove the "mousout" all frames in the movie clip,
Add a invisible rectangle behind the text for area you want
to sence with mouse
you can do it by draw rectangle > color mixer > alpha
to 0%
Then it's work finly, still if u dont understnd send me ur
email and ill send the fla
sorry, my bad english :-)
Ayubowan!
Nalinda

Similar Messages

  • Flash buttons with mouseout state

    Hi there,
    I'm trying to build a navigation sysytem like this:
    http://www.bisazza.it/eng/index.html
    (the one running along the bottom of the page).
    The best I can do is here, though its not working properly:
    http://www.giraffeads.com/clients/nz/button_test_3.htm
    The flash file is here:
    http://www.giraffeads.com/clients/nz/working/navigation_280406.fla
    I'm using the following action script:
    on (rollOver) {
    this.gotoAndPlay("mouseover");
    on (rollOut) {
    this.gotoAndPlay("mouseout");
    on (release) {
    getURL("
    http://www.odysseyphotography.net");
    ..applied to an instance of the movie on the stage.
    There are a couple of issues:
    1) When you mouseover the button, the text moves downwards
    but doesn't remain in that position (like:
    http://www.bisazza.it/eng/index.html)
    2) If you move the mouse away then back again the movie
    restarts before finishing (resulting in jerky up and down movement)
    3) You have to get the mouse exactly over the text for it to
    work.. It'll be difficult to make it link to another page...
    Any assistance or links to a tutorial would be much
    appreciated!
    Thanks
    OP

    I'm glad you got it working! I was looking into it, and now I
    don't have to.
    Just a heads up though - some people don't like it when you
    post the same question in two different sections. They're funny
    about that. Problem is it pushes other legitimate questions down
    the list, as well as complicating any discussion that comes out of
    the question.
    Chances are nobody will say anything though, unless they
    spent a lot of time answering this one, then noticed that you
    already got an answer on the other one.

  • Edit-flash button grayed out

    Hey, I have Dreamweaver MX2004 and Flash MX2004 normally
    installed on my computer. Although my edit-flash button is grayed
    out when i'm in the properties panel of the .swf document (who i
    added to my document with Insert >> Media >> Flash)
    http://img524.imageshack.us/img524/8024/helplr4.jpg
    I searched alot for this, but it does not seem to happen to
    anyone. Can somebody help me? Thanks.

    No, PSE 6 and later never displays an icon for a sub-category.  If you accidentally created a sub-category where a leaf keyword tag will do, change the sub-category to a keyword tag by right-clicking it, and then you'll be able to assign an icon.  But if you change the keyword tag back to a sub-category, the icon will disappear. 
    None of that design seems very well thought out.

  • Scaling a button with rollover state (IDCS3)

    If you have a button with a rollover state and then scale it, only the currently visible state is scaled.
    Would you guys consider this a bug or intentional?
    Any hints on how I can scale all states without laboriously editing the content of every button state?
    Cheers, Graham.

    Graham,
    Nice follow up on this, but watch out!
    When you change that preference to "Adjust Scaling Percentage" anytime you scale text frames, you will create a situation where the point size changes but is displayed with the parenthetical amount.
    For instance, if you scale 12 point text down 50%, the point size for text will be displayed as 12(6)pt.
    Then if you want to change the text to 8 point, you would have to type in 16 points.
    Obviously with this simple example the numbers are easy to figure out, but with other amounts it can get very complicated.

  • Flash buttons with IE

    Microsoft Internet Explorer appears to have created a small
    issue for flash buttons. You have to click on it twice to get it to
    play. Does anyone out there know how to get around this
    issue?

    http://blog.deconcept.com/swfobject/
    Adobe site has another version of a fix
    "Bops_S" <[email protected]> wrote in
    message
    news:etci1i$7a9$[email protected]..
    > Hi folks. I built a website on my MAC using Dreamweaver
    MX-2004 and used
    > some
    > of the standard flash buttons for the menus. The site
    works great on my
    > MAC
    > using Safari and FireFox browsers but when I go to try
    the site from a
    > Windows
    > PC using IE 6/7, I have to double click the buttons for
    them to work. It
    > looks
    > like the first click selects the button and the second
    click will depress
    > the
    > button and take you to the relevant page. Here is the
    url if you want to
    > check
    > out what I'm talking about
    http://www.sequinda.com This has
    been driving
    > me
    > mad and I would really appreciate some help in sorting
    this out.
    >
    > thanks
    > Bops
    >

  • Flash button with dynamic text

    I'm trying to create a flash button so that it can toggle
    between "Sound On" and "Sound Off" but I feel like I'm doing
    something wrong and it errors out on me.
    I have a button on stage as, and in my up/over/down/hit in
    different colors I have a dynamic text field identified as
    sound_txt.
    Here's the script I have so far for my frame:
    stop();
    mutebtn.addEventListener(MouseEvent.CLICK,muteDo);
    function muteDo(event:MouseEvent) {
    if (mutebtn.sound_txt.text == "Sound Off") {
    mutebtn.sound_txt.text = "Sound On";
    } else {
    mutebtn.sound_txt.text = "Sound Off";
    and this is the error message I am getting:
    TypeError: Error #1010: A term is undefined and has no
    properties.
    at buttontst_fla::MainTimeline/muteDo()
    TypeError: Error #1010: A term is undefined and has no
    properties.
    at buttontst_fla::MainTimeline/muteDo()
    Can someboy please advise as to how I can get this to
    work?

    I tried bringing the textfield out of the button but while it
    worked when I pressed the button portion that is not under the
    text, it was the part of the text that got in the way from doing
    anything. I wonder where I can find an existing example that works
    the way I want it too so I can at least follow that example. I
    think I tried making the dynamic text a movie clip but was still
    getting similar errors.
    Edit: I at least got it to work by converting the button into
    a movie clip although I had also wanted it so that I could also
    change the foreground color of the dynamic text upon rollover,
    etc.

  • Link Flash buttons with typo3

    hi
    I have a problem. I want to link my flash menu with typo3 and
    I don't know what i should do.
    Please help he, I'm very desperate.
    Sincerely Mia

    typo3?
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Flash button with images

    hi,
    I want to create a flash button,& for the button
    different images should load for press & release events. also I
    want to reuse this button. Please can someone tell me how to do
    that

    you'll need to use server-side scripting to handle part of the file upload and the file name retrieval from the upload folder.  assigning the uploaded files names you'll do from flash.  you'll use another script to retrieve the file names and in flash load and display which ever subset you want.

  • [CS3] Flash buttons with fade effects.

    Well as the title says, i've got some buttons in Flash CS3,
    using AS 2 which when clicked changes the frame. The thing is that
    i want to add a fade effect to the text area AFTER the button was
    pressed. So for example:
    The user is reading the text, he presses one of the buttons
    (all of which change frames, in this case text) and the text fades
    away and the new text fades in.
    Well, i've designed the frames needed for this, so i've got
    10 frames before the frame the user will see for it to fade in and
    10 frames after it to fade out. What i havent figured out yet is
    how i'll make the script do that. I mean, i can make the script go
    forward one frame, starting the fade out effect, i can make it go
    to the frame i want but how will i do both.
    I've got 6 buttons and 6 corresponding texts.
    Does anyone have any ideas?
    Thank you in advance.
    P.S.: Any ideas welcome. I can change the frame layout.
    P.S.S.: Also forgot to mention that making layers for every
    combination is out of question....

    I've already had them placed each on their layer. I thought i
    might need mobility on the timeline.
    Let me see how much of this i understand...
    quote:
    which im assuming are MovieClip instances
    They're graphics but i can simply change them to be movie
    clips if it's the case.
    quote:
    do the same with your buttons on a seperate layer but you
    will only need one for them all
    I've lost you here....you're saying ill only need one AS
    reference?
    quote:
    for(var i=0; i<btns.length; i++) {
    Hmm... you're using the size of the array to set how many
    times the loop control will actually loop? Took me a bit to figure
    out what length an array could have
    quote:
    new Tween(current, '_alpha', Strong.easeOut, 100, 0, 10,
    false);
    new Tween(clips[this.id], '_alpha', Strong.easeOut, 0, 100,
    10, false);
    current = clips[this.id];
    //start the first clip transition 'in'
    current = clips[0];
    new Tween(clips[0], '_alpha', Strong.easeOut, 0, 100, 10,
    false);
    Ok i didnt get most of this but i'll have to check out the
    parameters for the Tween function.
    Actually i plan on going from a 50% alpha to a 100%, but
    that's just my choice.
    Thanks a lot and hope i dont become too annoying.
    P.S. I had a huge revelation at the end when i re-read the
    code and finally understood how this is going to work.

  • Is it possible to embed a flash movie with out a height setting

    Hi All,
    I am trying to embed a movie in a HTML page. The movie reads
    in some XML and then outputs it in a list, the list is usually
    between 100px and 400 px high. I need the movie to strech on the
    HTML page to whichever height it needs once load. Is this possible?
    if i place no dimension in the embed information it works, but the
    movie is not scaled correctly. Can anyone help me, this is wrecking
    my head!!!!
    Cheers,
    Len.

    lenford wrote:
    > Hi All,
    >
    > I am trying to embed a movie in a HTML page. The movie
    reads in some XML and
    > then outputs it in a list, the list is usually between
    100px and 400 px high. I
    > need the movie to strech on the HTML page to whichever
    height it needs once
    > load. Is this possible? if i place no dimension in the
    embed information it
    > works, but the movie is not scaled correctly. Can anyone
    help me, this is
    > wrecking my head!!!!
    You can;t scale movie at run time. You could set the movie to
    set 100% but
    make its background invisible using WMODE and instead of
    background place rectangle
    movie clips which would change size based on the xml input.
    It would be easy way to
    fake the functionality you looking for otherwise it's hard to
    get the XML info
    w/o opening flash, than pass that info and embed the flash
    with required size.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Flash buttons with action script working but I don't understand them enough to use

    My addy is www.abdezines.com firstly otherwise i will forget.
    Can anyone explain to me how my buttons work as I have pulled
    them apart many a time and can not get my ead around them to be
    able to re create in a similar idea. Someone built them for me
    previously but will no longer help when all I want to do is
    understand them so I can do them myself. I can change the wording
    when they are in my current website, the speed it moves and the
    same with the arrows but I cant see how to start it elsewhere
    despite all my digginh around in it.
    If someone can perhaps talk me through it, I have the files
    for it if wanted.
    Many thanks

    My msn addy is [email protected] if anyone can help
    me

  • DW MX Flash Button Upload

    Can someone help me upload my flash button correctly. I can
    not find the scripts folder. Thanks very much.
    Mike

    Flash buttons are not a good idea - those who don't have
    Flash installed, or
    those who need to use screen assistive devices, or those
    searchengine
    spiders that you want to see your links, will not be able to.
    > I have built this site outside of
    > the usual DW file structure because it just confused me,
    and I didn't have
    > time
    > to go thrugh the whole tutorial process. (Asking for
    trouble. Right.)
    Definitely. We can't help you unless you are willing to take
    the time to
    learn how to do things properly.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "lifecourse" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thank you. Well, first of all, I'm learning DW on the
    fly (Which, of
    > course,
    > means, I am asking for trouble.) so, there is a distinct
    possibility that
    > I
    > HAVE NO IDEA WHAT I'M DOING!
    >
    > Ahem. So, I have this page, and clicked on the drop down
    menu bar,
    > Insert/Media/Flash Button. The rest was pretty easy. I
    thougth I chose all
    > the
    > right options, tested it in the browser preview, and
    uploaded. Except,
    > that it
    > didn't upload to the web site. I didn't even think about
    a scripts folder
    > until
    > I saw it noted here in someone else's similar dilemma. I
    can't find that
    > either. Pat of the problem, perhaps, is that I have
    built this site
    > outside of
    > the usual DW file structure because it just confused me,
    and I didn't have
    > time
    > to go thrugh the whole tutorial process. (Asking for
    trouble. Right.)
    >
    > Anyway, if I need DW8 and/or Flash, I have those. I just
    installed trhem
    > yet,
    > 'cause I was afriad to get myself into even more trouble
    before
    > dealingwith
    > this. I didn't know I needed them. Otherwise, why woudl
    I have had the
    > option
    > to add the Flash button with DWMX. Shouldn't it have
    been grayed out on
    > the
    > menu option?
    >
    > I would greatly appreciate any help here. I'm in over my
    head with this
    > project.
    >
    >
    >

  • Frustrating flash buttons

    I've upgraded from GoLive and have installed flash
    buttons/text on 2 sites. I started working on a 3rd site and now
    every time I create a flash button/text I get the message :
    "invalid name". Usually the name is xxx.swf. Just when I was
    starting to like DreamWeaver.....arrrgh BTW I tried to post in the
    General Discussion but every variation of my "nickname" was
    supposedly taken--even when I just ran my finger across the
    keyboards as I did with this nickname. Thanks for any help.
    As a followup--I opened the index page from one of the other
    sites and created and saved a new flash button with no
    problem.

    > If that's the case why does Adobe promote using flash
    buttons and flash
    > text on
    > the Dreamweaver tutorial: Migrating from GoLive to
    DreamWeaver?
    It's a good question. Adobe is offbase with this promotion,
    but they are
    desparate to convince people that the migration is easy. It's
    not.
    Especially not if you don't have good facility with HTML and
    CSS. Garrick
    Chow should be ashamed of himself.
    I have seen that invalid name error alert mentioned by others
    from time to
    time, but I'm not sure what is triggering it. Being as how I
    wouldn't dream
    of using Flash Text or Flash Buttons, I can't really help
    you. But were you
    not using them at all, it goes without saying that you
    wouldn't have to
    crack this nut. Why are you using them?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "s;lsu[rtpoeiou [" <[email protected]> wrote
    in message
    news:[email protected]...
    > If that's the case why does Adobe promote using flash
    buttons and flash
    > text on
    > the Dreamweaver tutorial: Migrating from GoLive to
    DreamWeaver?
    > (
    http://www.adobe.com/designcenter/dreamweaver/articles/drwcs3_golivemigration.h
    > tml) In fact there are 2 separate chapters--one for
    Flash buttons and one
    > for
    > Flash text and the narrator, Garrick Chow,
    enthusiastically promotes
    > Dreamweaver's Flash button/text features and says "The
    good news is that
    > most
    > people have the Flash plug-in installed on their
    computer these days."
    > Whom am
    > I supposed to believe? Maybe Garrick Chow should add
    something at the end
    > of
    > the tutorial like, "Oh BTW we're dropping these features
    in the next
    > version."
    > Anyhow that is not my issue--the problem is the "invalid
    name" dialog that
    > I
    > get when creating a Flash button/text only in one site.
    I can create the
    > Flash
    > button/text with no problem in 2 other sites. In fact I
    can import them
    > and
    > install them in the problematic site. At any rate thanks
    for your input.
    >
    >
    quote:
    Originally posted by:
    Newsgroup User
    > If you want to use Flash for navigation, consider this -
    >
    > 1. Some people don't have Flash installed - what do they
    do? At the
    > least,
    > you will have to provide redundant, HTML-based
    navigation.
    > 2. Search engines may not parse Flash links - your site
    will not be
    > spidered by them
    > 3. Screen assistive devices don't parse Flash links -
    what will those
    > users
    > do?
    > 4. DW cannot maintain links within a Flash movie, so if
    you move or
    > rename
    > a linked file, your navigation will break - what will
    you do? You will
    > have
    > to remake those buttons.
    >
    > It's usually a very bad idea for these reasons - and for
    these reasons,
    > Adobe has removed Flash buttons and Flash text from the
    next version of
    > Dreamweaver.
    >
    > I strongly encourage you to select another method.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    >
    >

  • Flash Buttons use in a templates

    The last 6 hours have been very frustrating! I have created a
    .dwt file and I have used the Flash buttons provided on CS3 as
    links. Prior to saving as a template, the page worked fine when I
    was testing it in the browser, afer I saved as a template the flash
    links are no longer being displayed when I test it in the browser.
    Please some one tell me that you can help with this very dumb
    problem.
    Thanks in advance!

    If you want to use Flash for navigation, consider this -
    1. Some people don't have Flash installed - what do they do?
    2. Search engines don't parse Flash links - your site will
    not be spidered
    3. Screen assistive devices don't parse Flash links - what
    will those users
    do?
    4. DW cannot maintain links within a Flash movie, so if you
    move or rename
    a linked file, your navigation will break - what will you do?
    It's usually a very bad idea for these reasons...
    Combining Flash buttons with Templates *IS* going to be a
    very frustrating
    experience for you. The best thing you can do is to make sure
    when you
    insert the button you use a ROOT RELATIVE link to it. That
    way, the link
    will work from any page in the site without management.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "clubscene" <[email protected]> wrote in
    message
    news:f9uie4$2dm$[email protected]..
    > The last 6 hours have been very frustrating! I have
    created a .dwt file
    > and I
    > have used the Flash buttons provided on CS3 as links.
    Prior to saving as a
    > template, the page worked fine when I was testing it in
    the browser, afer
    > I
    > saved as a template the flash links are no longer being
    displayed when I
    > test
    > it in the browser. Please some one tell me that you can
    help with this
    > very
    > dumb problem.
    >
    > Thanks in advance!
    >

  • GetURL isn't working when flash button is embedded into HTML

    I'm making a basic HTML site with flash buttons that direct to hyperlinks.
    I've made a simple flash button with the code on the button actions as:
    on (release) {
            getURL("http://www.google.com","_blank");
    The button works great when I export it in Flash.
    When i embed into the HTML using dreamweaver and preview/upload the site.... the button is there but when clicked it doesn't direct to the hyperlink.
    ANy ideas? Thanks. Brendan.

    Use Flash to generate an html page and test that on the server.  If that works, then replace whatever Dreamweaver did with the Flash-made embedding code.  Beyond that, a link to the file on the server could shed some light.

Maybe you are looking for