Opening a form and stopping a video

I have a button on a page with a video running.  i want the button to open an html form I have already set up and i want the video to stop playing.  i tried this code and it achieves  neither objective.
thanks for any ideas,
Gregg
my code on the button:
on (press) {
stopAllSounds();
getURL(become_member.html);

try:
on (press) {
stopAllSounds();getURL(become_member.html);

Similar Messages

  • I have created a form in InDesign, exported to a pdf, created an editable form and saved.  When I open the form and make changes and save, the reopen the changes are there.  If try to email this form as an attachment after editing, the attachment is alway

    I have created a form in InDesign, exported to a pdf, then created an editable form and saved.  When I open the form and make changes and save, then reopen the changes are there.  If try to email this form as an attachment after editing, the attachment is always minus the edits.   ????

    Hi chuck,
    If you ave created the form and then filling it yourself and saving the form, the filled data should be there when you reopen the same form.
    Can you please send the form to me at [email protected]  so that I can have a look.
    Regards,
    Rave

  • I opened my form and downloaded the form to post on my website... but the submit button is not working.

    What am I doing wrong? The first time I created my form I used Acrobat and the FormsCentral embedded in the program. The original form was working, but I had to make some changes to it. I can't get FormCentral to launch within Acrobat anymore. I loaded my new form (with the changes) to Forms Central through the browser interface, yet when I open the form and download the form to post the posted form does not work. Help!

    Hi,
    if it's ok for you, people can send a email at your adress, it's enough to use (translated from German-DW):
    Insert -> email link. In my DW it looks lik this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>eMail</title>
    </head>
    <body>
    <a href="mailto:[email protected]">eMail</a>
    </body>
    </html>
    The users click into the word "eMail" your eMail-program wil start.
    Naturally there are som other ways, like this for example:
    <td width="35%"><input id="send" type="submit" name="Submit" value="send" />
    I suggest first try or test the easy way.
    Hans-G.

  • How to open a form and close another one

    hi,
    I wish to open a form from another, and then close the calling form. In other words, having FORM1 and FORM2, FORM1 should do this:
    OPEN_FORM ('FORM2',ACTIVATE,SESSION);
    EXIT_FORM(NO_COMMIT,NO_VALIDATE);
    but I cant get this to work. As FORM1 is modal, it opens FORM2 but its still open. Changing the order of the two statements only cause FORM1 to be closed. Can I perform the two operations from within FORM1, avoiding to put the EXIT_FORM statement in FORM2?
    thank you

    Hello,
    Use NEW_FORM to replace the calling module.
    Francois

  • Open system form and select a row number on matrix by click on button

    Hi experts,
    I have to open the purchase order form and select a specific row number from the matrix by clicking a button on sales order form.
    is it possible ?
    can anyone help me to achieve it?
    Thanks in advance.
    Best regards
    Andrea

    Andrea,
    To Do? Clicking on a Button on Sales Order -> Opens a PO form, and selects the row?
    In the eventhandler of a button click if the PO is not linked to SO by SAP B1 standard functionality
    step 1. call ActivateMenu ("2305") of Sbo_application , this opens the PO form
    step 2. Change the form to Find mode
    step 3. enter po number to the Item UID "8" which is the document number.
    step 4. Send enter key, or Clikc On button UID "1" which finds the PO
    step 5.read the value from SO form, from matrix "38" line where you selected
    step 6. use the code above to locate the line in PO (use # column for position numbers which UID is 0)
    at step 5, i think you should select a line from SO matrix which you would like to open.
    IN sales order, If you used PO chekcbox on logistics tab to create the PO, you can find a direct link between PO and SO (only in docentries are linked not positions) on sales order,  Column UID 158 field name: potrgnum.  If this connection is exists, you have an easy way:
    SO form, when a user clicks on COlumn 158 (po number), you can implement an eventhandler, which
    step 1.read the value from SO form, from matrix "38" line where you selected
    step 2. use the code above to locate the line in PO (use # column for position numbers which UID is 0)
    By processing theses steps, you can build up you solution.
    Regards
    János

  • How to open up Forms and navigate to record with external hyperlink?

    Hello,
    I was wondering whether it is possible to open up a Forms Application, and navigate to a specific Form and record via an external hyperlink. For example in an e-mail a hyperlink is generated which should redirect the user directly into the application and to the correct Form and record ID.
    Thanks in advance for any suggestions.
    Regards

    I suppose this is theoretically possible. The hard part would be to figure out how to pass the equivalent of a ParamList or a Global Variable to a form from a web page. Then you could test for these ParamList or Global values in the called form and navigate to the desired Form and query a specific record. I've seen some demo's on OTN where they embedded a Form into a Web Page and was able to interact between the web page and the form and vis-versus. Unfortunately, I can't remember where I saw the demo, but it was just recently that I saw it. If you can find this demo, it might give you some ideas how to do what you are trying to do.
    Sorry I couldn't be more helpful.
    Craig...
    Edited by: CraigB on Sep 3, 2008 3:07 PM
    Figures, as soon as I post my response, I found the article. Here's the link: http://www.oracle.com/technology/pub/articles/wilfred-adf-forms.html (Integrating Forms with Oracle ADF Faces).

  • Open system form and update data

    Hi
    any body can help me with the code to do the following?
    open users form with current user, update the default group and save the record and close the form.
    but in hidden mode
    10x in advance

    Andrea,
    To Do? Clicking on a Button on Sales Order -> Opens a PO form, and selects the row?
    In the eventhandler of a button click if the PO is not linked to SO by SAP B1 standard functionality
    step 1. call ActivateMenu ("2305") of Sbo_application , this opens the PO form
    step 2. Change the form to Find mode
    step 3. enter po number to the Item UID "8" which is the document number.
    step 4. Send enter key, or Clikc On button UID "1" which finds the PO
    step 5.read the value from SO form, from matrix "38" line where you selected
    step 6. use the code above to locate the line in PO (use # column for position numbers which UID is 0)
    at step 5, i think you should select a line from SO matrix which you would like to open.
    IN sales order, If you used PO chekcbox on logistics tab to create the PO, you can find a direct link between PO and SO (only in docentries are linked not positions) on sales order,  Column UID 158 field name: potrgnum.  If this connection is exists, you have an easy way:
    SO form, when a user clicks on COlumn 158 (po number), you can implement an eventhandler, which
    step 1.read the value from SO form, from matrix "38" line where you selected
    step 2. use the code above to locate the line in PO (use # column for position numbers which UID is 0)
    By processing theses steps, you can build up you solution.
    Regards
    János

  • HP PRO 3400 Series desktop won't boot CPU fan starts and stops , no video, no beeps

    I have the above computer with an i3-2125 CPU, Windows 7 Home Premium 64 bit, and a 300GB Seagate Hard drive.  I've had it for about 2 years and been working fine. It started acting up about 2 months ago.  It would lose the date and time.  I checked the battery, and it was OK, so I kept using the computer.  Then on 9/15/2014 it hung on "Starting Windows", I did the following:
    1.  Ran the built in HP diagnostic on hard drive and memory and they both passed.
    2.  Tried to go to last known good configuration and nothing happened.
    3.  Noticed the date and time were off, replaced the battery, nothing changed.
    4.  Tried another hard drive from another HP PRO 3400 Series and it would boot up but could not set date in bios.
    5.  Tried all kinds of things but could not set date in bios.
          a.  Bios date read 48/00/0048 after removing and replacing battery.
          b,  Tried to reset date to 9/16/2914 and it gets 56/00/0051
    6.  Then it wouldn't boot at all.   So now when you turn on the power, the CPU fan starts and runs for about 1 second, then shuts off for 4 seconds, then starts and runs for another 1 sec and it does this continuously.  There is  no video and no beeps and no difference when all memory is removed.
    7.  I removed the power supply, and checked voltages.  It appears to be OK.
    8.  I removed the motherboard, and inspected it- saw nothing obvious.
    9.  I connected the power supply to the motherboard with nothing else connected to the motherboard, and I get the same thing.  CPU fan starts then stops continuously, no video no beeps.
    10.  I am thinking it is the Motherboard, but I sure could use some suggestions as to what to do next.
    Thanks
    Maxgle from CA

    Maxgle, welcome to the forum.
    I believe that you would get more responses to your problem if you start a thread here.  They are the members who know your computer best.
    Please click the "Thumbs up + button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Opening Another Form and other Qs

    I am very unfamiliar with Java, and could do with some help with the following :
    How do I call another form to open from an existing form, which is from a different file?
    How do I disable the 'Close', 'Maximize' and 'Minimize' buttons on the top right corner of a form?
    In Visual Basic, I remember learning something like app.path to reference to the path which the file is in. Is there any similar code to do this in Java?

    How do I call another form to open from an existing
    form, which is from a different file?Ther are a couple of ways you can acheive what you want. If you want a whole new window you just create a new Frame
    Frame newframe = new Frame("my new frame");
    newframe.setvisible = true;Otherwise if you just want to cycle through forms in a frame check out the CardLayout and JTabbedPane classes.
    How do I disable the 'Close', 'Maximize' and
    'Minimize' buttons on the top right corner of a form?Look at the API for frame, I know there is a setSizeable (or something to that effect) I think there are options to remove other buttons.
    hope that's a good start.

  • FF won't open and an error message appears on the screen "unresponsive script" it I open task manager and stop the error message FF runs normally, how do I fix this problem

    This problem only started when I upgraded to FF 4.0. I am running Windows 7. When I go to the task manager I am able to see the error message in the processes area, if I highlight it and tell the task manager to stop it, FF immediately starts and runs normally. I have no idea where the error message is coming from.

    This problem only started when I upgraded to FF 4.0. I am running Windows 7. When I go to the task manager I am able to see the error message in the processes area, if I highlight it and tell the task manager to stop it, FF immediately starts and runs normally. I have no idea where the error message is coming from.

  • How to open new form and exit from the calling form on dual/multi language?

    using form 10g 10.1.2.0.2.
    i have dual language application 1 english & 1 arabic and i created forms identically each respectedly to call and switch every forms when user choose any language it uses.
    say im in currently in english. how we can call the arabic module and exit totally in english module , vice versa?
    also the form system messages. how we can switch it between two language?

    NEW_FORM() will totally replace the calling module.
    Francois

  • Opening a form and displaying the first record

    Any ideas on what the easiest solution would be to show the first record on a form when the form is opened? I've tried some of the ideas discussed in the FAQ section, but without success!!
    Thanks........GD

    Greg,
    Sorry, but there is no other solutions other than those described in the FAQ. I know that it is not very "user-friendly", but should work.
    Also if you search the forum's archive there were some concrete examples posted.
    Thanks,
    Dmitry

  • While playing back a video file the sound goes sort of like an echo and stopping the video and playing back again it sound great, the video is recorded live with an AJA system and plays fine on the units;any clue to what is going

    While playing back a video recorded on a AJA system we transfered it to the macbook pro played it with quicktime works great and sometimes it sounds like an echo same file track and it plays fine on the aja system.Tried it on another macbook pro and it did the same issue.Any clue to what is going on.Thank you.

    Thank you supermacmom!
    I have the LifeProof case for the iPhone5, and I remember the instructions saying that any protective screen cover should be removed before enclosing the phone into the case, but I left mine on with no ill effects.
    But I should have taken off the back protective film, which was covering the video mic!

  • How to eliminate the "Ping" sound when starting and stopping videoing

    How to eliminate the "ping" sound when starting and stopping a video on iPhone.  Thanks.

    I asked my friends on Facebook and one came up with the answer... I just had to flip the little "ring-silent switch" on the side of the iPhone to cut the "Pinging" sound!  There's probably another way but this works!

  • Forms central form and Ipad.

    Hi
    I have created a form in forms central ( paid subscription) and emailed the link to a colleague who wishes to use the form on her Ipad.
    My colleague can open the form and fill in the fields but is unable to select a file to attach to the form. On selecting  - select file- the ipad opens up the option to " Take photo or video or choose existing ". What needs to happen for the ipad to show the pdf's  available for upload.
    My colleague has adobe reader mobile on her Ipad.
    I have looked through forums but cannot get a clear answer.
    Your help would be much appreciated

    Hi;
    Unfortunately for now this is a limitation using iOS we are looking into.  At this time you can only attach image/video to the form in the attachment field on iOS. 
    Thanks,
    Josh

Maybe you are looking for

  • Track po in sales order in not make to order scenario

    Hi, There is a simple sales scenario.1. create a sales order -availability check- if there are enough stock in the storage location then the rest of the process is possible (creating outbound ,...) otherwise, the MRP should be run. 2- convert the aut

  • I can't connect my laptop windows to the internet sharing a network

    Hi. I don't know what I'm doing wrong. I set up airport express on my imac g5 so I can use our windows xp laptop to share access to the internet. I have a wireless connection for our laptop (a Belkin wireless notebook card-802.11gg). The laptop recog

  • Line item display on GL account

    DearAll, my GL is line item display already,then there are transactionts posted in that GL,but still no line item display?and i have to run RFSEPA01. but GL is line item display already,why still need that program to update the relevant table

  • What is the best mac for me? (budget: 1299$)

    What is the best mac for me? I will use it for: - Game programming and development - School research - Word proccessing - Presentations - Programming in Java - Programming in C++ - Programming Iphone games and Objective-C - Gaming So can you tell me

  • SQL ARRAY IN 'WHERE IN'

    Dear All How could I declare a variable and then used in WHERE IN clause? I would like to do something like SELECT * FROM rooms WHERE number IN ('1001','1012','1015') but with the room number array declared as variable so I could reuse it I tried the