Drop down box drag and drop storyboard

Hello
I'm trying to create an interactive storyboard using the drag
and drop function to drag characters onto a stage so the user can
arrange them however they wish. My problem is that now I have
started this project I have realised I need a lot more images than
first thought and have limited space as this is to go on a website
and have the option to be printed.
Therefore, I have been trying to create a dropdown menu with
tabs with the character name on and when the tab is clicked a box
with all that characters images appears below. Now I managed to
make this work but then when you click between the tabs having
placed the characters on the storyboard, if you click a tab in the
timeline before the one you were on, obviously the character
disappears from the stage. Is there anyway of creating a drop-down
menu or something similar to save space, which can have draggable
movieclips in?
Also my second problem is does anyone know how to create a
duplicateable movieclip. For example, once a character is dragged
from the menu onto the storyboard, it is now only on the storyboard
and there is only one copy. Now I know I could just make loads of
the same character and layer them, but it would be much better if
someone knew of a way to duplicate a movieclip once it is dragged
away so that there is always one in the menu.
Any help would be greatly appreciated as I am fairly new to
flash and am trying my hardest to get to grips with actionscript.
Cheers,
Anna

Thanks for your help but not too sure I understand most of
it.
Just working on duplicating characters at the moment and so
far have managed to duplicate once but then can only move duplicate
character and original disappears.
This is the code I have on the movieclip at the mo - any
suggestions very very welcome.
on (press) {
startDrag(this, true);
duplicateMovieClip(this, newname="drag_clip_new", 2);
on (release) {
stopDrag();
Don't know much about depth etc.
Also found this code on the net but am having trouble
changing it to fit my needs:
var mcNum = 1;
var dupli:MovieClip;
mc1.onPress = function() {
dupli = mc1.duplicateMovieClip("mcname"+mcNum, ++mcNum);
dupli._x = mc1._x;
dupli._y = mc1._y;
dupli.startDrag();
this._parent["mcname"+mcNum].onPress = function() {
this.startDrag();
this._parent["mcname"+mcNum].onRelease = function() {
this.stopDrag();
mc1.onRelease = function() {
dupli.stopDrag();
mc1.onReleaseOutside = function() {
dupli.stopDrag();
Again any help very welcome!

Similar Messages

  • My touch pad is no longer responding to hard press downs for drag and drop or copy and paste

    my touch pad is no longer responding to hard press downs for drag and drop or copy and paste ability

    may be a totally stupid question, but how can I tell?

  • Adobe Flash player jiggles the screen on drop down boxes, videos, and animation

    Any time I visit a site with drop down boxes, videos, or animation that require Flash, that portion of the screen will do a fast jiggle up and down - like it is refreshing too fast. Adobe Flash works fine in IE. Some sites the jiggle is slower than others. This is only happening with Firefox. I have searched the net for possible solutions and cannot find others with this problem. The jiggling is almost like portions of the screen have gone spastic.
    I am running Windows 7 64 bit on a Toshiba Laptop . I am running Firefox 9 and Flash 11.1.102.55 64 bit plug in. I have uninstalled and reinstalled both programs and have not been able to fix it. My video driver is up to date.

    Tylerdowner, as a moderator, one would think that, prior to adjusting comments/solutions, especially when not having a Mac, you would do more research (bet you know someone with a Mac, to duplicate problem), or pass responding on to a moderator who does have a Mac (I am amazed that you are even a moderator on Mac problems/situations, if you only have access to a PC). Had the solutions above worked, I would not have needed to figure out another solution (we all know the newest release of anything is the most secure). Finally I am open to any fixes (tested) that you can provide, that improve upon mine. As a moderator, maybe you have pull with the Foxtab and/or Adobe people to get them to work out compatibility, and lastly, maybe add a warning at the Foxtab add-ons page, after verifying the problem yourself, with an associate's/friend's Mac.

  • Cannot scroll drop downs, or drag and drop files/folders with mouse

    I cannot scroll drop downs (I can click them, but I can't choose anything) or drag files or folders with the mouse or touch pad, but it works fine when I use my Wacom tablet. It's super frustrating. Help!

    P.S. I've narrowed the problem down to being related to the game Diablo III. If I restart my machine, it works fine again. Until I play Diablo. Totally lame.

  • Drop down box

    I am using ACrobatX pro.  I am a determined novice and any help is appreciated.
    Before I added any code I created my PATTERN drop-down box and my ColorSelect drop-down box. For the ColorSelect box, which is the one I want to vary depending on the Pattern selected, I have not entered any items since this is what I want the JavaScript to do after the pattern is selected.
    Next I went to TASKS, OTHER TASKS, JAVASCRIPTS, DOCUMENT JAVASCRIPTS
    I used the article Programming List and Combo fields in Acrobat and LiveCycle forms - Part 1
    Thom Parker – September 18, 2007 which I was referred to by GKaiseril, and added the following code which I modified slightly changing the field names and eliminating the reference to a 2nd field for price.
    SetColorEntries()
    var oPatternColors = {
    Alamos: [
    ["Champagne"],
    ["Winter White"]
    Alana: [
    ["Champagne"],
    ["Winter White"]
    Altoona: [
    ["Barley"],
    ["Marble"],
    ["Winter White"]
    Ama: [
    ["Marble"]
    Anlu: [
    ["Champagne"],
    ["Marble"]
    function SetColorEntries() {
    if(event.willCommit) {
    // Get the new color list from the Pattern List
    // Since the selection is being committed,
    // event.value contains the pattern name
    var lst = oPatternColors[event.value];
    // Clear the Colors list if there are no colors for the selected pattern
    if( (lst != null) && (lst.length > 0) )
                                                          this.getField("ColorSelect").setItems(lst);
    else
                                                          this.getField("ColorSelect").clearItems();
    Then I selected the PATTTERN drop-down box properties, and picked Actions. Under select trigger I thought Mouse exit (kind of like after update) made the most sense. For select action I picked  run a Javascript. Then in the pop up window where it says Create and Edit Java Scripts I typed SetColorEntries();
    The  system accepted my code; however, when I try to run it, nothing happens. Well actually I get the dreaded error beep.
    I am hoping someone sees what I am doing wrong, and can offer some help. This order form will be very useful to my company and once I get it, I am hoping to apply to various other order forms I am creating for our customers
    Thanks

    Use the inspector for the cell you want the "Pop-Up" menu. Select Cell Format "Pop-Up". Then enter the list of items required. You can copy this cell to other cells with the same requirements.
    Regards,

  • Advice needed on the Drop-down box description.

    There are lots of postings on how to get the drop-down box working and there's even a How-to guide called Dropdown boxes. However, I have a field (defined using the AET tool) which has an Search help assigned, so the drop-down list is automatically displayed for me. Having said that I'm still bemused as to how it works as there's no code in the P and V Getter methods.
    Anyway, that aside, the dropdown box is working fine, as mentioned, but I also have the description field to populate with the description of the value returned by the drop-down box. In my case it's a Department code and associated description.
    Initially, I inserted code in the SET_DEPT method to lookup the description (using a SELECT statement) and place the result in the DEPT_DESC field. However, this method is not being called, I don't think, or at least my break point is not being reached.
    So I'm looking for somewhere to place the code which will be called when the DEPT field changes value, and I can then lookup the description and populate the DEPT_DESC field.. Both the DEPT and DEPT_DESC fields are in the same context node by the way.
    It's a real pity that when you create new fields in the AET tool you can't relate one field to another or somehow use a search help and say that the source is another field and this field will hold the result, or something like that.
    Jason

    Hi,
    It was said that the SET_* method will be called when you press enter on the view to trigger a server round trip.
    For your case, I'd like to suggest you take standard coding for example.
    That is the categorization in service ticket view in IC_AGENT role.
    When select the first category, if the second category only has one value, it will be automatically set. which should be similar to your requirement.
    component view GSMCDDLB/DropDownList
    call stack is
    METHOD SET_FIELDS      CL_GSMCDDLB_DROPDOWNLIST_IMPL=CP
    METHOD EH_ONCATCHANGE  CL_GSMCDDLB_DROPDOWNLIST_IMPL=CP
    METHOD DO_HANDLE_EVENT CL_GSMCDDLB_DROPDOWNLIST_IMPL=CP
    when a value is selected in the first dropdown, an event is triggered, you may debug and find out your event, and make the codings in EH_* method.
    set value for other field is some what simple also, like that in
    METHOD SET_FIELDS      CL_GSMCDDLB_DROPDOWNLIST_IMPL=CP
    CALL METHOD lr_dropdownlist->if_bol_bo_property_access~set_property
    If the first field is not a dropdown, for example a field with F4 help, after select the value from the popup, there will be event SELECT_OBJECT triggered for the view I tested.
    You may put breakpoint in do_handle_event for the controller class and observe what event was triggered.
    Then make the relevant coding.
    Hope could do help!
    Hongyan

  • Drag and drop in album?

    When I'm going through an event in order to pick photos for an album, I like to see the photos in full view (not thumbnails). But then I can't drag and drop from the full view to the album folder. And if I go down to drag and drop the corresponding photo in the thumbnail bar below, the darn thumbnail bar gets magnified, and I have to move my cursor once again to get the right photo. Is there a better way to do this??? Can I at least make that thumbnail bar stop magnifying itself?
    Julie

    One way would be to view the photos in what ever mode you need in order make your selection and then either flag the photo (Command+period) or add a keyword to it via the Keyword pane (Command+k).
    Then create a smart album whose criteria is Keyword is XXXXXX or Photo is Flagged. When you've completed your selection open the Smart album, select all of the photos and drag them to the Album area at the left to create a new, regular album. Then remove the flag or keyword from the photos to clear the smart album.
    If you go the Flagged route and don't have any other flagged photos in the library you won't need a smart album because there's already one in the Recent area to the left titled Flagged. You can use it.
    OT

  • Using Yahoo Basic Mail w/FF, no drop down box of my e-mail contacts as I type an e-mail address - but it works in IE 8, plz fix ...

    I use Yahoo Basic Mail. When composing an e-mail, Yahoo has an "e-mail address autocomplete" function. As I begin to type an e-mail address in the To CC, or BCC boxes - if there are addresses in my Yahoo Contact list with the same string of characters, a drop down box appears and I can click on the desired address and it populates the To, CC, or BCC box. This is an extremely convenient feature.
    And, it works with IE 8. BUT, this feature DOES NOT work with FF 30.
    Obviously, this is a problem with FF 30 - can you plz advise as how to correct the problem?
    FYI: Java plug-in is always activated and JavaScript is default enabled in FF 30 on my PC.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Click the menu button [[Image:New Fx Menu]] and click History button, and then Clear Recent History... .
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Drop down boxes are empty but clicking in it still works, same with right clicking the mouose.

    When I click on the File, Edit... buttons the drop down box appears and is empty. I can guess where something should be and click on it and I'll get a reaction but I don't always get it right. When I Right Click on the mouse to copy and paste I get the same thing.

    There's a couple of slightly incompatible add-ons that can cause that, you need to troubleshoot to discover the cause. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • My drop-down list won't appear anymore so every time I want to go to a new site I have to type it in where before my drop-down box would appear and I could just click it and hit search and go there how do I make my drop-down box come back

    somehow I must've clicked a button that took away my drop down box when I go to use my Google search so different sites that I go to a lot I would always just click it when the drop-down box came up I would click again and hit search and you would bring that page up but even if I go to a site once I leave that I try to click and make the drop-down box come up again with the new search and it nothing happens so the problem is I need my drop down box to come back up to all the places that I visit kind of like a history of like I said I would just click and it would come up by itself now the drop-down box won't come up anymore so I need somebody to tell me what to do to bring my drop-down box back also I am new to computers so I don't know a lot so don't be real technical thanks for the help merry Christmas from Joe

    It's not a matter of me assuming to restore it, once the error comes up, the only next step I can do is to restore it. I can't access any of the iphones settings in itunes or anything, it's a mandatory restore. If I just cancel the sync (before restoring) and disconnect the phone, all my apps crash on opening: aka unusable phone. So I have literally no choice but to restore every time the error shows up if I want my phone to work.
    I have no idea where I may have duplicate files as it doesn't tell me, so if that is the problem (which I don't think it is) then I don't know where I have to go to delete the duplicates.
    And the duplicate file error still doesn't explain why leaving iTunes to restore the phone doesn't work and me having to drag the window around. I know it sounds utterly ridiculous, my friend didn't believe me when I told him either but then I showed him and he was as confused as I am. If I just leave the restore to do its own thing at it's own pace, it will loa maybe 20% then fail for whatever reason.

  • Drag and drop in a vertical box

    Hi
    I was wondering if there's any sample out there that i can check where the user drags and drops the compoents in a verticle box layout and during the DnD operation the dragged component pushes all the other compones up or down depending on the direction in a smooth animated manner, including when the component is being resized.
    I do know the Flex ObjectHandles by Marc Hughes component that's what im using right now but then again it does not cover this other requirement that i need.
    Thanks.

    for those interested (if there is), i've given up on leadselectionpath, and i draw my outline manually, by overloading paintComponent and using the getPathBounds method.
    still, i don't know what leadselectionpath means... well, i guess i don't need to know, but if anyone want to share his knowledge...
    nicolas

  • Adobe Presenter 10 Drag and Drop questions - only grey box when trying to create

    Hi,
    I try to create drag and drop questions in Presenter 10 and after clicking on Add Question -> Drag Drop, the new window opens but where I should be able to define the questions etc, the screen is just grey. Have the same issue on three other systems as well.
    Flash is updated to latest version and so is Presenter 10.
    Weirdly the installed Flash version is 15, but a right-click into the grey box shows me version 11.
    Any ideas?
    Thanks,
    Chris

    Just in case someone else has the same problem, a chat with Adobe brought the solution:
    On the gray screen, Right click and go to Global settings
    Go to advanced tab
    Scroll down and click "Trusted location settings"
    On the "Trusted location settings" window, click "add" on the bottom
    Click "Add Folder" and select "Local disk c"
    Click "Ok" and Confirm on "Trusted location settings" window
    Worked for me (on three different machines) like a charm!

  • Is it possible to drag and drop an arrangement from another software program such as band-In -Box to garage band

    is it possible to drag and drop an arrangement from another music program like Band-ina-box into garage band

    GarageBand for iPad is a pretty closed system.
    The Song File
    You can only open GarageBand for iPad Song Files with the extension .band. Please note that those files look the same as the ones form GarageBand 11. However, they are only upwards compatible but not downward compatible. GarageBand iOS -> GarageBand OSX -> Logic.
    Audio Files
    You can import a wide variety of Audio Files into GarageBand (via iTunes File Sharing) to use in your Song. But any material from another app has to be mixed down first. Either as a single stereo mix or you mix each track separately and then import those separate files ("stems") into GarageBand. This is a typical procedure to move material to a different app,for example for mixing.
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • How to create a drop down box and text box in screen painter?

    Hi i am totally new to this concept of screen painter..please can any tell me
    how to create drop down box in screen painter?
    How to create or display default date and time values?
    How to create text box for giving comments?
    How to store the records that we are entering in a table?
    Please can any one send me the procedure for creating all these its very urgent useful information will be surely rewarded.

    Hi,
    Check all these.
    1.how to create drop down box in screen painter?
    To get Drop Drown Box on screen .
    Follow these steps.
    1.
    Go to T.Code SE51 and Select Laypout for the Screen.
    2.
    Double click on the field for which u want Dropdown box.
    3.
    Then U will see Name ,Text ,DROPDOWN.Click on that and select List Box or ListBox with key . Better to to select first one.
    4.
    Save and Activate ur screen .
    5.
    Enter the following piece of code in the PBO of the screen.(Change for ur requirement).
    6.
    The following code should be written under PROCESS BEFORE EVENT in the MODULE.
    TYPE-POOLS :vrm.
    DATA:
      i_natio TYPE vrm_values, "-->Table that is passed through FM vrm_set_values
      w_natio LIKE LINE OF i_natio.
    DATA:
    BEGIN OF i_t005t OCCURS 0,
        land1 TYPE t005t-land1,
        natio TYPE t005t-natio,
    END OF i_t005t.
    IF i_t005t[] IS INITIAL.
      SELECT land1 natio
         FROM t005t
           INTO TABLE i_t005t
       WHERE spras = sy-langu.
      IF sy-subrc = 0.
      LOOP AT i_t005t .
          w_natio-key = i_t005t-land1.
          w_natio-text = i_t005t-natio.
          APPEND w_natio TO i_natio.
          CLEAR w_natio.
      ENDLOOP.
      ENDIF.
    ENDIF.
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
                          id = 'I_IT0002-NATIO' "-->Field for which dropdown is needed.
                    values = i_natio
    EXCEPTIONS
       id_illegal_name = 1
                OTHERS = 2.
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    2.1.How to create or display default date and time values?
    1.
    create input field for DATE and TIME on screen.ex. DATE1 and TIME1 are screen field names .
    2.
    Just assign SY-DATUM to DATE1 and SY-UZEIT to TIME1 under PROCESS BEFORE EVENT.
    3.How to create text box for giving comments?
    1.
    Define one variable in the TOP include with type STRING means Global variable.
    2.
    Create one input field by giving screen field name which u have defined in the above step.
    4.How to store the records that we are entering in a table?
    For this case.. Create one table control. you can select one record and create record in the Z table by pressing button on Application toolbar..
    Check the following steps to handle Table control.
    1).
    U should take one variable in your internal table or in structure which
    is used for table control fields
    ex :
    data :
    begin of itab occurs 0 ,
        mark type c , "This is to select the record.
        matnr like mara-matnr ,
        matkl like mara-matkl,
        maktx like makt-maktx,
    end of itab .
    Controls: TABC types TABLEVIEW using screen 100.
    2).
    This mark variable should be given in Table control properties.
    follow the path
    double click on the table control-->attributes .->select
    w/SelColumn and in that itab-mark. Check in the figure.
    [Table control properties screen|http://bp2.blogger.com/_O5f8iAlgdNQ/R99gOUH8CXI/AAAAAAAAA9I/d3gOum1fJ6s/s1600-h/pic28145-796618.jpg]
    3).
    After that. Take this example.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    LOOP AT ITAB WITH CONTROL tabc
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE CANCEL AT EXIT-COMMAND.
    LOOP AT ITAB.
       Module read_table_control.
    ENDLOOP.
    module user_command_0100.
    In this Module read_table_control, You should write the following code
    MODULE read_table_control INPUT.
    MODIFY itab INDEX tabc-current_line."( This will update the
    "ITAB table MARK field with 'X ' whatever we have selected
    "on table control.)
    ENDMODULE.
    4)
    If you want to Delete some of the records from Table control
    follow this code …Create one pushbutton and give Fucnction code to that
    and write below code
    CASE OKCODE.
    WHEN 'CREATE'.
    LOOP AT itab WHERE mark = 'X'.
    "Use UPDATE statement to create new record.
    ENDLOOP.
    ENDCASE.
    I hope that you will get something.
    Regards,
    Venkat.O

  • I have version 3.6.16 and when I login to my hotmail account, and type the first letter of the email address, a drop down box appears with my hotmail address and I can choose it from that box with a click. How do I get version 4 to do this? Thanks.

    I have version 3.6.16 and when I login to my hotmail account, and type the first letter of the email address, a drop down box appears with my hotmail address and I can choose it from that box with a click.
    How do I get version 4 to do this?
    Thanks.

    The new but not-ready-for-prime-time autocomplete method searches for matches that contain the entered text, not just ones that begin with the string. Your options are:
    1) type in longer strings that narrow the search
    2) use an add-on to search just the beginnings:
    https://support.mozilla.org/en-US/questions/1037469
    3) install an older version of TB:
    http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/

Maybe you are looking for