How to Create Buttons outside the stage area

I am able to create my flash project and make it function
they way I intended, however, I need to be able to place the
buttons, that control the flash, outside of the flash stage, in a
different location on the web page, is this possible ?

Could it be as simple as naming the external button the same
as the potential flash button, or does the flash movie only
recognize button presses within the flash movie. I suspect this is
true.
Is there any example code that would enable this ?

Similar Messages

  • Hide objects outside the stage

    Hi there!
    I have recently downloaded a sample FLA file and I see the stage is FIXED on top-left side of the flash screen and objects outside the stage does not appear on screen (Like a mask, but there is no mask layer).
    And when I create a new file the stage appears in middle of the screen and objects outside the stage are not masked.
    Would you please help me what should I do in this case?
    (I always use a very big White layer in top of all other layers, to cover out of stage, OR use a mask layer)
    Regards,
       Ali

    Hi!
    Sorry if my question was not clear. here is the link (adobe TV):
    http://downloads.tv.adobe.com/2012-00-24/WebChallenge_FL_3.zip
    I have uploaded that single FLA file to the address below :
    http://www.howallah.com/Mobile.fla
    To simplify my question, each flash scene is indeed divided into 3 sections based on colors (white, light grey, dark grey) as marked below :
    (the Zoom is 20% to cover them all).
    Section 1.  is called Stage (I know)
    Section 2.  it expands automatically as you move an object outside the stage (image, movieclip etc.) and it works like a mask (I dont know the name of this section)
    Section 3.   is something like "out of Scene" (I don't know the name of this section as well)
    What I want to do is sort of FITTING Section 1 (Stage) to Section 2.
    Exactly like the FLA sample file above.
    What is that good for?? to help me only see the stuff INSIDE the stage, without any need to make a mask layer or a LARGE white layer above all layers etc.!
    Anybody knows what I am talking about and having a clue please?
    Regards,
       Ali

  • How can flex tell if  it's a mouseup event when the user releases the mouse button outside the flex application?

    how can flex tell if it's a mouseup event when the user
    releases the mouse button outside the flex application? Say for
    instance mousedown was done within a 500x500 embedded flex app but
    mouseup is outside or relased on the HTML background. One more
    thing, when we have something draggable, Flex doesn't execute the
    stopDrag() when the user releases the mouse button outside the
    embedded swf or fles app. Pls. help me with this. Thanks!

    I don't think the flex app can tell what happens outside the
    app. But it can detect when it leaves the app, so I have found the
    following line works fine inside initApp():
    this.stage.addEventListener(Event.MOUSE_LEAVE, yourFunction);
    and you have to:
    import flash.display.Stage;
    Doug

  • Create buttons in the workbook?

    Hello Experts,
    Any information on how to create buttons to point to workbooks. These bottons correspond to different WorkBooks (not worksheets within workbook )
    button1: WorkBook1
    button2 : WorkBook2.
    Thanks,
    Sweatha

    Hi Sweatha,
    Are the workbooks already open?
    Are the workbooks stored on a local PC or LAN drive (and referred to using Microsoft reference), or are they stored on BW server (and referred to using SAP server ID)?
    If the workbooks are already open:
    Code behind button #1:
    Private Sub CommandButton1_Click()
        ActiveCell.Activate
        Workbooks(Workbook1).Activate
    End Sub
    Code behind button #2:
    Private Sub CommandButton2_Click()
        ActiveCell.Activate
        Workbooks(Workbook2).Activate
    End Sub
    If the workbooks are stored on PC or LAN as *.xls files:
    Code behind button #1:
    Private Sub CommandButton1_Click()
    Dim FileToOpen as String
        ActiveCell.Activate
        FileToOpen = Workbook1 'full path + name
        Workbooks.Open FileName:=FileToOpen
    End Sub
    Code behind button #2:
    Private Sub CommandButton2_Click()
    Dim FileToOpen as String
        ActiveCell.Activate
        FileToOpen = Workbook2 'full path + name
        Workbooks.Open FileName:=FileToOpen
    End Sub
    If the workbooks are stored on BW server and referred to using SAP server ID
    Code behind button #1:
    Private Sub CommandButton1_Click()
    Dim wbID as string
        ActiveCell.Activate
        wbID = Workbook1 'example: "2A024RULBDK33U5BNZH60RATU"
        Run "SAPBEX.XLA!SAPBEXreadWorkbook", wbID
    End Sub
    Code behind button #2:
    Private Sub CommandButton2_Click()Dim wbID as string
        ActiveCell.Activate
        wbID = Workbook2 'example: "2A024RULBDK33U5BNZH60RATT"
        Run "SAPBEX.XLA!SAPBEXreadWorkbook", wbID
    End Sub
    Regards, Pete

  • The margins of section # are set outside the printable area of the page.

    Hi i have a Hp 7410 all in one officejet. I have just gone from Xp Pro to Windows 7 64 bit. I have installed correct drivers and Hp's own tool tells me i have the current drivers. But i just went to print in Microsoft Word 2007 and am getting the error The margins of section # are set outside the printable area of the page. Do you want to continue?. If i continue i am missing the bottom section of my document. How can i fix this as this printer worked perfectly in XP but now in Windows 7 it is not working. this is the only trouble IM having......

    Hi,
    I'm not sure that changing from XP to Windows 7 should have a detrimental effect on your ability to print. I did check out the 7410 printer manual at the following location:
    http://h10032.www1.hp.com/ctg/Manual/c00235090.pdf
    On page 74 there is a reference for adjusting page margins in connection with MAC users & 2-sided printing.  However, perhaps if you go to the page layout tab in MS word & click on the margins section.  It offers a selection (Normal, narrow, moderate, wide & mirrored) so maybe if you select one of these the system will right size the document for printing.
    As I say I can't explain how this may have happened but hopefully choosing a margin setting will help.
    ---- If my answer was helpful please click the Kudos star.
    If your problem is solved please click the Accept as Solution button so other forum users can use the solution.---->
    (I am an HP employee) I am not a expert on all our products, but I'll do my best to help you.

  • How to Create Buttons With some operation

    Hello friends How can create button so that when i click that button it should open another new window so that i can select some options in that new window and do some calculations.
    Kindly help me .
    byee

    Hi JN,
    I have created a Frame which has some checkboxes , a button and text field. when i check some checkboxes and press the Button (ie in my program Metrics level Button ) it should display the result as number of checkboxes that are checked divided by total number of chechboxes. ie if i check some 6 check boxes and press the Metrics level button it should display 6 divided by 12 ie 0.5 in the Result Textfield.
    I am sending the code i have written.
    Thanks in advance.
    public class Frame extends java.awt.Frame {
    /** Creates new form Frame */
    public Frame() {
    initComponents();
    setSize(800, 800);
    private void initComponents() {
    label1 = new java.awt.Label();
    checkbox1 = new java.awt.Checkbox();
    checkbox2 = new java.awt.Checkbox();
    checkbox3 = new java.awt.Checkbox();
    checkbox4 = new java.awt.Checkbox();
    checkbox5 = new java.awt.Checkbox();
    checkbox6 = new java.awt.Checkbox();
    checkbox7 = new java.awt.Checkbox();
    checkbox8 = new java.awt.Checkbox();
    checkbox9 = new java.awt.Checkbox();
    checkbox10 = new java.awt.Checkbox();
    checkbox11 = new java.awt.Checkbox();
    checkbox12 = new java.awt.Checkbox();
    button1 = new java.awt.Button();
    textField1 = new java.awt.TextField();
    setLayout(null);
    addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(java.awt.event.WindowEvent evt) {
    exitForm(evt);
    label1.setText("Select the Metrics below");
    add(label1);
    label1.setBounds(320, 20, 136, 20);
    checkbox1.setLabel("Architecture Metrics");
    add(checkbox1);
    checkbox1.setBounds(240, 80, 84, 20);
    checkbox2.setLabel("Runtime Metrics");
    add(checkbox2);
    checkbox2.setBounds(240, 200, 115, 20);
    checkbox3.setLabel("Documentation Metrics");
    add(checkbox3);
    checkbox3.setBounds(240, 320, 152, 20);
    checkbox4.setLabel("Size");
    add(checkbox4);
    checkbox4.setBounds(280, 110, 49, 20);
    checkbox5.setLabel("Structure");
    add(checkbox5);
    checkbox5.setBounds(280, 130, 75, 20);
    checkbox6.setLabel("Complexity");
    add(checkbox6);
    checkbox6.setBounds(280, 150, 86, 20);
    checkbox7.setLabel("Size");
    add(checkbox7);
    checkbox7.setBounds(290, 230, 49, 20);
    checkbox8.setLabel("Structure");
    add(checkbox8);
    checkbox8.setBounds(290, 250, 75, 20);
    checkbox9.setLabel("Complexity");
    add(checkbox9);
    checkbox9.setBounds(290, 270, 86, 20);
    checkbox10.setLabel("Size");
    add(checkbox10);
    checkbox10.setBounds(300, 350, 49, 20);
    checkbox11.setLabel("Structure");
    add(checkbox11);
    checkbox11.setBounds(300, 370, 75, 20);
    checkbox12.setLabel("Complexity");
    add(checkbox12);
    checkbox12.setBounds(300, 390, 86, 20);
    button1.setLabel("Metrics level");
    add(button1);
    button1.setBounds(290, 470, 83, 24);
    textField1.setText("Result");
    textField1.setName("Result");
    add(textField1);
    textField1.setBounds(400, 470, 60, 20);
    pack();
    public void actionPerformed(ActionEvent e) {
    ****** I think code should be added here for the button pressed event*******
    /** Exit the Application */
    private void exitForm(java.awt.event.WindowEvent evt) {
    System.exit(0);
    * @param args the command line arguments
    public static void main(String args[]) {
    new Frame().show();
    // Variables declaration - do not modify
    private java.awt.Button button1;
    private java.awt.Checkbox checkbox1;
    private java.awt.Checkbox checkbox10;
    private java.awt.Checkbox checkbox11;
    private java.awt.Checkbox checkbox12;
    private java.awt.Checkbox checkbox2;
    private java.awt.Checkbox checkbox3;
    private java.awt.Checkbox checkbox4;
    private java.awt.Checkbox checkbox5;
    private java.awt.Checkbox checkbox6;
    private java.awt.Checkbox checkbox7;
    private java.awt.Checkbox checkbox8;
    private java.awt.Checkbox checkbox9;
    private java.awt.Label label1;
    private java.awt.TextField textField1;
    // End of variables declaration
    this is the output when i execute the program

  • Does live streaming video disable event of a button on the stage?

    When a video is streamed from flash Media Server then the
    event assigned to any button on the stage doesn't work at runtime,
    Code example:
    var myNC:NetConnection = new NetConnection();
    myNC.connect("rtmp://server.domain.com/application");
    var myNS:NetStream = new NetStream(myNC);
    myNS.play("myNStream");
    But when the video is streamed without connecting rtmp URL
    and just requesting normal URL, the event of button works.
    Code example:
    var myNC:NetConnection = new NetConnection();
    myNC.connect(null);
    var myNS:NetStream = new NetStream(myNC);
    myNS.play("stream.flv");
    The video streaming is done using NetConnection and NetStream
    class in ActionScript 3.0.
    Does anyone know What's the matter?

    There is no straightforward way in LabVIEW to do on-the-fly H.264 compression.  If you want to send images over TCP, you can do so by converting the image to an array, flattening the array to a string, sending it over a TCP or UDP connection, then on the receiving end you unflatten from string to array and convert the array back to an image.  You can reduce the resolution of the image using the IMAQ Resample VI before you convert the image to an array.  Look up the UDP and TCP examples in the NI Example Finder to see how to create the sender and receiever VIs.
    www.movimed.com - Custom Imaging Solutions

  • How to create a muli line text area using JavaFx

    Hi all,
    Since the preview SDK does not contain TextArea any more, I am wondering how to create a muli line text area using JavaFX. The behaviour of this text area/field should be somehow similar to JTextArea in Swing or StyledTextWidget in SWT.
    Does JavaFX have any support for this? What would be a sensible approach to create such a widget?
    Thanks for your suggestions,
    br michael

    This is a pretty old thread (I know I came across this while searching for something similar recently), but I figured I'd throw this out there in case other people might find this useful. As I write this, JavaFX's latest version is 1.3... which may have added the needed functionality since the last post.
    You can now create a multi-line text area using a TextBox and by specifying the nubmer of lines and setting the "multiline" value to true. It may not offer all of the same functionality as JTextArea, but it did the job for what I needed... newlines by pressing enter, scrollbar if text surpasses height, etc.
    Here's a simple example:
    Group {
       content: [
          TextBox {
             text: "This is a multi-line textbox"
             lines: 10  // <-- this may/may not be necessary depending on your situation. Default is 5.
             multiline: true
    }Edited by: loeschg on Jul 29, 2010 2:59 PM

  • Is it possible to add a button into the spliter area of a JSplitPane?

    I want to have a button in the spliter area of the JSplitPane. the purpose is to add an item from the upper component to the lower component. is it possible to do it in this way?

    the above link requires to register using $$$ before u can view the code, so poor me didn't go. but anyway, i worked out how to do this in the easiest way:
    JSplitPane mySplitPane = new JSplitPane();
    BasicSplitPaneDivider divider = ((BasicSplitPaneUI)mySplitPane.getUI()).getDivider();
    divider.setLayout(new FlowLayout());
    divider.add(new JButton("haha"));then u can try to show() this split pane in any frame or panel. just get the divider obeject then modify it in any manner u like.

  • How do I know if the apps are free or not if I already have them on my ipad??

    How do I know if the apps are free or not if I already have them on my ipad?? I have an ipad and it was open by another person's Apple ID and all the applications too. Now I have change the Apple ID by my name and I wanted to update the apps and I can't remember if the apps were free or not, and I don't want to delete them without knowing if they are free.

    When you buy an app the app is permanently allocated to the AppleID account you bought it through.  You can then download that app on up to five devices,  as many times as you want, without buying it again.  So deleting an App is not a big problem, you just log into your account in iTunes again, find the app, and instead of showing you a 'BUY' button it shows you a 'DOWNLOAD' or 'INSTALL' button.
    If you change the AppleID account  you use in your iPad then Apple will think you sold the iPad to someone else, and all the apps with that name will stop working anyway.
    But you can change the name and email address for an AppleID account, without moving to a new AppleID account, by following these instructions:
    http://support.apple.com/kb/ht5621

  • How to creat deadlock for the purchase order in SAP Workflow

    How to creat deadlock for the purchase order in SAP Workflow

    Hi Ben,
    Are you using FM "CONVERT_DATE_TO_EXTERNAL" before passing delivery date?  If not, use FM like this, before passing the date to BAPI_PO_CREATE1 and it might work
      DATA: vf_doc_date(10),
                 internal_date TYPE d.
         vf_doc_date = sy-datum.              "Document date.
         internal_date = vf_doc_date.
      CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
        EXPORTING
          date_internal            = internal_date
        IMPORTING
          date_external            = vf_doc_date
        EXCEPTIONS
          date_internal_is_invalid = 1
          OTHERS                   = 2.
    Regards,
    Vivek

  • Dynamic footer row prints outside the content area

    Hi,
    I'm using LiveCycle Designer ES 8.2.1. I also have a web application injecting data into the report I created with LiveCycle. The basic structure is the following:
    1 Master page with 1 page and a content area containing a table filled with a list of object. My table has 1 header row, 2 body rows and a footer row that is added dynamically with page break condition.
    The logic behind that is written in FormCalc. Our objects are sent as a list which fills either one or the other body row based on a type. Each object has an "authority" property with a certain value that are used to mark the pages. The list of object is sorted by authority. So, when the current iterating object has a different authority than the previous one, we insert a page brake and the footer row. Everything is wraped in a subform that is "In Content Area" (Object/Pagination/Place).
    The problem is that the footer row is not considered as part of the content area. If the last line of a section fits tight in the content area, the footer row overflows outside the content area and even the whole page in some cases.
    Here are more details:
    We tried any combination of subform wraping and ticking of the "Allow page break with content" check box.
    We tried changing the type of the footer row for a body row in case footers were different than body rows.
    We tried every combination of "Keep with" and "place".
    We tried to change the footer row to a body row and have it displayed on every page and that work, but our client refused the solution...
    Starting with the above (pt 4) template and changing back the body to footer row brought us to the begining
    To the best of our knowledge, we tried everyting possible...
    What I'm looking for is either a confirmed bug for version 8.2.1 about this or a solution other than redesigning the whole report.
    Best regards,
    Sylvain Cloutier

    Hi,
    I know this might no help to solve my issue, but this document doesn't belong to me and I'm afraid I cannot share the file on the internet. It belongs to our client to whom we offer support on this. You know... I'd probably lose my job!
    Though, I've been trying with Adobe LiveCycle Designer ES4 11.0.0 and the same problem occurs. It looks like the row is added to the table after the whole document was produced, so it seems to be working as designed.

  • How to create queries on multiproviders& what are steps to be taken.

    Hi all,
    How to create queries on multiproviders& what are steps has to be take care.
    Thanks,
    cheta.

    Hi,
    Following scenario for  sample for slow moving items for multiproviders.
    Slow Moving Item Scenario
    You want to define a query that displays all products that have been purchased only
    infrequently or not at all. In other words, the query is also display characteristic values for
    which no transaction data or only low values exist for the selected period.
    Procedure
    In the Administrator Workbench;
    1. Create a MultiProvider consisting of a revenue InfoCube, containing the InfoObject
    Material (0MATERIAL), and the InfoObject 0MATERIAL. The InfoObject must be set as
    an InfoProvider in InfoObject maintenance. In other words, you need to have assigned
    the InfoObject to an InfoArea. (also refer to Tab Page: Master Data/texts [Ext.]).
    In the BEx Analyzer:
    2. Select your MultiProvider in the Query Designer.
    3. Define a query that contains the InfoObject 1ROWCOUNT in the columns.
    The InfoObject 1ROWCOUNT is contained in all “flat” InfoProviders, that is, in all
    InfoObjects and ODS objects. It counts the number of records in the InfoProvider.
    In this scenario, you can see from the row number display whether or nor values
    from the InfoProvider InfoObject are really displayed.
    4. Save the query and execute it. All values are now displayed, including those for materials
    that were not purchased.
    If you filter by time (0CALYEAR, for example), values from the InfoProvider
    InfoObjects are not displayed since 0CALYEAR is not an attribute of
    0MATERIAL. You can see this from the absence of values in the 1ROWCOUNT
    column in the query. If you want to restrict by time, you need to proceed as
    follows:
    Constant Selection for the InfoObject
    You need to set the constant selection for the 1ROWCOUNT key figure in order to be able to
    set a filter by time in this query.
    1. In the Query Designer, via the context menu for 1ROWCOUNT, choose Edit.
    2. On the left hand half of the screen, under the data package dimension, select the
    characteristic InfoProvider (0INFOPROV) and drag it into the right-hand screen area.
    3. From the context menu for the InfoProvider, choose Restrict, and restrict across the
    InfoProvider InfoObject.
    4. Also from the context menu for the InfoProvider, choose the function Constant Selection.
    5. Save the query and execute it. You can now also set a filter for a time characteristic, the
    materials display remains as it was.
    Displaying Slow Moving Items
    If you want to display a list of slow moving items, excluding products that are selling well, you
    need to proceed as follows:
    1. In the Query Designer, via the context menu for 1ROWCOUNT, choose Edit.
    2. Via the context menu for InfoProvider, choose the function Display Empty Values. Also
    select Constant Selection.
    3. Save the query and execute it. The result is that the system displays the materials for
    which there was no revenue.
    Displaying Products with Small Revenues
    If you want to display a list of products that have not been sold or have only been selling
    badly, you need to proceed as follows:
    1. Set constant selection as described above, but do not select the display empty values
    function.
    2. In the Query Designer, define a condition for the 0MATERIAL InfoObject. Specify a value
    that is to be the upper limit for a bad sale.
    3. Save the query and execute it. The result is that the system displays all materials that
    have not been sold or have been selling badly.
    Thanks,
    Sankar M

  • How to create links to the same page, how to create links to the same page

    How to create link to the same page with iweb?
    Thanks

    You're referring to anchors.  There are a couple of ways. These topics discuss them:
    iWeb FAQ - Anchors
    How do i hyperlink to certain portion...: Apple Support Communities
    OT

  • E-rec   How to create or generate the index category????? SOS!!!!!

    Hi guys,
    How to create or generate the index category?.
    From the posts of this forum I have read more things but anything works:
    reports:
    -RSRETT02
    -RCF_INITIALIZE_KPRO
    -RSTIRIDX_INDXCAT_RETRIEVE
    Can anyone show me the way?
    Thanks in advance.

    Hello,
    If you haveat least Version 7.10.18 then KPro configurations are no longer required. Did you activate Business Function HCM_ERC_SES_1 as this is required for SES? The scenario to choose will depened on whether you are making a new implementation, upgrading without use of SES before or upgrading after using SES with earlier versions. Scenario 1 is for when you have activated HCM_ERC_CI_3 after using earlier versions with HCM_ERC_SES_1 already activated. Scenario 2 is for those who have upgrade and activated HCM_ERC_CI_3 but where using search without SES in their earlier version. Last scenario is when you are making a new e-Recruiting implementation (not upgrading). Also check notes 1426757 and 817145.
    When you try to search are you getting an error? Can you check in SLG1 transaction after trying to search and post the error messages. Also can you execute report RCF_CHECK_SEARCH_SETTINGS as it will point you to the missing configurations points if any based on your version.
    Regards,

Maybe you are looking for

  • ID3 Tags and Music Sort

    My mp3 ID3 tags are all messed up here and there. As I fix them in MediaSOurce, the "file" stays where it is and cannot be moved to where it belongs (in the appropriate folder). Any idea on how to move files around that are on the player?

  • Function module to convert date format to yyyymmdd

    Hi All, Would like to seek for your advice. Is there any function module to convert the date format from mm/dd/yyyy to yyyy/mm/dd? Thanks in advance. Regards, Shawn Moderator Message: Basic date question. Thread locked. Edited by: Suhas Saha on Dec 3

  • RoboHelp cannot open Word

    when i load RH, i get the message that it could not open Word, but then Word opens with an error stating "Microsoft Visual Basic -- Code execution has been interupted" This is a very straight forward project that has not been opened in months Anybody

  • Why do my videos look too narrow when I upload to youtube

    I have tried uploading to youtube in mp4 .mov and avi files, but the video always looks a little narrow with black space eiter side of the video. It also looks slightly stretched. What am I doing wrong?

  • Macbook Pro Keyboard and Mouse Unresponsive

    I have a 2007 Macbook Pro that has been working wonderfully for several years. This evening, I restarted the computer for the first time in a couple days, and when reaching the login screen my keyboard and mouse were no longer working. I forced a res