Good morning, AS3 help needed for building my own site in flash

Good morning to all,
I am creating a site in Flash, I am using AS3 to create a
site that stops/starts the movie on my home page and I have a
series of buttons that play a head (or are supposed to) to the a
frame for each additional page. Do I need A.S. for each button as
well? I didn't think I did. The script below is the first one in
the layer titled actions, this I thought is supposed to stop/start
the movie at the beginning and the button abt_mgn_btn is supposed
to bring it to frame 10 to play my about page. ?? at my frame
number 10 should I put the stop(); script there as well? And at
every frame break for the next pages? I am hopelessly in need of
guidance. Thank you to anyone helping me out.
import flash.events.EventDispatcher;
import flash.display.MovieClip;
this.stop();
function startMovie(event:MouseEvent):void {
this.gotoAndPlay(10);
abt_mgn_btn.addEventListener(MouseEvent.click,startMovie);

If you have a button on the same timeline as your code with
the instance name of abt_mgn_btn, then, when this button is
released, the playback head will jump to frame 10 of the current
timeline and continue to play.
If you want the playback head to jump to that frame and stop
then, either use gotoAndStop(10), or put a stop(); command at frame
10. GotoAndStop() will work more reliably.
Have you gone through the tutorials that come with Flash?
These tutorials may help you to understand the basics of working in
Flash CS3. You may also benefit from a book or two on Flash. Try
"Foundation Flash CS3 for Designers" by Tom Green and David Stiller
from friends of Ed, ISBN 159059861X and/or "Adobe Flash CS3
Professional, Classroom in a Book" from Adobe Press, ISBN
0321499824.

Similar Messages

  • Help needed for building report with execution method Java Concurrent prog

    Hi,
    I have saw a report like this:
    The report has executable "XML Publisher Data Template Executable", short name as "XDODTEXE", application "XML Publisher",execution method "Java Concurrent program". Also the report has a XML publisher Data Template and Data definition and in the data definition a .xml file is attached.
    I could not understand what is the data source?
    Could anyone help me on how to build or update this type of report?
    Is there any link or help docs which has proper step by step procedure to build this type of xml publisher report?
    Please help.
    Thanks.

    The xml file which is attached to the data definition is the data source and it has sql queries and structure of xml file.
    Check this out for step-by-step guidance.
    http://www.oracle.com/technetwork/middleware/bi-publisher/overview/xmlebsrep-132947.pdf
    http://apps2fusion.com/at/ps/51-prabhakar/262-xml-publisher-and-data-template-sql-query-to-develop-bi-publisher-reports
    For more on data templates refer user guide
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e12187/T421739T434255.htm

  • Lost Newbie, help needed for building dream machine

    Hello everyone!
    I was wondering if you could tell me what you think about this setup for premiere, after effects and speed grade use:
    http://pcpartpicker.com/user/trundrumbalind/saved/#savedbuild_167634
    I know it's probably an overkill, but what do you guys think?

    First off, I would not go for that particular discrete sound card: It is not sufficiently better in quality than onboard audio to justify the $58 cost. What's more, that card is not a true X-Fi card at all; in fact, it is basically a descendant of the old software-based Ensoniq AudioPCI, which (mis)uses the CPU for most audio tasks (there is a controller chip on that card, but that chip is very similar to the codec-based onboard audio).
    Second, the RAM and motherboard are both overkill. In fact, you might not be able to run all four sticks of RAM at anywhere near its DDR3-2133 speed. Intel (and JEDEC) officially limit the maximum memory speed with a fully-populated memory controller to only DDR3-1333 speed. You can run that memory at the DDR3-2133 speed using an XMP profile - but then, you're limited to running only two sticks of RAM total at that speed. Besides, that quad-channel kit is really meant for LGA 2011 platforms, not LGA 1155 platforms. And the motherboard actually costs as much money as or more money than many good X79 LGA 2011 motherboards. Remember, the LGA 1155 platform has only two memory controller channels, not four. The official JEDEC spec allows the implementation of up to four ranks per memory controller channel - albeit at only up to DDR3-1333 speed. With DDR3-1600 and higher-speed RAM as well as all RAM running using XMP profiles, JEDEC officially limits such operation to only two ranks per channel (one double-sided DIMM, such as in all 8GB DIMMs, already eats up two ranks per slot).
    In other words, that setup is a waste of money at that price point. Why spend $2600+ on a limited LGA 1155 build when you could have gotten a superior-performing LGA 2011 build with an i7-3930K for the same price or slightly less? As a matter of fact, I would personally not spend more than about $2000 for LGA 1155.

  • Help needed for writing query

    help needed for writing query
    i have the following tables(with data) as mentioned below
    FK*-foregin key (SUBJECTS)
    FK**-foregin key (COMBINATION)
    1)SUBJECTS(table name)     
    SUB_ID(NUMBER) SUB_CODE(VARCHAR2) SUB_NAME (VARCHAR2)
    2           02           Computer Science
    3           03           Physics
    4           04           Chemistry
    5           05           Mathematics
    7           07           Commerce
    8           08           Computer Applications
    9           09           Biology
    2)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2) SUB_ID1(NUMBER(FK*)) SUB_ID2(NUMBER(FK*)) SUB_ID3(NUMBER(FK*)) SUBJ_ID4(NUMBER(FK*))
    383           S1      9           4           2           3
    384           S2      4           2           5           3
    ---------I actually designed the ABOVE table also like this
    3) a)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2)
    383           S1
    384           S2
    b)COMBINATION_DET
    COMBDET_ID(NUMBER) COMB_ID(FK**) SUB_ID(FK*)
    1               383          9
    2               383          4
    3               383          2
    4               383          3
    5               384          4
    6               384          2          
    7               384          5
    8               384          3
    Business rule: a combination consists of a maximum of 4 subjects (must contain)
    and the user is less relevant to a COMB_NAME(name of combinations) but user need
    the subjects contained in combinations
    i need the following output
    COMB_ID COMB_NAME SUBJECT1 SUBJECT2      SUBJECT3      SUBJECT4
    383     S1     Biology Chemistry      Computer Science Physics
    384     S2     Chemistry Computer Science Mathematics Physics
    or even this is enough(what i actually needed)
    COMB_ID     subjects
    383           Biology,Chemistry,Computer Science,Physics
    384           Chemistry,Computer Science,Mathematics,Physics
    you can use any of the COMBINATION table(either (2) or (3))
    and i want to know
    1)which design is good in this case
    (i think SUB_ID1,SUB_ID2,SUB_ID3,SUB_ID4 is not a
    good method to link with same table but if 4 subjects only(and must) comes
    detail table is not neccessary )
    now i am achieving the result by program-coding in C# after getting the rows from oracle
    i am using oracle 9i (also ODP.NET)
    i want to know how can i get the result in the stored procedure itsef.
    2)how it could be designed in any other way.
    any help/suggestion is welcome
    thanks for your time --Pradeesh

    Well I forgot the table-alias, here now with:
    SELECT C.COMB_ID
    , C.COMB_NAME
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID1) AS SUBJECT_NAME1
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID2) AS SUBJECT_NAME2
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID3) AS SUBJECT_NAME3
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID4) AS SUBJECT_NAME4
    FROM COMBINATION C;
    As you need exactly 4 subjects, the columns-solution is just fine I would say.

  • Found 0 results for Good Morning, I'm all for updates and maintaining, but I'm upset that Googletooolbar is no longer compatible with Mozilla 5 because I had a great amount of sites saved on Google Bookmark and now it is lost. Any suggestions?

    Good Morning, I'm all for updates and maintaining, but I'm upset that Googletoolbar is no longer compatible with Mozilla 5 because I had a great amount of sites saved on Google Bookmark and now it is lost. Any suggestions?

    Hi userwhat,
    Your personal data should have been saved, and you can try to follow these steps to fix your problem.
    *First, you should report that to the developer of the add-on the troubles that you are experiencing.
    * Then, you can try [https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/ The Add-on Compatibility Reporter], which allows you to use add-ons that haven't yet been explicitly updated to work with Firefox 5, and lets you report the results of compatibility.
    * For add-ons that do not work with The Add-on Compatibility Reporter, you can still downgrade to the previously maintained version, which is Firefox 3.6 that you can download here: [http://www.mozilla.com/en-US/firefox/all-older.html http://www.mozilla.com/en-US/firefox/all-older.html]

  • Good Morning, I'm all for updates and maintaining, but I'm upset that Googletooolbar is no longer compatible with Mozilla 5 because I had a great amount of sites saved on Google Bookmark and now it is lost. Any suggestions?

    Good Morning, I'm all for updates and maintaining, but I'm upset that Googletoolbar is no longer compatible with Mozilla 5 because I had a great amount of sites saved on Google Bookmark and now it is lost. Any suggestions?

    Hi userwhat,
    Your personal data should have been saved, and you can try to follow these steps to fix your problem.
    *First, you should report that to the developer of the add-on the troubles that you are experiencing.
    * Then, you can try [https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/ The Add-on Compatibility Reporter], which allows you to use add-ons that haven't yet been explicitly updated to work with Firefox 5, and lets you report the results of compatibility.
    * For add-ons that do not work with The Add-on Compatibility Reporter, you can still downgrade to the previously maintained version, which is Firefox 3.6 that you can download here: [http://www.mozilla.com/en-US/firefox/all-older.html http://www.mozilla.com/en-US/firefox/all-older.html]

  • Color management help needed for adobe CS5 and Epson printer 1400-Prints coming out too dark with re

    Color management help needed for adobe CS5 and Epson printer 1400-Prints coming out too dark with reddish cast and loss of detail
    System: Windows 7
    Adobe CS5
    Printer: Epson Stylus Photo 1400
    Paper: Inkjet matte presentation paper with slight luster
    Installed latest patch for Adobe CS5
    Epson driver up to date
    After reading solutions online and trying them for my settings for 2 days I am still unable to print what I am seeing on my screen in Adobe CS5. I calibrated my monitor, but am not sure once calibration is saved if I somehow use this setting in Photoshop’s color management.
    The files I am printing are photographs of dogs with lots of detail  I digitally painted with my Wacom tablet in Photoshop CS5 and then printed with Epson Stylus 1400 on inkjet paper 20lb with slight luster.
    My Printed images lose a lot of the detail & come out way to dark with a reddish cast and loss of detail when I used these settings in the printing window:
    Color Handling: Photoshop manages color, Color management -ICM, OFF no color adjustment.
    When I change to these settings in printer window: Color Handling:  Printer manages color.  Color management- Color Controls, 1.8 Gamma and choose Epson Standard it prints lighter, but with reddish cast and very little detail and this is the best setting I have used so far.
    Based on what I have read on line, I think the issue is mainly to do with what controls are set in the Photoshop Color Settings window and the Epson Printer preferences. I have screen images attached of these windows and would appreciate knowing what you recommend I enter for each choice.
    Also I am confused as to what ICM color management system to use with this printer and CS5:
    What is the best ICM to use with PS CS5 & the Epson 1400 printer? Should I use the same ICM for both?
    Do I embed the ICM I choose into the new files I create? 
    Do I view all files in the CS5 workspace in this default ICM?
    Do I set my monitor setting to the same ICM?
    If new file opens in CS5 workspace and it has a different embedded profile than my workspace, do I convert it?
    Do I set my printer, Monitor and PS CS5 color settings to the same ICM?
    Is using the same ICM for all devices what is called a consistent workflow?
    I appreciate any and all advice that can be sent my way on this complicated issue. Thank you in advance for your time and kind help.

    It may be possible to figure out by watching a Dr.Brown video on the subject of color printing. Adobe tv
    I hope this may help...............

  • File missing (file\BCD error code 0Xc0000034 help need for work!

    file missing (file\BCD  error code 0Xc0000034 help need for work!    what can i do?
    have an p 2000 notebook pc

     Hi bobkunkle, welcome to the HP Forums. I understand you cannot boot passed the error you are receiving.
    What is the model or product number of your notebook? What version of Windows is installed?
    Guide to finding your product number
    Which Windows operating system am I running?
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Good morning. I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an e.mail i can use in Apple USA? Thanks.

    Good morning. I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an Apple's USA e.mail i can use ? Thanks.

    There is a link at the bottom of this page. http://www.apple.com/contact/

  • Q hello good morning would help me with something last night started to charge my iPhone and when it was fully charged the night off and the battery was consumed alone and without any battery dawned

    hello good morning would help me with something last night started to charge my iPhone and when it was fully charged the night off and the battery was consumed alone and without any battery dawned

    Hi, had the same problem with my ipad.
    First of all I would suggest to close all apps which might be opened (maybe one is working without that you know).
    To close the apps press twice in a row the home button and keep a finger on the first app which appesars on the lower band until the entire row starts moving. then press the red MINUS on all oyur apps in order to close them all.
    Then switch on and off your phone and see whether the battery is still draining.
    if this continues try to keep you phone on a flight modus to see if this is due to internet connection.
    maybe you should review some of your settings, as notifications, bluetooth, push services etc. (see specific topics on how to save battery).
    If you still have not solved your problem try to restart you phone as a new one (after that you can re-download all your apps). 8do this by using itunes)
    remind to save your data (e.g. pictures) prior to this operation.

  • Help need for force to signout All session ! how...

    hi
         help need for force to  signout All session !  how ??
    Solved!
    Go to Solution.

    Hi and welcome to the Skype Community,
    To force a signout of all instances your Skype is signed into please change your password: https://support.skype.com/en/faq/FA95/how-do-i-change-my-password
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • HT6058 good morning.please help me with my iphone 5.i already downloaded iOS7 in my software update.but eventhough i have internet connection,verifying update said that i have no internet connection.what should i do?

    good morning.please help me with my iphone 5.i already downloaded iOS7 in my software update.but eventhough i have internet connection,verifying update said that i have no internet connection.what should i do?

    i try to reset my iphone but still the reply pf verifying update still the same.update failed because im no longer connected to internet.but i have full signal strength of internet.what should i try to do?

  • Query help needed for querybuilder to use with lcm cli

    Hi,
    I had set up several queries to run with the lcm cli in order to back up personal folders, inboxes, etc. to lcmbiar files to use as backups.  I have seen a few posts that are similar, but I have a specific question/concern.
    I just recently had to reference one of these back ups only to find it was incomplete.  Does the query used by the lcm cli also only pull the first 1000 rows? Is there a way to change this limit somwhere?
    Also, since when importing this lcmbiar file for something 'generic' like 'all personal folders', pulls in WAY too much stuff, is there a better way to limit this? I am open to suggestions, but it would almost be better if I could create individual lcmbiar output files on a per user basis.  This way, when/if I need to restore someone's personal folder contents, for example, I could find them by username and import just that lcmbiar file, as opposed to all 3000 of our users.  I am not quite sure how to accomplish this...
    Currently, with my limited windows scripting knowledge, I have set up a bat script to run each morning, that creates a 'runtime' properties file from a template, such that the lcmbiar file gets named uniquely for that day and its content.  Then I call the lcm_cli using the proper command.  The query within the properties file is currently very straightforward - select * from CI_INFOOBJECTS WHERE SI_ANCESTOR = 18.
    To do what I want to do...
    1) I'd first need a current list of usernames in a text file, that could be read (?) in and parsed to single out each user (remember we are talking about 3000) - not sure the best way to get this.
    2) Then instead of just updating the the lcmbiar file name with a unique name as I do currently, I would also update the query (which would be different altogether):  SELECT * from CI_INFOOBJECTS where SI_OWNER = '<username>' AND SI_ANCESTOR = 18.
    In theory, that would grab everything owned by that user in their personal folder - right? and write it to its own lcmbiar file to a location I specify.
    I just think chunking something like this is more effective and BO has no built in back up capability that already does this.  We are on BO 4.0 SP7 right now, move to 4.1 SP4 over the summer.
    Any thoughts on this would be much appreciated.
    thanks,
    Missy

    Just wanted to pass along that SAP Support pointed me to KBA 1969259 which had some good example queries in it (they were helping me with a concern I had over the lcmbiar file output, not with query design).  I was able to tweak one of the sample queries in this KBA to give me more of what I was after...
    SELECT TOP 10000 static, relationships, SI_PARENT_FOLDER_CUID, SI_OWNER, SI_PATH FROM CI_INFOOBJECTS,CI_APPOBJECTS,CI_SYSTEMOBJECTS WHERE (DESCENDENTS ("si_name='Folder Hierarchy'","si_name='<username>'"))
    This exports inboxes, personal folders, categories, and roles, which is more than I was after, but still necessary to back up.. so in a way, it is actually better because I have one lcmbiar file per user - contains all their 'personal' objects.
    So between narrowing down my set of users to only those who actually have saved things to their personal folder and now having a query that actually returns what I expect it to return, along with the help below for a job to clean up these excessive amounts of promotion jobs I am now creating... I am all set!
    Hopefully this can help someone else too!
    Thanks,
    missy

  • Help needed for Notifications

    After compaing many prducts in the category I went with Forms Central because overall it looked like it had the potential to be the best, and I still think that, but I am now very dependent on it and need a few answers if possible.  First of all FormsCentral doesn't seem to show up on Adobe product lists when phoning in for help or in some on-line places.  Is FormsCentral considered an Adobe core product that they are committed to long term?  I've tied phone support 3 times now - and left a callback number and each time they call back and I jst get the recording with music on hold and have waited over an hour each time and still have not had anyone pick up the phone.
    But specific questions related to the product:
    1.  Why can I not have notifications go to an e-mail other than the one registered on the account.   For confirmations you can specify a co-author's email for the reply to field, but why not the same for notifications back to the form owner.  And how can you specify not to use a reply-to addresss at all?
    2.   What kind of backup does Adobe offer on forms and their data in the event of some disaster on the form owner's part.  Is there a way to retrieve the forms and data from a prior date if need be?
    3. When publishing a response results table to a web addreee, how can I put a pssword on it to be required to open it?  I know it has a very unique address and not likely to be seen accidentally by anyone but I have a client who insists on that befoer he will use it.
    4.  A unique ID field option would be nice
    5.  A hidden field on the form results that captures the form filler's IP address would really help too.
    Overall though great product and if you can keep the enhancements coming this product will be tops.
    Many thanks.

    We apologize for the poor experience you had with our call-in support. We are definitely committed to FormsCentral. If you ever have any questions do not hesitate to post them on this forum or send an email to [email protected] Both I and the entire product team monitor the forum and that email alias. We are here to help you... your feedback also helps us to build a better product.
    Regarding your questions:
    I wrote up a FAQ on how others can receive e-mail notifications. You can read it here: http://forums.adobe.com/docs/DOC-1424I'm not sure what you mean by this "And how can you specify not to use a reply-to addresses at all?" E-mail notifications only have a no-reply address and submission receipts have an option to turn it off.
    The form file has a history. Click the clock in the lower right corner to see it. You can roll back to an earlier version. If you are really worried about data loss you should also save the data out as an Excel file on occasion.
    There is no way to put a password on a published form file. You should just share the form file with him and make him a Reader. He would need a username and password to access it and he would see the same thing as the published file.
    Good feedback. If you haven't already, you should vote on that in the idea section - someone else has already asked for this feature. This helps us to prioritize.
    Why do you need to know the IP address?
    Thanks for your feedback!
    Randy

  • Help Needed in Building JTree

    HI,
    I've a doubt in Building a JTree.It wud be helpful if some one helps me with a better logic for building this Tree..
    I have a tree like this:
    root
    |
    A--B--C--D
    A--B--C--D
    A--B--C
    A--B--C--E--F
    I have the tree nodes like this . i need to merge the nodes like this
    root
    |
    A
    |
    -- B
    |
    --C
    |
    --D
    --E
    |
    --F
    I've tried it in few ways. It doesn't seems to be working.. Can some one help me in giving me a better logic in doing this

    Hello,
    When updating the tree, do not access the tree nodes directly. Update the tree via its (TreeModel).
    to get the model of your JTree use
    DefaultTreeModel treeModel = (DefaultTreeModel)myTree.getModel();to add nodes use the method
    treeModel.insertNodeInto(newChild,parent,offset);and remove nodes using
    treeModel.removeFromParent(nodeToRemove);--
    Regards,
    Ahmed Saad

Maybe you are looking for