from vertical scrolling of the buttons and NO mouse

I have 5 items, mainly the rectangles with different colors. What I want to do is roll of particular color based on the action of the buttons. I placed 5 buttons above the first rectangle. Based on the action of the button, it must scroll to a particular color and 5 buttons should stay in the same place.

I created the layout on the edge of what I want to do. I don't want scroll bars so I then hid. And I don't want to achieve this by using scroll mouse, but with buttons. Using the scroll buttons.

Download the example:

http://www.4shared.com/zip/RTTSNCrjce/scrolling.html

@heathroweexample is closer to what I want to achieve. It has different menu items on each rectangle. I tried to do but was unable to get things to work.

EDIT: If I create a Web site in Adobe Muse using anchors and add actions on the buttons to switch to this anchor, I want o something similar to Adobe Edge. I almost did the same thing with Muse, unfortunately there no sensitive support, so I'm doing it on board

Post edited by: alexmathayes

Super

Just for 'nest' make sure / of group items that I did with my sample.

Example, I put all the menu items in a parent, called "topbar" element

Similarly for elements that should just below in the 'brown' area, nest the respective elements. Similarly for the other 'blocks '.

Darrell.

Tags: Edge Animate

Similar Questions

  • I see that google search results, scroll to the bottom and they disappear. Why?

    All of a sudden when I use Firefox, I get a list of Google search results, scroll to the bottom and poof I see only a blank page. What is going on?

    Hello jpachner,

    This happens only in Google or you have noticed other web pages? Most of these issues could be due to some changes in configuration or plugins.

    Try Firefox Safe mode to see if the problem goes away. Firefox Safe mode is a troubleshooting mode that temporarily disables hardware acceleration, restores some settings and disables add-ons (extensions and themes).

    If Firefox is open, you can restart Firefox Safe mode in the Help menu:

    • In Firefox 29,0 and above, click on the menu button

      click Help

      then select restart with disabled modules.

    If Firefox is not running, you can start Firefox in Mode safe mode as follows:

    • On Mac: Hold the option key during the startup of Firefox.

    When the Firefox Safe Mode window appears, select "start mode safe."

    If the problem is not present in Firefox Safe Mode, your problem is probably caused by an extension, theme or hardware acceleration. Please follow the steps described in the section Troubleshooting extensions, themes and problems of hardware acceleration to resolve common Firefox problems to find the cause.

    To exit safe mode of Firefox, exit Firefox (not just close the window) and wait a few seconds before opening Firefox for normal use again.

    When find you what is causing your problems, please let us know. This might help others with the same problem.

  • Re: Satellite A665 - 16K: touch the buttons and the question of the FN functions

    Hello

    I have a problem with the Satellite A665 - 16 k: press the buttons and FN functions. When I install pvat they stop working, but when I uninstall the pvat only some of them work.

    How to fix? Model mu has a keyboard backlight and mine has a problem?

    > When I install pvat they stop working, but when I uninstall the pvat only some of them work.
    The current situation of the article, but I would like to know what you've done in the past. As far as I know, and my own experience, FN keys can not stop working without any reason.
    Are you using the original OS from Toshiba that was preinstalled on your laptop (WIN7 64 BIT HOME PREMIUM)?

    Usually after installing fresh PVAT everything should work again. Akuma wrote install the version of the TOSHIBA Flash Cards 1.63.0.6C support utility but do it before installing PVAT.
    > Model mu has a keyboard backlight and mine has a problem?
    I m really confused that you don't know if your laptop has this keyboard or not. Have you checked laptop specification before you bought it?
    Please read the manuals for the user's document. You will find all the info on your laptop, on the use of hardware and software. Somehow, I think you don t know what you have before you.

    Anyway, the control button Z as akuma wrote. You can also change the settings of the keyboard backlight.
    Open Toshiba Assist > optimize > HWSetup. You can find it here.

  • When firefox is opened the page scrolls to the top and I lost the menu bar

    When I open firefox the page scrolls to the top and I can see no longer the menu bar. Somehow, I think I clicked on 'white page' and now I can't view the entire page.

    Make sure that you run not Firefox mode full screen (press F11 to toggle).

  • I tried many combinations of the different pc in order to transfer files from one pc to the other and only max speed I have is from 4 to 10 Mbps.

    Hello

    I tried many combinations of the different pc in order to transfer files from one pc to the other and only max speed I have is from 4 to 10 Mbps.

    I use the switch/cat6 cables only the router is capable of 100 Mbps.

    Also, I connect the pc directly with cable and still the same speed.

    Win7 will get more than that and how?

    I read the other posts on this topic, but all patches are not applicable to me.

    I used various cables and switches and PCs in order to eliminate the possibility of a defective unit.

    Can you please help?

    Thank you

    Andreas

    Hello Andreas,

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.

    Forum TechNet Windows 7

    TechNet Windows Server Forum

    Hope this information helps.

  • Overview of the page Muse scrolls to the left and right

    Hello

    My design in Muse has a standard width, but when I saw in my browser, the page seems to be wider than my browser is, although there is no information.

    So, when I saw, I can scroll through as I want, but I can also scroll to the left and the right that my screen is small. I think that it must adapt to any screen size, but it doesn't. How can I change this?

    Hello

    Can you give the link to your site?   Since you said that the width of the page that you used is 960 (the width of page default min), I think there may be a small rectangle frame or empty text somewhere in your muse site that makes them increase the width of the page.

    Can you please check for this.

    Also please can you the size me of your screen?

    Kind regards

    Rohit Nair

  • Click the button and the mouse-(what I need in the text)

    Hi there, sorry to bother the guy again, but I came with a few new questions.

    I want to try with a button click on it has an image apears and disappears, but so far I've only had this piece of code

    botao.addEventListener(MouseEvent.CLICK, mudaimagem); 
    
    
    function mudaimagem (event:MouseEvent):void { 
              if (event.currentTarget.selected == true) {
                        imagem.visible = false;
              }
              else {
                        imagem.visible = true;
     } 
    } 
    
    

    But the thing is... When I press 'CTRL + ENTER', the image is still on the scene and when I click on the button there is no hide not the image.

    I wish I had help to see what I'm doing wrong... I have a deposit that 'If (event.currentTarget.selected is true)"is the wrong thing... but I don't know".

    And also if it is a way to redo the mouse over the button and image apears her disappear when the mouse is not over, I would like to know

    Thanks for the patince and questions of NOOB that I do.

    Cordially ASilva

    All you need to make the image disappear and appear would be...

    botao.addEventListener(MouseEvent.CLICK, mudaimagem);

    function mudaimagem (event:MouseEvent):void {
        imagem.visible = !imagem.visible;
    }

    If you want the first invisible object, you must assign them to be so.

    If this does not work what error message you're seeing?

    To do the same thing with a passage of the mouse you would increase the CLICK event to MOUSE_OVER and ROLL_OVER

  • Problems with the list of the button and drop-down list

    Hello

    I want my users to view revenue by country or city...

    to select country I use a "list of the button' and for the city I'm on a 'combo '... When my select user a country, the cities of filtered accordingly... everything works fine, except the following (it is in step 3):

    Step 1. When I select a country (let's say canada) report gives me an appropriate set of data...
    Step 2. When I filter in a city (let's say Toronto) everyting works very well according to the filter...
    Step 3. When I select another country (let's say the USA), I get no data displayed on my report but good news, it's that my drop down the city will update accordingly
    Step 4. to get the required data, I have to change city (let's say Chicago)...


    what I want is that when my user select another country (step 3)... then the report should display data for all cities and I used the logical

    Select rev table_country
    where
    (b.City =
    CASE
    When: P49_CITY = 'ALL' THEN b.City
    OTHERWISE: P49_CITY END)

    somehow, I want the P49_CITY to 'ALL' value when the user selects a country

    Please advice

    Hello

    This is the way of simply to do.

    1 make the country select list (P49_COUNTRY) a select list with submit
    2. create a conditional branch that dates back to the 49 Page
    3 do the conditional branch of type PL/SQL Expression. In the expression 1 enter

    :REQUEST = 'P49_COUNTRY';
    

    4. in the value of these items , enter P49_CITY and let these values in white.

    So when the country is changed the page will be submitted, take over the management of the status of the page and in the process put the city at null.

    Kind regards

  • My iMac cursor is stuck in the upper left corner of the login screen and I can't move it and now I can't use my iMac. What can I do? My iMac is a 27-inch 2014 release (one thin without retina display) and uses the keyboard and wireless mouse.

    My iMac cursor is stuck in the upper left corner of the login screen and I can't move it and now I can't use my iMac. What can I do? My iMac is a 27-inch 2014 release (one thin without retina display) and uses the keyboard and wireless mouse. It runs OSX Mountain Lion (not sure which version) and is a model 27 inches.

    have you tried to change the batteries in the mouse?

  • Microsoft Optical wheel mouse, I can click on the buttons on my mouse, but I can´t move my mouse

    I can click on the buttons on my mouse, but I can´t move my mouse... Sorry of the Germany my second languafe isn't perfect... ;-D

    Hi, of the solltest deine questions dann bitte besser im deutschen Forum stellen. Are the yesterday anyway in der falschen Kategorie.

    Das deutsche yesterday Windows Forum as ist: http://answers.microsoft.com/de-de/windows/forum?tab=unanswered

    The question belongs das Thema Hardware und Treiber.

    Differentiate der Schilderung ACE of the aber ein hardware problem, das yesterday info werden kann nicht. I nach Alter der Maus ist das ein Fall fur guarantee/Gewahrleistung oder own Austausch.

  • SideWinder X 8 right click the button and the scroll button no longer works

    the scroll button works more out of nowhere and shortly after also the button right of the mouse has stopped working, is in any way I could fix it? I tried to reinstall the software for this, after the scroll button does not, which did not help.

    Hello

    1. it works on another computer?

    I suggest you to follow the steps from the link below and check if it helps.

    Method 1:  Mouse, touchpad and keyboard under Windows problems: http://windows.microsoft.com/nl-BE/windows/help/mouse-touchpad-and-keyboard-problems-in-windows

    Method 2:  The problems with the mouse button or scroll the parameters

    http://support.Microsoft.com/kb/303091

    Hope this information is useful.

  • My screen has moved to the right. Unable to scroll to the top and bottom of the margin on the right side bar. What should I do?

    My screen has moved to the right. The scroll bar on the right side is more visible to use. What should I do?

    Hi roseann.loasby,

    As the display is shifted to the right the problem is more to do with your monitor than Windows. A monitor, it of like a TV and invokes hold vertical and horizontal button options to keep the image in place.

    There should be options on your monitor to make changes to the positioning vertical/hortizonal (in your horizontal case). Most monitors have an 'auto' option that automatically adjusts the diaply photo, so it is well positioned. It's nothing serious, however, you will need to check your user guide for the monitor to see what options you have to use the re - adjust the horizontal positioning. If there is a "menu" button on the front of your monitor try to press to view a display on your monitor. You can then either use the option 'auto' or else click the left/right arrows (usually on each side of the on-screen menu button) to adjust the menu and then the position.

    If you are not confident to do this, you ask someone with more knowledge to do it for you. By pressing the wrong button, you can make the screen more out of alignment, so be careful, as otherwise it will be a matter of trial and error until you have reset the monitor correctly.

    It is a fairly simple job to do, but because every monitor is different, it is difficult to write clear instructions because I could tell you to press a button and this button may not be here, then take a look at your user guide for the monitor first to familiarize yourself with the buttons are available.

    This forum post is my own opinion and does not necessarily reflect the opinion or the opinion of Microsoft, its employees or other MVPS.

    John Barnett MVP: Windows XP Expert associated with: Windows Desktop Experience: www.winuser.co.uk | vistasupport.mvps.org | xphelpandsupport.mvps.org | www.silversurfer-Guide.com

  • Horizontal AND vertical gliding between the articles and pages?

    Hello

    I was invited by my Creative Director to amend a portfolio of work. Currently I have a doc about InDesign several page that allows to drag horizontal, but with most of the thumbnails on the respective pages linking to the images full screen (using the buttons / navto: / /) etc. However, he wants to scroll horizontally between different clients and then vertically within the client to see the case studies of full screen. He wants to also (once in these case studies of fullscreen) power do rotate the iPad vertically and have written a summary on this relevant case study (ovbiously just in the direction of V)

    My questions are: A) is it possible to slide vertically and horizontally and B) how would I created pages? Obviously if I was in the case study customer 1 4 I would viwer swipe horizontally to go to the case study 2 customer 1 and so on. I guess

    If possible someone at - it pointers to tutorials online?

    Thank you man

    Steve

    This means that you have left this article on page 3 the last time you were

    read.

    You can reset the folio in a triple type the title of the folio in the

    title bar.

    Bob

  • Satellite Pro A200 - vertical scrolling on the touchpad doesn't work does not after update

    Hello

    My A200 told me that I needed to update the drivers for my touchpad. I did it and now I can't use the vertical scroll feature. I looked on the site Web of Synaptic and there is nothing there to help. I checked to see if I have the drivers updated and I do, and I've looked through the settings of the mouse and can't find anything that will help you.

    Can someone help me please?

    Thank you very much
    Ian

    Hi Ian

    Why you n t trying to roll back the BONE to this early time?
    I mean the point OS before you installed the touchpad driver

    Usually, this should help to recover the functions first touchpad.

    Best regards

  • using the key to toggle the button and retain a mechanical Action

    I'll put in place to control the race of a stepper motor and I have 2 buttons for jogging forward and backward to jogging. These buttons have the mouse down and mouse events sends commands to the motor controller. The mechanical action of the buttons are set to release the latch.

    I would also use the previous Page and Next Page on the keyboard to toggle these keys. But I would like the button to act in the same way that the mouse when the button is pressed and held the button remains pressed and released with the release of the key.

    However when I press on and press and hold the button continues to activate / deactivate. Is has something to do with the repeat button, but I don't know how to operate it. Any advice would be appreciated.

    I've attached an example of how I started. The mouse down press the reverse button opens a dialog box, but the key does not work and when the key is held down the button flashes. Page Up for forward and Down to the opposite Page.

    Concerning

    Terry

    Simply use another event and manages press button from the bottom to the top in the same way. The button using local variables while active, you can switch to event.

    I don't know why you use latch action. Why not with the button until this that released and value change events?

Maybe you are looking for

  • Randsomware

    Well guys. I was infected with randsomware, but what to do next. Do I trust these people with my credit card details in order to obtain the encryption key? I have all my files on a backup drive, but don't know how to remove the randsomeware. Remove i

  • Satellite Pro L10 SM Bus controller driver needed

    I'm missing a Base system device driver and a SM Bus Controller Driver please anyone could tell me where to find these drivers, I am running Windows XPThank you

  • Method to get the RTE version

    With the help of LW/CVI 2010 SP1. Is there a method to get the version of the RTE running? I used GetCVIVersion() to return the version of LabWindows/CVI run-time libraries, but which does not offer a clue as to the engine used. Anyone else need it?

  • My music files have changed in WMA format in Windows Media Player, and now my MP3 player won't play them.

    My music files have changed in wma format in windows media player, and now my mp3 player won't play them.  can anyone help please. original title: Media Player

  • Since firmware update problem

    Hi all Just got my rocket and had problems with the message "90 MB" free to build music db, even if there is loads of free space. So I downloaded the update which updated to v 01.01.22.. After that, the music player just constantly jumps on all music