Background dynamic move

Hi all, I'm new to this forum and not very experienced with
flash, I have been developing with html, css, php...
But now I have a challenging web project and it's meant to be
purely in flash so I have a lot of questions.
Basics of the project: lots of images, few videos, some text
and some original navigation an interactions.
The navigation is my biggest problem, I'll try to explain:
You have a frame and a menu that will act as a layer in front
of the content, the menu is an array of buttons with a little
animation, but when you click a button, the frame and the menu has
to move as one piece (or the background) to the place where the
next page content is and then, when the frame arrives to the final
spot, the content of the page will load (in case it has some extra
media or videos).
Is there a way to move the frame and menu to a specific
coordinate no matter where the frame is actually at?
It wont be practical to make a defined path because or the
interaction between the pages...
(Sorry if my english is not very good, it's not my native
language)

The thing is I'm new with flash and I have NO IDEA how to
move the scene.
Maybe I'm not explaining the functionality, let's say in the
web page you have a wood frame, and it has buttons to change the
photograph behind the frame, but it looks like the photographs are
just placed in a table, so instead of doing some fade out - fade in
effect, you see as if the frame moves in the table reaching the
photograph you selected (but maybe I'll have to move the
background, I don't know).
The thing is that the content will be like a background
grayscale image of about 200,000x140,000 px, and the frame will
move from one part to another and when it reaches the exact
coordinates of the next content, it loads it (with colors and
stuff).
Anyone?

Similar Messages

  • Can a transaction be called in background dynamically using ABAP program??

    Hi Experts,
    Can a transaction be called in background dynamically using ABAP program without BDC???
    Regards,
    Mansi.

    u can create job dynamically through programming..Try this sample code..
    data: jobname like tbtcjob-jobname value
                                 ' TRANSFER TRANSLATION'.
    data: jobcount like tbtcjob-jobcount,
          host like msxxlist-host.
    data: begin of starttime.
            include structure tbtcstrt.
    data: end of starttime.
    data: starttimeimmediate like btch0000-char1.
    Job open
      call function 'JOB_OPEN'
           exporting
                delanfrep        = ' '
                jobgroup         = ' '
                jobname          = jobname
                sdlstrtdt        = sy-datum
                sdlstrttm        = sy-uzeit
           importing
                jobcount         = jobcount
           exceptions
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
      if sy-subrc ne 0.
                                           "error processing
      endif.
    Insert process into job
    SUBMIT zreport and return               << Here it is a static call but u can make it dynamic
                    with p_param1 = 'value'
                    with p_param2 = 'value'
                    user sy-uname
                    via job jobname
                    number jobcount.
      if sy-subrc > 0.
                                           "error processing
      endif.
    Close job
      starttime-sdlstrtdt = sy-datum + 1.
      starttime-sdlstrttm = '220000'.
      call function 'JOB_CLOSE'
           exporting
                event_id             = starttime-eventid
                event_param          = starttime-eventparm
                event_periodic       = starttime-periodic
                jobcount             = jobcount
                jobname              = jobname
                laststrtdt           = starttime-laststrtdt
                laststrttm           = starttime-laststrttm
                prddays              = 1
                prdhours             = 0
                prdmins              = 0
                prdmonths            = 0
                prdweeks             = 0
                sdlstrtdt            = starttime-sdlstrtdt
                sdlstrttm            = starttime-sdlstrttm
                strtimmed            = starttimeimmediate
                targetsystem         = host
           exceptions
                cant_start_immediate = 01
                invalid_startdate    = 02
                jobname_missing      = 03
                job_close_failed     = 04
                job_nosteps          = 05
                job_notex            = 06
                lock_failed          = 07
                others               = 99.
      if sy-subrc eq 0.
                                           "error processing
      endif.
    Regards,
    JOy.

  • How to access dynamic movie clips in a loaded swf

    Hello,
    I have a main movie file that loads a swf through loadclip.
    There are several dynamic movie clips in the library of the
    loaded swf (all set to export in first frame).
    I'm trying to create a popup window (using the Window
    component) by using code in the main movie to popup content that is
    in a dynamic movie clip within the swf loaded by loadclip.
    So far, I can create the popup without any problem as long as
    the contentPath refers to a linkage identifier of a library item in
    the main movie, but it won't work for a library item in the loaded
    movie. Is there a way to make this work? Is there a special way to
    reference library items in loaded movies?
    Here's my code to create the window:
    myWin = mx.managers.PopUpManager.createPopUp(this,
    mx.containers.Window, true, {title:mytitle, contentPath:myref,
    closeButton:true});
    where myref is a string containing the linkage identifier for
    the library item within the loaded swf.
    Thanks in advance for any assistance,
    Julia

    I have found out that I can access a dynamic mc from the
    loaded library (using attachMovie), but cannot use that same
    dynamic mc as the contentpath for a popup window.
    Any ideas why?

  • Dynamic movement

    hi folks,
    i'm working on a project for my company, and i'm trying to
    create a dynamic movement based on the position of the mouse.
    i followed a tutorial so i could understand the point of the
    elements moving on the stage while moving the mouse on any
    direction.
    the tutorial i found is
    http://www.washeebo.com/sargento/02_flsh/0215/0215.php
    (in spanish, the last flash is exactly what i'm trying to do).
    i'm following all the steps and works perfectly. but, i want
    to have the letters to be different MCs (in this tutorial you
    create the "E" MC and it changes dinamically by AS when you place
    it on the stage), and also, i want them to be external swfs. the
    point is that, when i invoke the swfs - loadMovie() or
    attachMovie() - it doesn't work!!!
    Does this means that i can't uses swfs into empty MCs as the
    letters? or is there any code missing??
    the code i've attached to the first frame of the MC is:
    this.swapDepths(this._y);
    this._xscale = this._yscale = this._y - 90;
    orig_x = this._x;
    orig_y = this._y;
    onEnterFrame = function() {
    dest_x = orig_x + ((209 - _root._xmouse) *
    (this._xscale/100));
    incr_x = (dest_x - this._x)/10;
    this._x += incr_x;
    dest_y = ((((250 - _root._ymouse))/125) * (orig_y - 100)) +
    100;
    incr_y = (dest_y - this._y)/10;
    this._y += incr_y;
    any suggestion?
    thanks for answering!

    are you using visible property?
    use addChild/removeChild instead.

  • Make White Background of Movie Clip Transparent

    I have a .mov of an animated object on a white background. How do I make the white background transparent to get the composite effect of inserting the animation in another movie? I am using FCE 4.

    Hi(Bonjour)!
    Set transfert mode for this clip to multiply.
    If the white doesn't become transparent, try to apply a brightness and contrast to purify the white or use a color correction to set a new white balance.
    Michel Boissonneault

  • Attaching dynamic movie clips in a static moviclip

    I have a problem regarding attahing these movieclips(images)
    to a label (movieclip) on the stage and when i will move label the
    all images shoild move with label which attched to that label , i
    have tried lot through hit test but not working because i have lots
    of dynamic movieclips(images) and how to attach these movieclips on
    the label movieclip which is static movieclip in my case do u have
    any sample or any question regarding this ??? pl help me out .
    Thnx

    In as2, you can't dynamically alter the parent - child
    relationships of movieclips.
    When you mean a 'static' movieclip do you just mean one
    that's not attached at runtime... I'm assuming its still a
    movieclip ...e.g. its not for example 'static text'. just checking.
    So long as it is ... here's how I would try to do it:
    have each label clip contain an array of 'linked' image
    clips. Whenever you move the label clip then have the event or
    enterFrame handler for that label clip loop through the array of
    'linked' clips and move them by the same x and y values. I think
    this would work - its the way I would try to do it anyhow. Others
    may have a better idea.
    This approach would be more complicated if there was
    different scaling or rotation etc applied to the container clips of
    the images or the labels.

  • Transparent Background- Flash Movie

    Is it possible to have a transparent background for a Flash
    or Captivate movie?

    check skin editor parameter alpha :

  • Background image moves when previewing the site

    I set up my background in the master. When I preview my site in the browser, the background location jumps around slightly as I navigate between pages.  Any ideas?

    Hi Brad,
    i'm also getting this. Really odd movement with both shape elements foreground and background and how type is rendering and moving up and down at will, as well as reflowing differently. Used Arial as was web safe so not sure why.
    Also have in sep text boxes as seemed normal way to do it.
    I had a more evolved thing going on with small shape bars between project title and the rationale on left hand side bar but that's all had to go out of the winder since the last update as moving was playing havoc page to page.
    I also had to paste in place my Navigation for site on each page individualy instead of using a MASTER to get to work correctly. Have tried to now put this on a NAV layer above all other content on MASTER as well as pinning it top and causing more movement so didn't upload or save.
    Have some screen grabs of what I am seeing in the PREVIEW in Muse top and bottom of page and also the DESIGN view top and bottom of page.
    As mentioned, haven't saved or uploaded to my ftp as expecting a client to look at some of my work and can't afford them looking when it's busted with some issue or another.
    Any light shed on this issue would be greatly appreciated. As I keep saying, I love the program but there do seem to be some big issues that are making me spend lots and lots of investigatory time with hit and miss results.
    Thanks in advance.
    Site url as it currently stands is: http://www.saraundo.com

  • Black Background during Movie Test

    Hi, hope you can help. I'm using Flash 5. I created a simple
    scrolling photo. A name on a top layer, and a scrolling photo on
    the bottom layer. But when I test the movie, the background behind
    the name is black, the entire stage is black, and I see no
    scrolling photo. When I play the movie from the edit panel, it
    looks fine. Wish I could post screen shots here, sure would be
    easier to show you this.

    Apparently I solved by resetting the PRAM.

  • Documaker :How to dynamically move or resize a section using DAL Script?

    Hi all
         i am a newbie to Documaker. I am working with Documaker 11.4. I would like to know two things
            (1)   Whether there is any option to move a section towards left, dynamically using DAL Script.
            (2)   And is there any option to resize the section dynamically using DAL Script.
    Thanks in advance.

    This is obviously a bug with Photoshop Elements 12.
    In my Photoshop Elements 10 the printer dialogue box scales to fit the screen every time.
    In Photoshop Elements 12, even moving the task bar away (you can simply drag it up the right hand side of your screen with the mouse) you can't see the print button as its still off the bottom of the screen.
    My work around is to hold shift+alt+cntl and click on my Ps icon - Click compatibility - Scroll  down to settings - click run in 640 x 480 screen resolution. It then does horrible things to your screen res, but hey presto the printer dialogue box is minimised and you can print your picture. As with your Toshiba, even with the printer dialogue box fully exposed there are no chevrons in the bottom right hand corner to minimise the printer dialogue window and the arrow buttons simply start trying to change the settings in the printer set up. The dialogue box is still nailed to the top of the screen with no title bar to right click on.
    How do I escalate this to report it as a bug to Adobe?

  • Dynamic movie clip removal

    I'm working on a Flash/XML photo album that loads image
    thumbnails dynamically by creating individual movie clips for each
    thumbnail. The thumbnails are divided into 10 groups. Every time a
    new group of thumbnails is selected from the album the XML array is
    upadated with the correspondig image file name and path. The only
    problem is that since there are different number of photos in each
    thumbnail group the extra image_mc's created dynamically remain,
    even if they are not from the specific group. For example for group
    1 I have 6 thumbnail images, group 2 contains 4 thumbnail images.
    If I start with group 1 and then select group 2, the 4 thumbnails
    from group 1 are displayed plus number 5 and 6 from the previous
    group. What's the best way to remove all the image_mc's created
    dynamically before each new thumbnail load. This is what I have so
    far and it doesn't work:
    // thumbnails is the array
    function thumbDisplay(thumbnails){
    var galleryLength:Number = thumbnails.length;
    removeMC();
    // loop through each of the images in the gallery_array.
    for (var i = 0; i<galleryLength; i++) {
    /* create a movie clip instance which holds the image, also
    set a variable,
    thisMC, which is an alias to the movie clip instance. */
    thisMC = this.createEmptyMovieClip("image"+i+"_mc", i);
    /* load the current image source into the new movie clip
    instance,
    using the MovieClipLoader class. */
    mcLoader_mcl.loadClip("photos/"+selectedGallery+"/thumbs/"+thumbnails
    ,thisMC);
    function removeMC():Void{
    for(var i=0; i<thumbnails.length; i++){
    thisMC.removeMovieClip("image"+i+"_mc");
    Any help would be great. Thanks.

    try:

  • Attaching Dynamic Movie Clips on a Stage Movie Clip

    Hi guys ,
    I am calling more images in dynamic movieclip on the stage
    from XML file and show them on the stage after that evry movieclip
    is draggable and there is lots of labels (movieclips) on which i
    have to drag the images called from xml files and placed on that
    label , label is also draggable once when i placed object on the
    label moviecli then when i drag the label all images placed in side
    the label should also move with the label .
    And there might be more labels and more images , i can place
    any images in a label or more images on different label but will
    work siimilarly described above .
    So please suggest me and help me out ASAP.

    Ok if I understand you, you have several movieclips on the
    stage that are created dynamically. Some of them are called
    "labels" and some are images. You want to drag and drop an image
    onto a label. Then when you do that you want the image to become a
    child movieclip of the label movieclip. That way when you drag the
    label movie clip and all the images inside it will move along with
    it.
    Are the images movieclips as well or are they just images?

  • Sizing dynamic movie clips

    I have a project I am working on that has a scroll window on
    the main page and the movie clip displayed in it changes. All of
    the movie clips that get displayed in the scroll window are all
    dynamically made through actionscript loading all of the info from
    PERL scripts usingLoadVars().
    For some reason I cannot figure out yet there is like a full
    page worth of empty space at the bottom of each movie clip so as
    you scroll down once you hit the end of the content it will still
    scroll down atleast another page worth. Any ideas how I can stop
    that so the scrolling will stop when the content ends?

    Thats what I was thinking as well, Any ideas what I would
    look for to find what is causing the problem? as far as I can tell
    everything is just blank, and if I manually set the height value
    for the movie clip it does squish everything and still include the
    blank space so it looks like flash thinks something is there.
    Or is there a way I can set the height of the movie clip
    forcing it to cut off anything below? adjusting the height value
    just forces the entire movie to display into that size, cutting it
    off at that height value would resolve my problem as well.

  • Animating dynamic move clips.

    I have an unknown number of movie clips tat are added
    dynamically. I can add them fine but i want to add them so they
    appear off stage at a random x, y pos and then slide in and ease up
    to another random spot on the screen. So each time the movie is
    loaded it looks lik someone has thrown a bunch of photos out on a
    table and they slide and spread to random locations and ease to a
    stop. Anyone have any clues? i have found a number of tutorials but
    would like some extra help/explanations.
    Cheers.

    very basically, it should be something like -
    once a MC is loaded place it randomly offstage, and then
    using the Tween
    class move it to a random location on stage.
    for further information, read the help files about 'random'
    and 'tween'.
    good luck,
    eRez
    www.allofme.com
    "rossmurphy88" <[email protected]> wrote in
    message
    news:ff2d0c$531$[email protected]..
    >I have an unknown number of movie clips tat are added
    dynamically. I can
    >add
    > them fine but i want to add them so they appear off
    stage at a random x, y
    > pos
    > and then slide in and ease up to another random spot on
    the screen. So
    > each
    > time the movie is loaded it looks lik someone has thrown
    a bunch of photos
    > out
    > on a table and they slide and spread to random locations
    and ease to a
    > stop.
    > Anyone have any clues? i have found a number of
    tutorials but would like
    > some
    > extra help/explanations.
    >
    > Cheers.
    >

  • Crop a background image (movie) - working with a template

    I'm working with the template "Promo > Product Shot". The image block with the bike is what I want to replace with my own video clip.
    I can't figure out how to replace it, so I took the video clip and "placed" it. That's all fine, but now I want the size of the video clip to match the size of the bike block. I can scale it down to get close but then I'd have to crop the sides to get the vertical block shape.
    Can't figure out how to do this either. Is it even possible?
    Thank you very much,
    Eric P

    Thank you for the speedy reply.
    I played with that tab a little but didn't understand exactly what it was so I never followed through with it.
    I did follow your steps, but nothing happened. Perhaps there is something I have to do after selecting the movie?
    Thank you,
    Eric

Maybe you are looking for

  • Wireless Connection on the PC side of the Intel Duo

    I have a new IMAC 20 Intel Duo. I set up a secure wireless connection (WAP) through the Linksys WRT54G thats works fine when running MAC OS10. When I switch to the XP side I cannot connect to my secure network. In the available networks it recognizes

  • Performance problem with inner join

    Hi With this Query SELECT * FROM TABLE1 INNER JOIN TABLE2 ON TABLE1.Col1 = TABLE2.Col2 AND TABLE1.Col2 = TABLE2.Col2 WHERE TABLE1.Col3 = 'AB' AND TABLE2.Col4 = 'ZZ'; TABLE1 have 6,000,000 of records TABLE2 have 9,000,000 of records when I run this qu

  • Application goes not responding all the time

    I am looking for some suggestions on how to stop itunes on lion from going not responding almost constantly.  All of my system resources are goo cpu < 20%, 1.5 GB free RAM and plenty of free disk space. Thanks.

  • PS CC 2014 problem: How to migrate filters and extensions? (win7 x64)

    Hi Gang! Just installed 2014 (win 7 x64). But none of my filter (Nik, etc) are showing up? How can I point PS 2014 to my old filter plug-in golder? I looked in prefs?  Also I need to point 2014 to my extensions primarily my Paper textures extension.

  • Pls explain the wat is 't02' in the code

    DATA: lr_grid TYPE REF TO cl_salv_form_layout_grid,           lr_grid_1 TYPE REF TO cl_salv_form_layout_grid,           lr_flow TYPE REF TO cl_salv_form_layout_flow,           lr_label TYPE REF TO cl_salv_form_label,           lr_text TYPE REF TO cl_