Flash cs3: how to make moving/scrolling photo menu left and right?

http://media.moma.org/subsites/2008/miro/flashsite/index.html
- click continue, then relative size link
How can I do this with lash cs3: how to make moving/scrolling
photo menu left and right?
When you move left and right and paintings move. and when you
click on a painting, you see the the title and it links to another
page on the site.

scene_mc start at x = -550... x wide is 2164 px
now I have this and its working...
navL_mc.addEventListener(MouseEvent.MOUSE_OVER, navL_Over);
navL_mc.addEventListener(MouseEvent.MOUSE_OUT, navL_Out);
function navL_Over(e:MouseEvent){
          if(scena_mc.x == 0){
                              scena_mc.x == 0;
          else if(scena_mc.x <= -10){
                              scena_mc.x += 10;
                              navL_mc.addEventListener(Event.ENTER_FRAME, runL);
function runL(e:Event):void{
          if(scena_mc.x == 0){
                              scena_mc.x == 0;
          else if(scena_mc.x <= -10){
                              scena_mc.x += 10;
function navL_Out(e:MouseEvent){
          navL_mc.removeEventListener(Event.ENTER_FRAME, runL);
navR_mc.addEventListener(MouseEvent.MOUSE_OVER, navR_Over);
navR_mc.addEventListener(MouseEvent.MOUSE_OUT, navR_Out);
function navR_Over(e:MouseEvent){
          if(scena_mc.x == -1164){
                              scena_mc.x == -1164;
          else if(scena_mc.x >= -1154){
                              scena_mc.x -= 10;
                              navR_mc.addEventListener(Event.ENTER_FRAME, runR);
function runR(e:Event):void{
          if(scena_mc.x == -1164){
                              scena_mc.x == -1164;
          else if(scena_mc.x >= -1154){
                              scena_mc.x -= 10;
function navR_Out(e:MouseEvent){
          navR_mc.removeEventListener(Event.ENTER_FRAME, runR);

Similar Messages

  • How to make moving/scrolling photo menu?

    http://media.moma.org/subsites/2008/miro/flashsite/index.html
    How can I do this?
    when you move left and right and paintings move. and when you
    click on a painting, you see the the title and it links to another
    page on the site.

    ....I'm pretty sure google ads are flash files.
    What you can make with photoshop are GIFs, not flash files. GIFs aren't very professional, so I'd advise against it. Most sites use flash and css.
    Otherwise check out pfaffenbichler's link. If you need a simple moving object, instead of moving it every frame, I suggest just setting the start position and the end position, then tween the frames in-between. There are tons of GIF tutorials out there.

  • How to make track work in both left and right speaker?

    i have an audio track with 2 speakers that each had a lav mic on them.  one was recorded into left channel and the other the right channel.  so of course when i play back each of their voices only come out of one speaker.  pretty new to audition so how do i fix the track so that they each come out of both speakers?  TIA

    I have to say that, although not uncommon, for TV it depends quite a lot on how things are shot.  In a standard interview situation where you might have a 2-shot to establish (with a definite left and right position) then a close up of the interviewee then a cutaway of the reporter and so on, panning can become very confusing and it tends to be better to just put everything in the centre.
    Radio is easier because you don't have to be aware of what pictures are showing--but, even there care needs to be taken especially since, as Steve says, a lot of listening is on ear buds or headphones which accentuate any panning.  Even in radio, though, choices have to be careful...for example, let's say the host starts with an interview where he's panned slightly right and the guest slightly left.  So far, so good.  However, then the next two stories are just studio reads...does the host stay panned slightly right for consistency or does he move to the centre possibly causing confusion? 
    I'm not saying never give positioning clues in a radio or TV mix, just that you always have to be aware of the bigger picture.

  • How to make mono recording play both left and right channels

    I have an old mono recording that plays only on the left channel. How can I copy it to play on the right so I'll hear it on both channels? I put it on itunes and then tranferred it to Garageband in hope I could finally get it to play on both channels. I've tried everything in Garageband and nothing works. It seems simple to me, just duplicate the one channel to the other. Garageband says if you use the compressor it will play in both channels, but it won't. Any ideas? It's a recording from a band I was in back in 1966. We used state of the art reel to reel but it was mono! All these years I've tried to figure how to fix it. Thanks

    I already recorded it from the tape to CD Spin Doctor through the line in and as I said it only comes out on the left channel. So then it's on itunes and I then transfer it to Garageband but it still is only on the left channel.I guess I could do this the old fashion way and get a mono plug to re-record to Spin doctor but in this day and age of sophisticated computer software I thought there may be an easier way. I guess I wasted my money thinking Garage band would help me edit this recording. Oh well, such is life!!!!

  • How do I deal with audio, seperate left and right and make each stereo--CS5

    I have a two mono mike recording which I can seperate into two seperate audio timeline tracks one is now left track in a seperate timline and the other is right in the other timeline, how do I make each of these tracks then into psuedo stereo tracks?  Do I have to go to Soundbooth or is there a simple way in Premiere?

    Bill G, tell me what I am missing and I'll use your method.  I have what I think you are describing, and I don't understand the need to do anything special, if you use channel mapping.
    I record a lav on one channel, and a different wireless mic on the other.  When captured, I have a clip that PR would normally treat as a single stereo track.
    BEFORE putting any clips on the timeline, select all clips and set channel mapping.  Set each channel to mono.  Now PR treats these as two mono tracks.  The output for each mono is the master track, which in my project is stereo.  I can change "volume" for each track in the mixer, etc.  but each channel is provided to the left and right  master output.
    I didn't go back to sort out what you had, but if you had two stereo tracks, one each with a left and right channel only, I can see that you needed some other solution.

  • How to migrate stored procs accessing columns "LEFT" and "RIGHT"

    Hello!
    I have to migrate a SYBASE11-Database to Oracle 8.1.7.
    How can I migrate Stored Procs that access tables that contain columns 'LEFT' and 'RIGHT'?
    OMWB reports a parse error "encountered: ,". If ommit the words 'left' or 'right' or if I write 'left()' or 'right()', it works. But I have to use these columns and we cannot change the database model.
    It doesn't work with quoted column names like this: "LEFT" or "RIGHT".
    I use OWMB 1.3.1.0.0. Anybody any ideas? Thanks in advance.
    Yours, Heiko Kaschube

    This is a simple matter to fix.
    As the words LEFT and RIGHT are treated as reserved words by the stored procedure parser, they cannot be used successfully as column names within Oracle PL/SQL.
    In order to get the stored procedure to parse, you can append an underscore to all references to LEFT and RIGHT e.g.
    left_
    then right click on the stored procedure name and select 'parse procedure' from the drop-down menu. The procedure will now parse and the generated PL/SQL can be viewed within the Oracle model menu tab.
    It will now be necessary to remove all the underscores previously appended to the words 'left' and 'right' from the PL/SQL version of the stored procedure in question. Again, this can be done within the Migration Workbench.
    Hope this helps.

  • Scroll front panel left and right using control

    I am taking an input from a chair rotation sensor (that just returns a voltage). I want to use this value to operate a control that scrolls the front panel left and right. Effectivively, the user would be able to navigate a wide control panel just using his chair.
    So to summarise:
    Does anyone know of a way to control the left and right scrolling motion of the front panel using a control?

    Use the VI property "FP.Origin" to set the position of the panel in the window. To move the window position, use "FP.Winbounds".
    LabVIEW, C'est LabVIEW

  • How to make Vertical Text start furom left to right?

    Sometimes some customers must be vertical text from left to right
    This is mainly for Asian fonts
    Whether it can be achieved with script,Or are there other methods?
    Thank you~

    @喜狼_edny – hm. Possible, but the result is somehow unsatisfactory.
    See for yourself.
    We could start with some text right aligned in a table with just one single cell:
    We could rotate the cell to 270° like that:
    Code:
    var myCell = app.selection[0].tables[0].cells[0];
    myCell.rotationAngle = 270;
    And now we need the text direction from right to left and all characters rotated to 180°:
    Code:
    var myCell = app.selection[0].tables[0].cells[0];
    myCell.rotationAngle = 270;
    myProperties = {
        composer : "$ID/HL Composer Optyca",
        characterDirection : CharacterDirectionOptions.RIGHT_TO_LEFT_DIRECTION,
        paragraphDirection : ParagraphDirectionOptions.RIGHT_TO_LEFT_DIRECTION,
        characterRotation : 180
    myCell.texts[0].properties = myProperties;
    Result:
    Ugh! Not exactly the result we expected…
    (Tested with InDesign CS5.5 on OSX 10.6.8)
    It's the characterRotation that is not working as expected.
    Uwe
    Message was edited by: Laubender

  • Scrolling using the Left and Right Soft Key

    Hi guys,
    Good day!
    I need your help with regards to using scroll wherein my control is the right or
    left soft key
    I want to implement those like in calendar wherein year can navigate using right or left soft key like this
    Display:
    *< 2008 >*
    if i pressed left would display - 2007
    if i pressed right would display- 2009
    Please help! Thanks in Advance.
    Regards,
    Psyeu

    Err.. keyCodes for the softkeys are non-standard. In fact, all devices don't have softkeys ... one example is Motorola E6.
    From the documentation for Canvas:
    MIDP defines the following key codes: KEY_NUM0, KEY_NUM1, KEY_NUM2, KEY_NUM3, KEY_NUM4, KEY_NUM5, KEY_NUM6, KEY_NUM7, KEY_NUM8, KEY_NUM9, KEY_STAR, and KEY_POUND. (These key codes correspond to keys on a ITU-T standard telephone keypad.) Other keys may be present on the keyboard, and they will generally have key codes distinct from those list above. In order to guarantee portability, applications should use only the standard key codes.
    db

  • How to add two different background images - left and right

    I want to get something like this

    The way I have done that is to create the right image as a full width image and then place the left hand image over top and stretch the image to the left hand side of the page.
    Use background images on boxes instead of page background. I have done something similiar in the header of this site:
    http://www.signalpointdining.ca

  • How do I apply effects equally to the left and right channels.

    I am an intermittent user of Sound Track Pro. I've made some cool audio beds with it in the past but right now I'm having two problems since I have not used it in so long and never was pro with it to begin with.
    1. Seems like the lift and stamp tool only works in multi-track mode and not in the wave editor.
    2. so I put my file in the wave editor to redo the effects from scratch there but now I don't know how to apply them equally to the left and right channels.

    Thank you! One more question: I've got quite a bit of interview tape and would like to increase the playback speed to 1.5X or 1.75 x so that I can get through everything faster. Is there a way to set it at those tempos? I only see the 2X, 4X, 6X, etc. options, but these are too fast and I can't understand what is being said. Is there a way to set this to 1.5X the original speed?
    Thanks!

  • How to make a scroll bar!!!

    i need to know how to make a scroll bar in flash cs3! can
    anyone help me with this??

    http://learnola.com/2008/10/27/flash-tutorial-create-a-custom-scrollbar-with-actionscript/

  • How to make icons of photos bigger when selecting to attach to email?

    how to make icons of photos bigger when selecting to attach to email?

    Changing the DPI to 120 won't affect the font size of the menu bar in the Editor.  See this FAQ for what happens when you change the DPI:
    http://www.johnrellis.com/psedbtool/photoshopelements-6-7-faq.htm#The_Organizers_Menu_Bar_ doesnt_show

  • How to make a scroll animation constantly fixed after scrolling? I want the animation to Start when I scroll down, but I don't want the animated thing to disappear when I scroll up again.

    How to make a scroll animation constantly fixed after scrolling? I want the animation to Start when I scroll down, but I don't want the animated thing to disappear when I scroll up again.
    I know how to start the animation by scrolling down, but I simply want it to stay there after it. Could you help me please, guys?

    Hi Tom,
    There is no native feature in Muse to achieve this.
    Regards,
    Aish

  • How to make a "new photo to publish" be considered "published" without actually publishing it?

    how to make a "new photo to publish" be considered "published" without actually publishing it?
    I have some photos that are really just stubs that represent the other "real" photos to publish.
    I don't want to have to do a mock export/rendering of them just to make them appear published.
    Any ideas?
    Rob

    In one of my plugins I have a requirement to download and add photos from the remote server and populate the newly created published collection in Lightroom.  In this routine, I use the following code to add the images to a published collection using the method provided by Don above.
    [code]
    catalog:withWriteAccessDo('createcollection', function()
         newcollection = v:createPublishedCollection(h.title)
         newcollection:setRemoteId(h.id)
    end)
    catalog:withWriteAccessDo( 'NPGSetUpdates', function()
         newphoto = catalog:addPhoto(newpath)
         newcollection:addPhotoByRemoteId(newphoto,p.id,p.url,true)
    end)
    [/code]
    The biggest thing here is that adding a photo like this requires the code to reside within the withWriteAccessDo block.

Maybe you are looking for

  • How can you bend an image round a path in Illustrator?

    Hello I would like to know how to bend an image to follow a particular path or shape in Adobe Illustrator CS4. The Warp tool in Photoshop produced the results closest to what I was aiming for, however it is difficult to shift one part of the image on

  • Site not showing correctly in IE

    My website isn't showing correctly in IE. It's here: www.renewretreats.co.uk The bottom photo on the homepage overlaps the text. And on the Who Are We? page - the text is creeping up under the small photos. It's fine in iWeb editor - and also fine in

  • Create Error log table

    I am supposed to insert the records that are not uploaded to the main table into a error log table and email the users about the error records that was not inserted into the table. How am is supposed to do it ? I have few more questions. What is the

  • How to view changes made to Program code in PRD?

    Hi all, I'm currently auditing SAP landscape management and noted the following in the PRD environment: 1. table logging is disabled (transaction SM31) 2. profile logging is disabled 3. transaction SM20 doesn't give anything 4. don't have access to c

  • Streaming Audio over serial com port

    I have a task where I am programming a robotic system and control unit.  I am using a laptop for the control unit.  On the laptop is a microphone.  What I would like to do is capture the audio from the microphone and transmit this via the radio to th