Button makes subform visible, then adds another instance

Hello,
I have a button which makes a subform visible. That is working fine.
I'd like the button when clicked a second time to add another instance of the same subform. Is this possible? I have no idea how to begin with the JavaScript for this and would appreciate help.
Thanks in advance,
MDawn

Instead of making the subform visible and then adding instances you can do it just using instances then the button is doing the same thing.
To "hide" the subform using instances, make sure under Binding that the Min Count is clicked off and the Inititial Count is set to 0 (zero) - your subform will now be hidden by default.
Change the code you have showing the subform to use addInstance() instead of presence, using the underscore shortcut for the Instance Manager (you have to use the underscore method because the instance doesn't exist yet):
_hiddenSubform.addInstance(true);
If you remove instances back to zero then the subform will go away again. Doing it this way also has the advantage of resetting all the data in the subform.

Similar Messages

  • Hello, I need to download the videos made with Ipad on a USB stick. How do I make them visible then with a Windows PC? I need to transform. Mov in that format? How to make? thanks

    hello, I need to download the videos made with Ipad on a USB stick. How do I make them visible then with a Windows PC? I need to transform. Mov in that format? How to make? thanks

    The camera connection kit can only be used to import photo/video files from a camera, SD card or USB flash drive. You can't import other types of files. You can't export any type of files using the camera connection kit.
    How to Transfer Photos from an iPad to a Computer
    http://www.wikihow.com/Transfer-Photos-from-an-iPad-to-a-Computer
    Importing Personal Photos and videos from your iOS device to your computer.
    http://support.apple.com/kb/HT4083
     Cheers, Tom

  • On iMovie, when I add a new photo a then add another one, the newer photo is only the previous photo, only stretched out. What do I do!!?!

    On iMovie, when I add a new photo a then add another one, the newer photo is only the previous photo, only stretched out. What do I do!!?! (I'm new at this help communities thing)

    To reiterate Larry's question are you trying to copy
    your iPhoto Library package in it's entirety to the flash drive
    or
    just the photos that are in the library?
    Each requires a different process.
    If it't the former reformat the flash drive to OS X Extended (journaled) and drag the iPhoto Library package from your Pictures folder to the flash drive.
    If it's the latter export them to a folder on the Desktop first viaFile ➙ Export ➙ File Export and Kind = Original and drag the folder onto the flash drive.
    OT

  • Make subform visible, content doesn't show

    I have a script that's supposed to make subforms visible based on the selection in 3 DDLs. The script seems to work sort of. The space is there but the actual content of the subform is not visible.
    The subforms are set to Hidden.
    The script is set in the exit event of the third DDL.
    Thanks,
    MDawn

    Hi Margaret,
    In the windsNtwkAccess exit event code at line 298  you need to change
    else if (v1 = '2')
         to
    else if (v1 == '2')
    That is change the equals to a double equals.
    You also have code in the form1.page4.eitEquipment ready:layout event and form1.page4 ready:layout events that seem to duplicate this code and should be removed.
    Regards
    Bruce

  • Add another instance to RAC database...

    Dear all,
    If u want to add another instance to database... using dbca ... database should be shutdown or running....?
    Please help.
    Regards,
    Imran

    Perhaps asking the question in the RAC forum might be more useful.
    http://forums.oracle.com/forums/category.jspa?categoryID=140
    But - if you think about it ... the idea of RAC is to maintain ultra high availability. It would sort of defeat the purpose to shut down all RAC nodes to add or remove one node from the database.
    (In other words the other nodes can, and probably be should be, up.)
    The proper steps to add a node, in general, are
    - Install and configure OS and hardware for new node.
    - Add Oracle Clusterware to the new node.
    - Configure ONS for the new node.
    - Add ASM home to the new node.
    - Add RAC home to the new node.
    - Add a listener to the new node.
    - Add a database instance to the new node.
    The details are in the Oracle® Database Oracle Clusterware and Oracle Real Application Clusters Administration and Deployment Guide
    The real kicker is that the clusterware is installed correctly and it recognizes the other nodes. Also means that the shared store is properly configured, and that is a step people often mess up.
    Message was edited by:
    Hans Forbrich

  • How can I search the stage for a given Movieclip and then add all instances of it to an Array? AS3

    I would like to Add multible instances of one Movieclip, (Library Name = Bats | instance name = none), inside of another Movieclip (instance name = back.visuals) // (By HAND) NOT by addChild(mc_name); // Easy
    If anyone could help me out with code to do the next steps:
    Search the Movieclip, (instance name = back.visuals), that contains the Movieclips, (Library Name = Bats | instance name = none), manually added to the stage by hand.
    Then for all instances of this movieclip (Library Name = Bats | instance name = none) add them to an Array.
    Thank You,
    Dyami

    I think we are having some missed communication. I do not wish to Change Flash's IDE or deveolp new features for flash. I was wondering if there was a way to do my question with AS3. something along the lines of :
    var enemyList:Array = new Array;
    for (var index:int = 0;index < back.visuals.numChildren;index++)
        var wall:MovieClip = back.visuals.getChildAt(index) as MovieClip;
    /* Check to see if wall is of a Specfic MovieClip */
    /* if (Above is True){ enemyList.push(wall) };

  • Make subform visible by making a selection in a dropdown

    I am trying to make a subform visible if the user select yes from a dropdown.
    I have the following setup on the form
    Subfom1 -Dropdown with 3 entries, Select, No Yes.
    Subform2 – Text field for users to enter test
    The code I have been trying to use is
    “execEvent("change"); In the Initialize event and in the change event I was using
    if (xfa.event.change == "5") {
        subform2.presence = "visible";
    When I try the form, nothing happens,. There is no errors in the Javascript debugger
    Any ideas would be helpful.
    I am running Adobe LiveCycle Designer 8.05.2073.1.374024
    Any ideas would be helpful
    Chomp

    Thanks Robert;
    I did as you suggested and I still cannot get the field to become visible. I tried a couple of things.
    (1) In the Initialize Event - execEvent("change");
    In the Change Event - if (this.rawValue == "1") {
    why_subform.presence = "visible";
    The subform did not become visible nor was there an error in the javascript debugger
    (2) Took execEvent("change"); out of the Initialize Event.
    In the Change Event - if (this.rawValue == "1") {
    why_subform.presence = "visible";
    The subform did not become visible nor was there an error in the javascript debugger
    Initialize Event blank
    Added to the Change Event
    if (this.rawValue == "1") {
        why_subform.presence = "hidden";
    if (this.rawValue == "2") {
        why_subform.presence = "visible";
    The subform did not become visible nor was there an error in the javascript debugger
    (3) Added execEvent("change"); to the Initialize Event
    The subform did not become visible nor was there an error in the javascript debugger
    Preference defaults are set to – Preview = Interactive Form
                                                     XDP Preview Format – Adobe 8 (Dynamic) XML Form

  • Two Form buttons - a "submit" and an "Add Another Record" button

    Hello, any help would be appreciated . I think what I want to do requires a Custom Trigger but am not sure. And if it does, I'm not sure how to do it.
    I've got a form and when the user gets to the point where they want to submit the form, I want need two buttons; a Submit button and an "Add another Record" button.
    The reason is that the form contains two parts; two fields that go into one table (ex. incident and location) and two fields that go into another table (first name and last name). Of course these tables are tied together. I can do that no problem. But if the user wants to enter another person's name, I want the user to click the Add Another Record button and be able to add the second or third name.
    I know that I need a Custom Trigger to carry the original tables ID. What I can't figure out is how to add the additional button next to the Submit button.
    Thanks!
    Peter T2

    It is possible you have an add-on popup blocker that is more aggressive than Firefox's standard popup blocker?
    A quick way to see whether one of your extensions is involved is to test these features in Firefox's Safe Mode. That's a standard diagnostic tool to deactivate extensions and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled ''(Flash and other plugins still run)''
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?

  • When I try to open Firefox I get a message: "Update could not be installed. Make sure there is not another instance of Firefox. Restart and try again."

    Started w/FF 29 something.on Win XP (Home) SP3
    Verified w/Task manager and PS that there is no other instance of FF.
    Occurs only in my profile, administrator and other users do not get this message.
    First Resetting, did not work.
    Safe mode also did not work.
    Uninstalled completely, even deleted the Firefox folder from my profile and rebooted.
    Downloaded new versions, installed and same issue.
    Firefox now version 33, all seems up to date but I still get that message. When I open Help > About it says I am at version 33 and to restart to upgrade...
    Any ideas greatly appreciated.
    Have reverted to SeaMonkey for now.

    Hello sprytely, go for a clean re-install, this means you '''remove Firefox program files''' and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from the next full installer https://www.mozilla.org/en-US/firefox/all/ and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [[Troubleshoot and diagnose Firefox problems#w_5-reinstall-firefox|here]].
    <b>WARNING:</b>Do not use a third party uninstaller as part of this process. Doing so could permanently delete your [[Profiles|Firefox profile]] data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be easily recovered unless they have been backed up to an external device!</u> See [[Back up and restore information in Firefox profiles]]. <!-- Starting in Firefox 31, the Firefox uninstaller no longer lets you remove user profile data.Ref: Bug 432017 and https://support.mozilla.org/kb/uninstall-firefox-from-your-computer/discuss/5279 [Fx31] Windows uninstaller will no longer offer the option to remove personal data -->
    Thank you.

  • Personal Hotspot goes away, takes forever to get it back, then adds another homegroup each time

    I am out of town and trying to use my personal hotspot.  Ever since I updated to OS 5 I have had this problem.  When I disconnect in windows 7, I can not reconnect withouth messing with settings.  When it does connect it creates a new homegroup so my iPhone is now up to group 10!  Yikes I need help!!  I am working remotely this week plus I am in school full time I dont have time for this?  Any suggestions out there???  Went to the ATT store they had me delete the connection and start over, worked fine for a bit, then shut down my computer and I am finally back on after 30 minutes of trying.

    Same problem. iPhone 4s w/OS 5.
    I activate my iPhone's hotspot (with password), connect via wifi, work (or play) a bit, get distracted for a few minutes, come back and there's no internet, check wifi connection, not connected, signal from the iPhone is not present, refresh to look for wifi signals, other signals are there but not iPhone's. The hotspot simply goes away.
    I ditched another isp with spotty service with the intention of connecting my pc and iPad to the internet via my iPhone. Did I make a big mistake thinking my iPhone hotspot would be more stable?

  • Is it possible to sign a PDF file, make some changes, and add another signature?

    For example, if you create a test plan, sign off on it, fill it in electronically, and need to sign the "filled in version" too? It would be good to be able to create a document that gets signed off, that then can be added to, and then the addition also signed. I'm not sure if I'm making myself clear. We could use the certify feature, maybe, but we need to have multiple people sign-off on a file the first time before it's used. Then we want someone to use the info/add comments/maybe complete a form (we haven't worked that out) and have them sign that they completed it.
    Thank you.

    Yes you can with restrictions. You need to create your original PDF in such a way that you may make certain changes after it is signed. The easiest way to do it is to certify the original PDF with certain permissions. Acrobat Pro UI provides certain combinations of such permissions. Adobe LiveCycle provides more granular combinations of permissions but this is an expensive solution. Try first what Acrobat Pro UI gives you and see if it gets you want you need. You may apply as many modifications and signatures to the document as long as they conform to the certification permissions. The last signer can also lock his signature which disallows further modifications and signing.

  • HT1947 If you add music VIDEOS to Up Next playlist, then go to look at the album cover playing screen, then go to add another song from diff playlist, no longer can see Up Next, just go to full screen mode button. Using remote app iphone 5 to play out of

    If you add music videos to Up Next playlist, then go to look at the album cover playing screen, then go to add another song from different playlist, you no longer can see Up Next, just go to full screen mode button. Using remote app iPhone 5 to play out of iTunes. It looks like it works fine for regular music, but for music videos you can't see your up next unless you go back on the computer to change once you've left the screen. When using the remote app, you shouldn't need to go to iTunes on the PC to view or edit Up Next already added. See first image, you can hit upper right and get back to Up Next (second image). Third image is music video, where you can't get back to Up Next, just swap between full screen and not. I hoped 3.0.1 would have the answer, no luck!

    wow, very nice review Makes me want to get a vision for myself.
    WebKnight wrote:
    <SPAN>
    Add the ability to randomly select a new background from a pre selected group of photos every time the player is turned on or each day.
    I would love that feature. I can't stand useing my computer with a single wall paper anymore (I have 500 anime pics that i rotate between every 2 mins ) If you could make the vision rotate background every x minutes or every time the player is turned on, it would be totally amazeningly sweet!!!! (i might have to go out and buy one then :P)
    I just hope that creative has better firmware support with the vision than they have had with the touch.
    Once again, great review

  • Start procejt with mc._invisible then make it visible by button, impossible? :

    Hello, like topic reads.
    Iv googling and trying to make my movieclip invisible from start and then make it visible as you hover over a button. It seems impossible. You make it invisible and when making it visible again it just flickers and dissappears. 
    Simply putting mc._visible = "false" in the code
    and then putting this on the button:
    on (rollOver) {
    mc._visible = "true" }
    WONT WORK.
    So if this is impossible, please just tell me and I will simply just skip the idea of having speech bubbles entering on rollover.  : )
    and btw, sorry if I come off as arrogant, ignorant and stupid.
    Im just so frustrated at the moment, I have spent 3 hours on something that initially I just wanted to add as a little nice detail.

    that should be:
    mc._visible=false;  // no quotes
    on(rollOver){
    mc._visible=true;  // no quotes
    // or, even better:
    yourbutton.onRollOver=function(){
    mc._visible=true;

  • I am unable to add contacts with their phone numbers. I add one press done and then it shows up but when I add another one the first one is deleted. How can I add them and make sure they stay.  Upper left hand corner there is partial circle w/ arrow

    I Unable to add contacts. I add one and then press done.  It shows up but after I add another one the first one is gone.  How do I save them?

    Hi,
    Troubleshooting a start up script can be difficult. There are some third party programs that also keep logs of start up programs, however for Firefox this may be different.
    Is Firefox a startup program? [http://www.winxptutor.com/msinfo32.htm]
    Its also possible to check the Web developer tools for any scripts in a page: [https://developer.mozilla.org/en-US/docs/Tools/Debugger]
    In the control panel there is also Administrative tools to view event logs, but this may be something a local technician can walk you through.

  • How to add another Chapter Page for more then 6 chapters & add right arrow?

    Hello,
    I created a project via the Magic iDVD option and it worked great and added multiple chapter pages for more then 6 chapters. Now, I manually added a submeno off of main and added 6 chapters but I need multiple pages since I have 40 chapters... I can't figure out how to add another chapter page and create a RIGHT ARROW navigation button for the next pages...
    I also looked at the map view and see that on the working pages there is page connected to page... I also cannot find a way to add a page connected vi map view...
    I have searched the forum but none of the answers were clear on how to do this... any help would be appreciated...
    Thanks! T.

    Adding the submenu is easy...making the button for it a "right arrow" is not.
    You can keep adding submenus to other submemus by navigating to the appropriate menu and then choose the "add submenu" command from the iDVD project menu. This can be done in either normal or map view.
    However, this creates a "folder" button, (or other things in some themes) not a right arrow. I agree it should be a choice! My 2nd best solution is to chage the folder button to a "text only button" and label it "More Chapters > >"
    Another solution (3rd best??) is to use command-shift-4 when you are one one of your other menus that DOES have a right arrow, and take a mini picture of the arrow. Then choose one of the oval menu buttons on the button pane, and drag this tiny picture onto the button. Re-size it to make it close to the same size as your other buttons. It will have a funny edge on it from the button style, but it will look like a right arrow.
    John B

Maybe you are looking for

  • Unable to initialize video deck, (can not capture from camera)

    Hello All, I am using a quad core G5 and am trying to capture some footage into Final Cut Pro version 5.0. I have two Panasonic DVX 100B mini DV cameras. I normally capture with a JVC BR-DV3000 mini DV deck but it is currently not working. So I'm try

  • MTOM support in the integration engine

    Hi, Short description of the process. 3rd party application -> PI WSDL -> SAP ERP A 3rd party application sents a request to our WSDL on PI and the PI starts a process (BPM). After the process is finished, PI sents the result to SAP ERP over XI adapt

  • New voice-over recording workflow?

    I just dug up what's new in the update I just installed, and I'm not seeing the expected "Voice-over Record button" after following the described steps. Am I missing something? Premiere Pro says it's up to date, and I was able to expore the other new

  • ArrayCollection to AdvancedDataGrid programatically

    I have a single datagrid that I want to use to display results from DB queries via a web service. So I don't know ahead of time what my columns are going to be. I would like to display the results in my grid and possibly assign an itemRenderer based

  • Moving Pictures from iphoto to finder?

    I recently just decided to stop using iPhoto. So I moved all my images from iphoto to seperate folder in Finder. Now ... did I just a copy of the images? Because all the pictures are still in iPhoto.. I want to know if it's now okay to delete them fr