Can I place a "Return Button" within a clip?

Is it possible to place a button within a video clip that would enable a user to return to the previous menu? I am using submenus and to return to the submenu requires going back to the main menu and then back into the submenu.
24 inch iMac   Mac OS X (10.4.8)  

Is it possible to place a button within a video clip that would enable a user to return to the previous menu?
short answer is no. However you can add a button for the main menu
If you have a project with submenus, you can add a button that viewers can click to go back to the main menu.
To add a button for the main menu:
Open the menu where you want to add the button and choose Project > Add Title Menu Button.
Hope this helps.
SDMacuser

Similar Messages

  • How can we place a push button in ALV  report

    hi
    could anybody inform me
    how can we place a push button in ALV  report
    thanx
    regards
    kals.

    Hi kals.
    please have a look at demoprogram
    SALV_DEMO_TABLE_FUNCTIONS
    BCALV_GRID_05
    Regards
    Bernd

  • How to can I add a close button within a loadmovie swf

    I made a list of words, which are links. When you rollover the text it loads a graphic with definitions to the lists of words. I made the (graphic with definitions) a "swf" and I used the loadmovie script to load the swf.
    I added a button within the swf, to close the swf, and used the unload movie script to close the swf.
    Here's the problem, the swf loads but when I try to close the swf by using the button, nothing happens.
    Is this because I added the button within the swf. Or better yet, what script should I use to close the swf. I using AS2.
    thanks for any help

    For the button's unloading code try using:
    unloadMovie(this);
    Or
    _parent.unloadMovie(this);

  • Can i place a return to default button on my main page

    i would like to have basically an emurgency return to default switch on my run page is that possible

    cmwolf wrote:
    I need to have the default button only effect some of the controllers the VI you have in your example affects all items on my run page even my temperature and pressure measuring items is there a way I can segregate and isolate groups of items even if I have to use multiple right now I would be OK with that(actually almost prefer that).
     You can make an array of references, containing references to all controls you want to reset and the simply autoindex over them in a FOR loop whenever needed to reset each to defaults. You could even match it to a boolean array in order to select which ones you want to reset at runtime.
    Here's a rough draft (LabVIEW 8.5). Note that you can easily mix references for various controls (boolean, slides, etc). They will be coreced to the common generic class at the "built array" node. 
    cmwolf wrote:
    Also I am very confused on the while loop setup I tried to place one in my setup and could not get anything to correctly work is there a good tutorial or something that can walk me through how to use it better than the books I received with the hardware. 
    Please tell us in what way "it does not work correctly". Most likely it's some trivial thing.
    Message Edited by altenbach on 12-04-2008 09:01 AM
    Message Edited by altenbach on 12-04-2008 09:07 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    defaultsSelective.vi ‏28 KB
    DefaultsSelective.png ‏18 KB

  • Can I free transform individual buttons within the menu widget?

    When using the menu widget,
    1. Is it possible to break individual buttons from their row/column and free transform them?
    2. Could I delete an individual button while keeping the other buttons intact and not having to delete the page it was linked to?

    Hi
    Answering the questions :
    1) You can create different menu items for page elements and use as individual buttons with free transform option, you can try using tabbed panel to create menu items.
    2) You can if you have created a manual menu. The individual menu item will be deleted without effecting the link.
    Thanks,
    Sanjit

  • So far this week when using firefox I can't use links or buttons within a website, I had to open IE to even get to this support page, how do I fix this?

    When using Firefox I can goto websites but I can't use the buttons or links with in it. I have to use a different browser to delete email or get to my dvd list, ect.

    Hi revolg_98,
    see if this happen in [https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Safe Mode] , if does not happen in Safe Mode then see: [https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems].
    thank you

  • Can you place a include directive within an if statement?

    I am attempting to include one jsp file if one criteria is met and another jsp file otherwise. Does this work? I can't get it to. My code is below....
    <%@ page import="control.ScreenNames, control.ScreenFlowManager, java.util.*" %>
    <% ScreenFlowManager screenManager = new ScreenFlowManager();
    int screenNum = screenManager.getCurrentScreen(request);
    if (screenNum < 46) {
         System.out.println("< 46");
    %>
         <%@ include file="ScreenDefinitions1.jsp" %>
    <% } else {
         System.out.println("46 or >");
    %>
         <%@ include file="ScreenDefinitions2.jsp" %>
    <% }
         System.out.println("after if");
         request.getSession().setAttribute("screenNum", String.valueOf(screenNum));
    %>

    There are no error messages in the log.
    My main jsp code is as follows:
    <%@ page import="control.ScreenNames, control.ScreenFlowManager, java.util.*" %>
    <%@ taglib uri="WEB-INF/tlds/taglib.tld" prefix="j2ee" %>
    <% ScreenFlowManager screenManager = new ScreenFlowManager();
    int screenNum = screenManager.getCurrentScreen(request);
    request.getSession().setAttribute("screenNum", String.valueOf(screenNum));
    if (screenNum < 46) {
         System.out.println("< 46");
    %>
         <jsp:include page="ScreenDefinitions1.jsp" flush="true" />
    <% } else {
         System.out.println("46 or >");
    %>
         <jsp:include page="ScreenDefinitions2.jsp" flush="true" />
    <% }
         System.out.println("after if");
    %>
    <%@ include file="WEB-INF/window.js" %>
    <html>
    <table border=0 cellPadding=0 cellSpacing=0 height="10%" width="100%">
    <tr align="center">
    <td width="100%"><j2ee:insert template="template" parameter="HtmlTopIndex" /></td></tr></table>
    <table border=0 cellPadding=0 cellSpacing=0 height="80%" width="100%">
    <tr align="center">
    <td width="100%"><j2ee:insert template="template" parameter="HtmlBody" /></td></tr></table>
    <table border=0 cellPadding=0 cellSpacing=0 height="10%" width="100%">
    <tr align="center" valign="bottom">
    <td width="100%"><j2ee:insert template="template" parameter="HtmlFooter" /></td></tr></table></html>
    The included file code is as follows:
    <%@ page import="control.ScreenNames" %>
    <%@ page import="control.ScreenFlowManager" %>
    <% String str_screen = (String)request.getSession().getAttribute("screenNum");
    System.out.println("screen str = " + str_screen);
    int screen = Integer.parseInt(str_screen);
    System.out.println("screen int = " + screen);
    %>
    <j2ee:CreateTemplate template="template" screen="<%=screen%>">
    <j2ee:Screen screen="<%=ScreenNames.SUPPORT_LOGIN_SCREEN%>">
    <j2ee:Parameter parameter="HtmlTitle" value="eMoneyMail Support Sign In" direct="true"/>
    <j2ee:Parameter parameter="HtmlTopIndex" value="/login.jsp" direct="false"/>
    </j2ee:Screen>
    <j2ee:Screen screen="<%=ScreenNames.SUPPORT_MAIN_SCREEN%>">
    <j2ee:Parameter parameter="HtmlTitle" value="Welcome to eMoneyMail Support!" direct="true"/>
    <j2ee:Parameter parameter="HtmlTopIndex" value="/head.jsp" direct="false"/>
    <j2ee:Parameter parameter="HtmlBody" value="/SupportMain.jsp" direct="false"/>
    <j2ee:Parameter parameter="HtmlFooter" value="/foot.jsp" direct="false"/>
    </j2ee:Screen>
    My log file is as follows:
    < 46
    screen str = 1
    screen int = 1
    after if
    Thanks.

  • Windows 8.1 PC, using reader, when searching a folder containing approx 100 doc's. If i search for a word, no results are returned. only the doc names can be found but nothing from within the doc. This is a new problem and was not the case before.

    Windows 8.1 PC, using reader, when searching a folder containing approx 100 doc's. If i search for a word, no results are returned. only the doc names can be found but nothing from within the doc.
    This is a new problem and was not the case before.

    Works perfectly fine for me with the latest Reader version (11.0.09).
    You write that it worked "before"; before what?  An update?  Update from what version to what version?

  • How many push buttons can u place on selection screen application tool bard

    hi
    how many push buttons can u place on selection screen application tool bar
    and what is default function code for that buttons.

    Hi Chaitanya,
    You can place maximum 5 push buttons on Application Toolbar.
    please award the points incase if you are able to get the solution.
    Thanks
    Sivaram

  • How can I place active buttons in keynote?

    hellooo,
    how can I place active buttons in keynote?
    thx in advance

    answered in
    /message/4078825#4078825 [original link is broken]
    kindly avoid duplicate posts for the same issue.
    Raja

  • Button can be clicked only 4 times within 24 hours?

    I want to create a JSP page which has one button. Requirement of project is that button can be clicked only four times within 24 hours. After 24 hour it should again allow to click button for max four times. How can I do this? Please help.

    Hi,
    In our project we implemented the same functionality,
    This can be simply achieved by object serialization.
    i.e you can store object with two attribute say clickCount , startDate and endDate.
    you should have seperate thread which does activate and deactivate operations on button with buttonactivateFlag.
    when button is clicked you should check for flag and do accordingly, if active increment clickCount, else dont allow.
    Thread part: thread update the endDate attribute in object by constant freqency, if startDate != endDate then next day.
    buttonactivateFlag = true;
    startDate = endDate = current date;
    clickCount = 0;
    I hope this will work fine!

  • How can I place a video clip in CS6 within an irregular shape

    How can I place a video clip in CS6 within an irregular shape please

    Many thanks. I should have mentioned that I meant for the video to be an irregular shape also. However from what you said I have worked it out so thanks again for quick response. Pete.

  • The book who I selected doesn't move to the right in CheckedListBox and the reason is that I can't make an return.his code is good just for first user who I selected

    Imprumut = loan
    I have 6 tables: 
    I have one combobox(from where I select utilizatori(users)) and 2 CheckedListBox(Between first box and second box I have 2 buttons:imprumuta(loan) and restituie(return))
    This c# code works just for first user: Utilizator, but something's not good. When I add new utilizator(user) and select it,  the loan will be add in my SQL DataBase, but... the book who I selected doesn't move to the right in CheckedListBox and the reason
    is that I can't make an return
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using MySql.Data.MySqlClient;
    namespace proiect
        public partial class Imprumut : Form
            MySqlConnection con = new MySqlConnection("DataSource=localhost;UserID=root;database=biblio1");
            //stabilim conexiunea
            MySqlCommand comUser;//interogarea pe baza careia umplem comboBox
            MySqlDataAdapter adaptu;
            DataTable userT = new DataTable();
            MySqlCommand cmdCarti;//interogarea pe baza careia umplem checkListBox
            MySqlDataAdapter adaptCarti;
            DataTable CartiTabel = new DataTable();
            MySqlCommand cmdCartiImprumutate;//interogarea pe baza careia umplem checkListBox
            MySqlDataAdapter adaptCartiImprumutate;
            DataTable CartiImprumutateTabel = new DataTable();
            public int UserId
                get
                    return Convert.ToInt32(user.SelectedValue.ToString());
            void Completez_Combo_User()
                try
                    comUser = new MySqlCommand("SELECT n.userid, CONCAT(n.UserName) as UserN FROM users n left join userroles us on n.userid=us.userid left join roles r on r.roleid=us.roleid WHERE r.roleid='3'",
    con);
                    adaptu = new MySqlDataAdapter(comUser);
                    adaptu.Fill(userT);
                    user.Items.Clear();
                    user.DataSource = userT;
                    //DataTable din care sunt preluate datele pentru ComboBox user
                    user.ValueMember = "UserID";
                    //Valoarea din coloana UserID nu se afiseaza in combobox
                    user.DisplayMember = "UserN";
                    //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            void Completez_CheckList_Carti()
                try
                    cmdCarti = new MySqlCommand("SELECT BookID, CONCAT(title, ' ', ISBN,' ',author)as date_carte FROM books WHERE NumberLeft > 0 ORDER BY BookID", con);
                    adaptCarti = new MySqlDataAdapter(cmdCarti);
                    adaptCarti.Fill(CartiTabel);
                    imp.Items.Clear();
                    //carti.DataSource=null;
                    imp.DataSource = CartiTabel;
                    //DataTable din care sunt preluate datele pentru ComboBox carte
                    imp.ValueMember = "BookID";
                    //Valoarea din coloana BookID nu se afiseaza in combobox
                    imp.DisplayMember = "date_carte";
                    //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
                void Completez_CheckList_Cartires()
                    try
                        cmdCartiImprumutate = new MySqlCommand(string.Format("SELECT b.BookID, CONCAT(title, ' ', ISBN,' ',author) as date_carte FROM books b inner join userbooks ub on ub.bookid = b.bookid
    WHERE ub.userid = {0} ORDER BY BookID", UserId), con);
                        adaptCartiImprumutate = new MySqlDataAdapter(cmdCartiImprumutate);
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                        res.Items.Clear();
                        //carti.DataSource=null;
                        res.DataSource = CartiImprumutateTabel;
                        //DataTable din care sunt preluate datele pentru ComboBox carte
                        res.ValueMember = "BookID";
                        //Valoarea din coloana BookID nu se afiseaza in combobox
                        res.DisplayMember = "date_carte";
                        //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
            void Inregistrez_imprumut_in_BD()
                int useridu = Convert.ToInt32(user.SelectedValue.ToString()); //useridu = id book
                int bookidi;
                try
                    DateTime azi = System.DateTime.Now; //  Data imprumutului
                    DateTime atunci = termenul.Value;   //  Data restituirii
                    MySqlTransaction tranzactie = con.BeginTransaction();
                    MySqlCommand adaugImpr = new MySqlCommand("INSERT INTO bookshistory(UserID, BookID,BorrowDate) VALUES(@UserID, @BookID, CAST(@BorrowDate as datetime))", con);
                    MySqlCommand scadCarti = new MySqlCommand("UPDATE books SET numberleft=numberleft-1 WHERE bookid=@bookid", con);
                    MySqlCommand adauga_userbooks = new MySqlCommand("INSERT INTO userbooks(userId,bookID)VALUES(@userID,@bookID)", con);
                    adauga_userbooks.Transaction = tranzactie;
                    adaugImpr.Transaction = tranzactie;
                    scadCarti.Transaction = tranzactie;
                    try
                        foreach (int i in imp.CheckedIndices)
                            imp.SelectedIndex = i;
                            bookidi = Convert.ToInt32(imp.SelectedValue.ToString());
                            MessageBox.Show(bookidi.ToString());
                                     //bookidi va fi id-ul cartea bifata, pe rand din checklistBox
                                     //Inregistrez in tabela imprumut
                            adaugImpr.Parameters.AddWithValue("@UserID", useridu);
                            adaugImpr.Parameters.AddWithValue("@BookID", bookidi);
                            adaugImpr.Parameters.AddWithValue("@BorrowDate", azi);
                            adaugImpr.ExecuteNonQuery();
                            adaugImpr.Parameters.Clear();
                            adauga_userbooks.Parameters.AddWithValue("@userID", useridu);
                            adauga_userbooks.Parameters.AddWithValue("@bookID", bookidi);
                            adauga_userbooks.ExecuteNonQuery();
                            adauga_userbooks.Parameters.Clear();
                                    //Scad numarl de carti disponibile pentru cartea imprumutat
                            scadCarti.Parameters.AddWithValue("@bookid", bookidi);
                            scadCarti.ExecuteNonQuery();
                            scadCarti.Parameters.Clear();
                        tranzactie.Commit();
                    catch (Exception ex)
                        tranzactie.Rollback();
                        string message = ex.Message;
                        if (ex.Message.ToLower().Contains("duplicate entry"))
                            message = "Una dintre carti mai exista deja";
                        MessageBox.Show(message);
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            void Inregistrez_restituire_in_BD()
                int useridu = Convert.ToInt32(user.SelectedValue.ToString()); //useridu = id book
                int bookidi;
                try
                    DateTime azi = System.DateTime.Now; //  Data imprumutului
                    DateTime atunci = termenul.Value;   //  Data restituirii
                    MySqlTransaction tranzactie = con.BeginTransaction();
                    MySqlCommand modificIstoric = new MySqlCommand("UPDATE bookshistory SET returndate = @returnDate WHERE userID = @userID AND bookID = @bookID", con);
                    MySqlCommand adaugCarti = new MySqlCommand("UPDATE books SET numberleft = numberleft + 1 WHERE bookID = @bookID", con);
                    MySqlCommand sterge_userbooks = new MySqlCommand("DELETE  FROM userbooks WHERE userID = @userID AND bookID = @bookID", con);
                    sterge_userbooks.Transaction = tranzactie;
                    modificIstoric.Transaction = tranzactie;
                    adaugCarti.Transaction = tranzactie;
                    try
                        foreach (int i in res.CheckedIndices)
                            res.SelectedIndex = i;
                            bookidi = Convert.ToInt32(res.SelectedValue.ToString());
                            MessageBox.Show(bookidi.ToString());
                            //bookidi va fi id-ul cartea bifata, pe rand din checklistBox
                            //Inregistrez in tabela imprumut
                            modificIstoric.Parameters.AddWithValue("@UserID", useridu);
                            modificIstoric.Parameters.AddWithValue("@BookID", bookidi);
                            modificIstoric.Parameters.AddWithValue("@returnDate", termenul.Value);
                            modificIstoric.ExecuteNonQuery();
                            modificIstoric.Parameters.Clear();
                            sterge_userbooks.Parameters.AddWithValue("@UserID", useridu);
                            sterge_userbooks.Parameters.AddWithValue("@BookID", bookidi);
                            sterge_userbooks.ExecuteNonQuery();
                            sterge_userbooks.Parameters.Clear();
                            //Scad numarl de carti disponibile pentru cartea imprumutat
                            //adaugCarti.Parameters.AddWithValue("@bookid", bookidi);
                            adaugCarti.Parameters.AddWithValue("@bookid", bookidi);
                            adaugCarti.ExecuteNonQuery();
                            adaugCarti.Parameters.Clear();
                        tranzactie.Commit();
                    catch (Exception ex)
                        tranzactie.Rollback();
                        MessageBox.Show(ex.Message);
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            public Imprumut()
                InitializeComponent();
                try
                    con.Open();
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
                Completez_Combo_User();
                Completez_CheckList_Carti();
                Completez_CheckList_Cartires();
                //selecteaza_carti_utilizator();
                //  Initializez termenul din dateTimePicker la data de peste 15 zile fata de data sistemului
                termenul.Value = System.DateTime.Now.AddDays(15);
            private void imprumuta_Click(object sender, EventArgs e)
                Confirmare c = new Confirmare("Confirmati imprumutul?");
                DialogResult dr = c.ShowDialog();
                if (dr == DialogResult.Yes)
                    try
                        Inregistrez_imprumut_in_BD();
                        MessageBox.Show("Imprumutul a fost inregistrat");
                        //Dupa inregistrarea imprumutului o parte din carti nu mai sunt disponibile pentru imprumut
                        //Reincarc in CheckList cu Carti noua lista cu carti ramase dupa imprumut
                        //Pentru asta "resetez" datele din dataTable cartiT (sursa pentru carti.DataSource)
                        CartiTabel.Clear();
                        adaptCarti.Fill(CartiTabel);
                        CartiImprumutateTabel.Clear();
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
                if (dr == DialogResult.No)
                    MessageBox.Show("Imprumutul NU a fost inregistrat");
                    imp.ClearSelected();
                    //deselecteaza cartea selectat
                    foreach (int i in imp.CheckedIndices)
                        imp.SetItemChecked(i, false);
                    //debifeaza cartile bifate
                //if (imp.CheckedItems.Count > 0)
                //    //res.Items.Clear();
                //    foreach (string str in imp.CheckedItems)
                //        res.Items.Add(str);//adauga in partea cealalta, imprumuta
                //    while (imp.CheckedItems.Count > 0)
                //        imp.Items.Remove(imp.CheckedItems[0]);
            private void restituie_Click(object sender, EventArgs e)
                Confirmare r = new Confirmare("Confirmati restituirea?");
                DialogResult dr = r.ShowDialog();
                if (dr == DialogResult.Yes)
                    try
                        Inregistrez_restituire_in_BD();
                        MessageBox.Show("Restituirea a fost inregistrata");
                        //Dupa inregistrarea imprumutului o parte din carti nu mai sunt disponibile pentru imprumut
                        //Reincarc in CheckList cu Carti noua lista cu carti ramase dupa imprumut
                        //Pentru asta "resetez" datele din dataTable cartiT (sursa pentru carti.DataSource)
                        CartiTabel.Clear();
                        adaptCarti.Fill(CartiTabel);
                        CartiImprumutateTabel.Clear();
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
                if (dr == DialogResult.No)
                    MessageBox.Show("Restituirea NU a fost inregistrata");
                    res.ClearSelected();
                    //deselecteaza cartea selectat
                    foreach (int i in imp.CheckedIndices)
                        res.SetItemChecked(i, false);
                    //debifeaza cartile bifate
                if (res.CheckedItems.Count > 0)
                    foreach (string str in res.CheckedItems)
                        imp.Items.Add(str);
                    while (res.CheckedItems.Count > 0)
                        res.Items.Remove(res.CheckedItems[0]);
            private void button2_Click(object sender, EventArgs e)
                con.Close();
                this.Close();
            //private void selecteaza_carti_utilizator()
            //    res.Items.Clear();
            //    MySqlCommand selectcart = new MySqlCommand("select title from books,userbooks where userbooks.userid='" + user.SelectedValue.ToString() + "' and userbooks.bookid=books.bookid", con);
            //    MySqlDataReader reader = selectcart.ExecuteReader();
            //    try
            //        while(reader.Read())
            //            res.Items.Add(reader["title"]);
            //    catch(Exception ex)
            //        MessageBox.Show(ex.Message);
            //    finally
            //        reader.Close();

    Hello Vincenzzo,
    This issue seems to be a window form UI implemented related issue, for this i suggest that you could ask it to the windows form forum:
    http://social.msdn.microsoft.com/Forums/windows/en-US/home?forum=winforms
    The current forum you posted to is used to discuss and ask questions about .NET Framework Base Classes (BCL) such as Collections, I/O, Regigistry, Globalization, Reflection.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can I make a global button?

    Hi !
    I have some menu buttons in my main timeline. The buttons are
    really button symbols inside movie clips, then the "mc" is placed
    in the main timeline, so when I roll over them a movie plays. What
    I want is that when I press one button, it makes another play its
    own "mc" but I can't get the button symbols to talk to each other.
    can I make global buttons. If I can how do I do this?

    LadySamG,
    > What I want is that when I press one button, it makes
    > another play its own "mc" but I can't get the button
    > symbols to talk to each other.
    Actually, these objects do "talk to each other"; they just
    have to know
    each other's names and where the others live. By that, I mean
    you'll need
    to give each of these objects an instance name in the
    Property inspector.
    Once they have instance names, you can talk to them with
    ActionScript and
    manipulate each object in the ways determined by its class.
    (What are
    classes? Classes define objects by providing for their
    properties
    [characteristics], methods [things they can do], and events
    [things they can
    react to]. Button symbols are defined by the Button class,
    movie clip
    symbols are defined by the MovieClip class.)
    > can I make global buttons. If I can how do I do this?
    Even though you explained it, I'm not sure I understand what
    you mean by
    "global" in this context. If you have three movie clips,
    instance-named
    clipA, clipB, and clipC -- and if each of those movie clips
    has the same
    button symbol inside it -- you can address each button
    separately like this:
    clipA.myButton
    // assuming the button's instance
    // name is myButton
    clipB.myButton
    ... and so on. Want to adjust the Button._x property (that
    is, the
    horizontal placement) of clipC's nested button?
    clipC.myButton._x = 5;
    Or is there maybe a movie clip within clipB? If so, what's
    that movie
    clip's instance name? Assuming myClip, then ...
    clipB.myClip.gotoAndPlay(2);
    Make sense?
    In this approach to "speaking to" objects, you put the code
    into a
    keyframe, rather than attached to the object itself.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Submit button within Interactive adobe form

    Hi,
        We have developed an Interactive adobe form and inserted a submit button within it We have installed ACI also.We tried putting the submit button both within the adobe form body and also within the webdynpro java view. In both the cases pressing the submit button does not result in any action. Please advise on what we are missing. We checked the forums for similar issues and found out that we are abiding by most of it.
    thanks
    anantharam

    Hi Anantharam,
    Please create and action in your view and attach it to your Interactive form UI element's onSubmit event. By doing this, whenecver you press the Submit button in the form, this action will be invoked. You can place any methots/code that you want to execute on click of submit button.
    If you are using the button outside the form, then you try printing one of the values that you filled in the form which is binded to context. This way you can test.
    If you are using WDP activex UI element s in the form then you need to have ACF installed on the machine and also ensure that the displayMode property of Interactive form is set to ActiveX.
    Hope this helps!!
    Regards,
    Arafat

Maybe you are looking for

  • Moving an image does not work correctly

    I have Photoshop CS4, version 11.0.2, installed on a 64-bit Windows 7 system.  I am attempting to complete an exercise which requires me to move one image on top of another.  I do not recevie an error messge.  The function simply fails. All software

  • Export software base CSP key

    I tried to export the software base CPS key in our OLD AD RMS 2008 using this steps (Below). I'm not sure i executed this command correctly. here's the steps i made. 1. Login to AD RMS Web server 2. open command prompt run as Administrator' 3. Type c

  • Shading rows within a template

    Hi all.       I am using a template in smartforms. It has two line types. I want to shade the 1st line type and keep the second line type as it is.       In the template tabstrip, I selected the individual line type and then selected a color from the

  • Flash Builder buttonMode = true not working

    Hi, I am having a really strange issue where I can't get any hand cursors to come up in Flash Builder. Anybody else have this problem. I ran into a situation where I've had to convert a ton of Flash Builder projects just to get the hand cursors to co

  • Automatic generation of serial number at time of goods receipt.

    hi all, reqirement is like that-- my client wants to generate the serial no. of material automatically during goods reciept, After generation of serial no. by the system the same material will be send to subcontracting vendor by serial no wise. when