Scrolling Logos Horizontally

I'm looking to find a tutorial and some information about
setting up a small flash piece for a website that, when loaded,
will be able to display x-number of logos that are slowly moving
from top to bottom in a loop. When the cursor goes over that area
it will either move up or down, depending on the location. And
obviously, the logos can be clicked for entrance into a different
page within the site. I'm a basic flash person (mainly XHTML/CSS
developer) with limited scripting knowledge which is why (a) I came
here and (b) already searched the web for similar tutorials, but am
only finding "text scrolling" applications.
Please advise!

Hi
If you know any Programming language(C/C++/JAVA/...) Handling
flash will be little bit easy.
any how.
to attach the logos you have to use attach movie.
Simple we can use that functionality as follows.
First Import or create three logos into flash.
convert it into movieclip.
now delete that movieClip from stage.
open library. select a movieclip and rightclick on it, now
give linckage name to the logo(repeat this steps untill the end of
logo). This linckage name will be stored into an array.
var logoArray:Array = new
Array("easports_mc","macromedia_mc","adobe_mc");
//above array is having linckage names of movieclip.
for(var i=0; i<logoArray.length;i++){
var attachedMc = this.attachMovie(logoArray
,"logo"+i,this.getNextHighestDepth());
attachedMc._x = 10;
if(i==0){
attachedMc._y = 10;
}else{
attachedMc._y = eval("logo"+(i-1))._y +
eval("logo"+(i-1))._height;
If you would like to load the logo from external source you
have to use loadclip instead of attachmovie

Similar Messages

  • How do I stop needing to scroll both horizontal and vertical in my folders to see all of the content.

    How do I stop needing to scroll both horizontal and vertical in my folders to see all of the content.

    There is no cancel button.
    I don't see a download all button that will download everything from iCloud anyway. The download all button that I see refers only to the particular artist or album that you select from the left had side. I see no download all button for TV Shows or Movies.

  • Designing scrolling logos w/independent links

    I need help figuring out how to design the best way (w/in Muse) to have a set of scrolling logos that are controlled with one set of next/prev arrows and each logo has a different link associated to it, taking the user to a different website. 
    Example: home
    Thanks for everyone's help.
    -Jack

    Anyone have an idea on how to make this work?
    -Jack

  • Scrolling Text horizontally (Ticker)

    Hello, I would like to develop a scrolling ticker which scrolls text horizontally from right to left. I also want it to be scrollable (i.e. while the text is scrolling I would like to be able to scroll to the beginning or end of the scrolling text using the horizontal scrollbar, to view the history of trades etc.)
    The scrolling text could be up to 6 lines each like this
    Coffee.......Coffee...........Sugar.........<<<<More Scrolling<<<<
    JAN04........JAN04............SEP04.........<<<<More Scrolling<<<<
    AA...........RFQ..............AA............<<<<More Scrolling<<<<
    30...........50...............100...........<<<<More Scrolling<<<<
    444..........222..............90............<<<<More Scrolling<<<<
    10:00:55.....10:05:00.........10:10:03......<<<<More Scrolling<<<<
    ----------->>>ScrollBar Here<<<-----------------------------------My question is does anyone know what would be the best way to do this? Should I use java.awt.Canvas or is there a swing Class that I can use.
    Thanks, any help would be much appreciated

    Thanks very much dchsw! This will definetley point me in the right direction.
    Here's your 5 duke dollars!
    Phil
    A JTable with a a custom model would probably be best,
    but take a look at this using a JScrollPane over a
    JPanel that JLabels get added to every time a new
    "tick" comes in.
    Obviously there are many problems with using this in
    the real world, but it may give you some ideas.
    Enjoy!
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import java.util.*;
    import javax.swing.*;
    public class Pharron1
         static class ApplicationPanel
              extends JPanel
              private ScrollingTicker mTicker;
              public ApplicationPanel()
                   mTicker= new ScrollingTicker();
                   setLayout(new BorderLayout());
                   add(mTicker, BorderLayout.CENTER);
    final Runnable task= new Runnable() { public void
    id run() { append(); } };
                   new Thread() {
                        public void run() {
                             while (true) {
    try {
    try {
    sleep((long)((Math.max(0.5,Math.random()*2.0))*1000.0))
                                  catch (InterruptedException e) {}
                                  SwingUtilities.invokeLater(task);
                   }.start();
                   append();
                   append();
                   append();
                   append();
                   append();
    private SimpleDateFormat mFormat= new
    w SimpleDateFormat("HH:mm:ss");
              public void append()
                   mTicker.append(
                        "<html>Coffee<br>" +
                        "<font color=\"0000ff\">Jan04</font><br>" +
                        "<font color=\"ff0000\">RFQ</font><br>" +
                        (int)(Math.random()*50.0) +"<br>222<br>" +
                        "<font color=\"ffff99\">" +
                        mFormat.format(new Date()) +
                        "</font></html>");
         static class ScrollingTicker
              extends JPanel
              private JPanel mPanel;
              private JScrollPane mPane;
              public ScrollingTicker()
                   mPanel= new JPanel();
                   mPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
                   mPane= new JScrollPane(mPanel);
                   mPane.setVerticalScrollBarPolicy(
                        JScrollPane.VERTICAL_SCROLLBAR_NEVER);
                   mPane.setHorizontalScrollBarPolicy(
                        JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
                   setLayout(new BorderLayout());
                   add(mPane);
              public void append(String str)
                   mPanel.add(new JLabel(str));
                   mPanel.getLayout().layoutContainer(mPanel);
                   mPane.getViewport().setViewSize(mPanel.getPreferredS
    ze());
                   mPane.getHorizontalScrollBar().setValue(
                        mPane.getHorizontalScrollBar().getMaximum());
         public static void main(String[] argv)
              JFrame frame= new JFrame("Scrolling Ticker");
              frame.getContentPane().add(new ApplicationPanel());
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setResizable(false);
              frame.setVisible(true);

  • FireFox scroll bar horizontally

    Hi people,
    I have an problem. The scroll bar horizontally appaer in the FireFox browser and is not neccesary!!! (This doen't happened in IE)
    I have an ALV in the windows and the ALV has 20 columns and an scroll bar. Then, you always can see (fix)10 columns and for the others you must use the scroll bar on the alv.
    Now the better situtation: Again, always show 10 columns:
    - If I set 29 colums in the alv -> the scroll bar in the browser don't appear (OK)
    - If I set 30 colums in the alv -> the scroll bar appear (KO)
    Can somebody help me??
    Thanks!
    Rgds
    Micaela

    Try to disable hardware acceleration.
    *Firefox > Preferences > Advanced > General > Browsing: "Use hardware acceleration when available"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Vertical Scrolling and Horizontal Wrapping in a JEditorPane

    Hey guys,
    Some of you may recall my [post |http://forums.sun.com/thread.jspa?threadID=5418688] from a couple weeks back. In it, I learned how to force (or appear to force) the text of a JEditorPane to grow from the bottom-up instead of top-down (picture the difference between how a chat window grows to how a word document grows). The solution (which solves my original problem perfectly) involves simply placing the JEditorPane into the South region of a JPanel.
    That was all fine and dandy, until I tried putting long lines of text into the JEditorPane. It scrolled vertically when it should have, but the text simply ran off the right side of the JEditorPane instead of wrapping (or showing a horizontal scrollbar).
    After a gross amount of googling, I finally came across this old [post |http://forums.sun.com/thread.jspa?threadID=5318664] that seems to be related to my problem here. It hinted that I should set the width of the JPanel to match the width of the JScrollPane's Viewport. While that does indeed fix the problem with horizontal wrapping, it now creates a problem with the vertical scrolling (which works fine without the fix for horizontal wrapping)!
    I've tried setting the preferred height of the JPanel to just about everything I can think of: the height of the viewport, extremely large numbers, negative numbers, zero, itself, the height of the JEditorPane. But they all do the same thing: no vertical scrollbar ever pops up, even when the text is obviously too long to fit in the window.
    Here's an SSCCE demonstrating what I'm talking about:
    import javax.swing.*;
    import java.awt.*;
    public class EditorPaneTest {
        public EditorPaneTest() {
             JFrame frame = new JFrame("EditorPane Test");
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             JEditorPane textComponent = new JEditorPane();
             textComponent.setContentType("text/html");
             String text =
                  "This sentence should wrap and not cause the horiztonal scroll bar to display.<br/>"
                  + "<br/>This<br/>sentence<br/>should<br/>cause<br/>"
                  + "the<br/>vertical<br/>scroll<br/>bar<br/>to<br/>display.<br/>";
             textComponent.setText(text);
             JPanel panel = new JPanel(new BorderLayout());
             //the purpose of putting the JEditorPane in a JPanel
             //is to force it to the bottom with BorderLayout
             panel.add(textComponent, BorderLayout.SOUTH);
             JScrollPane scrollPane = new JScrollPane(panel, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
             //this line enables wrapping
             //but disables vertical scrolling
             //(comment it out to switch)
             panel.setPreferredSize(new Dimension(scrollPane.getViewport().getWidth(), scrollPane.getViewport().getHeight()));
             frame.add(scrollPane);
             frame.setSize(100, 200);
             frame.setVisible(true);
        public static void main(String[] args) {
            new EditorPaneTest();
    }As always, any pointers / suggestions / criticisms you can give me are greatly appreciated.
    Thanks again,
    Kevin

    camickr wrote:
    You need create a custom panel that implements the Scrollable interface. The key method to override to give you the behaviour you desire is the getScrollTracksViewportWidth() to return "true". This effectively fixes the width of the JEditorPane to the width of the viewport to wrapping is done as expected.That does handle the wrapping and scrolling, but it breaks the original problem: keeping a JEditorPane at the bottom of a JPanel. Using the ScrollablePanel you posted, the JEditorPane now stays at the top of the Panel instead of growing from the bottom.
    To see what I'm talking about, check out this code (the only difference between this and the previous code is the addition of your suggestion):
    import javax.swing.*;
    import java.awt.*;
    public class EditorPaneTest {
        public EditorPaneTest() {
             JFrame frame = new JFrame("EditorPane Test");
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             JEditorPane textComponent = new JEditorPane();
             textComponent.setContentType("text/html");
             String text =
                  "This sentence should wrap and not cause the horiztonal scroll bar to display.<br/>"
                  + "<br/>This<br/>sentence<br/>should<br/>cause<br/>"
                  + "the<br/>vertical<br/>scroll<br/>bar<br/>to<br/>display.<br/>";
             textComponent.setText(text);
             ScrollablePanel panel = new ScrollablePanel();
             panel.setLayout(new BorderLayout());
             //the purpose of putting the JEditorPane in a JPanel
             //is to force it to the bottom with BorderLayout
             panel.add(textComponent, BorderLayout.SOUTH);
             JScrollPane scrollPane = new JScrollPane(panel, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
             //this line enables wrapping
             //but disables vertical scrolling
             //(comment it out to switch)
            //panel.setPreferredSize(new Dimension(scrollPane.getViewport().getWidth(), scrollPane.getViewport().getHeight()));
             frame.add(scrollPane);
             frame.setSize(100, 200);
             frame.setVisible(true);
        public static void main(String[] args) {
            new EditorPaneTest();
         public class ScrollablePanel extends JPanel
              implements Scrollable
              public Dimension getPreferredScrollableViewportSize()
                   return getPreferredSize();
              public int getScrollableUnitIncrement(
                   Rectangle visibleRect, int orientation, int direction)
                   return 20;
              public int getScrollableBlockIncrement(
                   Rectangle visibleRect, int orientation, int direction)
                   return 60;
              public boolean getScrollableTracksViewportWidth()
                   return true;
              public boolean getScrollableTracksViewportHeight()
                   return false;
    }Resize the window to make it taller. The text should stay at the bottom of the window, but now it stays at the top. I tried using a BoxLayout on the ScrollablePanel instead, and adding a Box.createGlue( ) before adding the JEditorPane. But that didn't change anything.

  • HELP: Horizontal menu bar scrolls page horizontally

    Hi experts out there,
    this is my first attempt in spry menu bars,
    and all works fine but ...
    in the following page if you click item 3.1 and move the mouse out to the side all is fine
    but if you move out down into item 3.2 - then the whole screen is scrolled to align item 3 left in screen.
    http://www.yonius.de/menu-and-data-frame-test.html
    I debugged it to some degree (starting js) and discovered a lot of show / hide submenu calls which do not really seem to make sense.
    I already downloaded  SpryMenuBar-fixed.js   from this site, but that doesn't help.
    Problem seems to be around leaving item 3.1 and entering 3.2 where I do not yet understand the complete logic of the code.
    I would also be happy if the menu just disappeared after the click. but there is no click related code in the script
    that I could have modified ... and my JS skills are still beginner ...
    I am using an Iframe here to display internal and external links driven by the menu ...
    btw. is it true - there is no spry update / fix since 2008  ???
    not even a RELEASED version of 1.6.1 ??
    feels strange to depend on something 'dead'
    thanks a lot for your help before I give up and look for s.h. else than spry menu ...
    MJB Germany

    addition:
    problem appears
    in IE8 and Firefox 3.5
    sometines ? and with a visible flicker in Opera 10.6
    but NOT in   Chrome

  • Hi ... in forms 6i  can i make the mouse scroll verticaly & horizontly??

    when i navigate the form in runtime ,, ca i make the mouse scroll the page instead of pushing the left button on the scroll bar ??
    can anyone help?
    thanks in advance?

    thank u for your answer,
    may i ask u ,, can i found this option in 9i or 10g??
    thanks in advance
    bye

  • Horizontal scroll bar problem in Portal????

    Hi Guys,
    I am facing some problem when i open any thread. Horizontal scrollong bar is coming at the end of the thread.
    eg: If i have some text in the thread which is more than width of the screen and has some 10 replies to that thread, Then i should be able to scrool at that position itself. But now i have to scroll down till end of all the replies and then i have to scroll the horizontal bar to right/left and scroll up to particular reply to see what is there.
    Is there any enhancement going on in portal or it is specific to my system? Please do let me know.
    Thanks,
    Vinod.

    I too am facing this problem with the horizontal scroll bar. 
    There are many other bugs, but I am reluctant to spend my time reporting them as last time I reported a problem here, I got a rude response.
    Al Lal

  • Horizontal scrolling with mouse wheel?

    I have built a website for a client that scrolls only horizontally. Is it possible to scroll with the mouse wheel horizontally?
    Is there certain HTML I need to add?
    Thank you

    Hi,
    There is no out of the box solution to force horizontal scrolling with mouse wheel. However, you can add your own code to your Muse site after exporting it. These docs should be helpful :
    http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/
    http://stackoverflow.com/questions/2346958/how-to-do-a-horizontal-scroll-on-mouse-wheel-sc roll
    Regards,
    Aish

  • Horizontal Scrolling Menu System

    Hi,
    Can someone please let me know if the following scrolling of horizontal menus is possible within ApEx - pls see site:
    http://www.panic.com/coda/
    I am referring to the menu system where it has the following tabs together with the left and right arrows:
    Sites | Files | Editor etc...
    If the answer is yes, can anyone please provide some insight as to how it might be done.
    Thanks.
    Tony.

    Well, if you float your mouse over the arrows on the left/right you'll see that it's calling a javascript. They're actually loading all those sections into the original page call, each wrapped in a [div] tag and then their javascript "scrolls" through the sections dependent on which menu/arrow action has been clicked.
    The answers are actually all there on that page. Once you figure out how it works (by reviewing the javacripts and HTML) you would need to create ApEx templates to make it all work.
    Earl

  • Horizontal scrolling use MOUSE_MOVE event problem

    Hi, I have a a thumbnail scroller that scrolls images horizontally and inverted when I move the mouse.
    It works fine on its own, and is giving me the results I want, but whenever I put it in my project, it won't scroll properly.
    Like, the scrolling is the same, but it doesnt just scroll the thumbnails anymore, it scrolls everything. The background image, page title, etc.
    I'm sure I did something wrong, because I think this his been implented before with no problems, any ideas?
    P.S  When I put the scroller on the main timeline, this problem doesn't happen. It only occurs when I put it within a movieclip.
    In the main timeline i have a movieclip named mainContainer.
    In the main Container movieclip, frame 1, this the code.
    var panelContainer:Sprite = new Sprite;
    panelContainer.x = 1500;
    addChild(panelContainer);
    It moves the panelContainer just fine, but it also moves images and text from the main timeline as well.

    Sorry, can't believe i forgot that...
    addEventListener(MouseEvent.MOUSE_MOVE, onMove);
    function onMove(evt:MouseEvent):void{
    TweenLite.to(panelContainer, 0.3, { x:-(stage.mouseX/980)*panelContainer.width+2000});

  • JTABLE - horizontal scrolling only for some columns

    Hi all,
    In my JTABLE I have to scroll the horizontal scrollbar only from column 5 to the last, the columns 0 - 4 should be fixed ! Is this possible ?
    Thanks in advance,
    Arpana

    Please see
    http://www.senun.com/Left/Programming/Java_old/Examples_swing/JTableExamples1.html
    http://www.senun.com/Left/Programming/Java_old/Examples_swing/src/examples/FixedColumnExample.java

  • How can I scroll horizontally?

    It looks like it has been since 2003 since this was asked... I have LabView 2012, Service Pack 1, and am using Windows 7.
    I cannot figure out what the shortcut to scroll horizontally is - I have tried every combination of Alt, control, shift, etc with the scroll wheel on the mouse and cannot figure it out.
    Advice would be greatly appreciated!

    Put your mouse over the horizontal scroll bar and you can then use the mouse wheel to scroll horizontally.
    Edit:Here are a couple of posts in the Idea Exchange on the issue.
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Horizontal-Scroll-Hotkey/idi-p/917715
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Shift-Scroll-for-horizontal-scrolling-of-front-panel-a...
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Locking the first column in advanced data grid on horizontal scrolling

    Hi All,
    My requirement is to freeze or lock the first column in the advanceddatagrid from scrolling on horizontal scroll event.
    The column should always remain in the left hand side of the grid.
    I tried with lockedColumnCount property of the advanced grid. But it is not working.
    Could anyone help me please with code examples

    I am able to do the above by using the method which passes
    the sort information to data provider. But now the problem I am
    facing is I cannot use event.preventDefault(); along with that
    method. If I use event.preventDefault(); then it does not show the
    descending arrow on the column, nor does it sort on multiple
    columns.
    But if I do not use event.preventDefault(); then the problem
    I am getting is it remembers the previous sort order for a
    particular column. eg. If I sorted on col A (desc)+colB and now I
    sort on colC. Again if I click on col A, the data provider sorts on
    colA ascending shows it and then the grid refreshes sorting on col
    A but in descending order.
    Does somebody know how to get around this problem?

Maybe you are looking for

  • User exit(very very urgent)

    hello below is my coding........ the transaction is IW22 and the the code would be triggered when the notification complete button is checked. when the first case gets executed. i will get a pop-up.when i press continue the required operation is been

  • G/L Aaccount posting

    The present SAP R/3 system (FI/CO Component) has a Top Down approach, and generates great reports with the given data. The main emphasis of SAP R/3 ERP System is on report generation & controlling. At the time of posting a document Tcode F-02, Transa

  • Write Ones Test Every where

    I am totally fed up with applet. It is behaving differently in different browsers. My problem is with applet servlet communication. the following code is working with all 98/95/NT and some windows professional machines. But it is not work in most of

  • Question about Abstract Classes and Class Inheritance

    The semester is winding down, and the assignments are getting more complicated.... Prof has given us a project involving both an interface and an abstract class. There's a class Person, then an abstract class Employee that extends Person, and two typ

  • Task Controls in Worklist

    Hi all, I have used the Worklist component in my jspx page, and am able to view the task (created through my Human Task in BPEL) in the page. Now, i want some control buttons in my jspx page where in i can either accept or reject the task. How can i