How do I load a PHP without showing it at all?

Hi. I have just started working with flash a week ago, and I
stumbled into a problem I cannot find the answer to anywhere so
far.
I created a LoadVars, which I use to send data to a PHP that
updates a mysql database. This is what I am doing:
button.onRelease = function(){
myLoadVar.send("database.php", "newwin", "POST");
Since I am using "newwin", the database.php file opens in a
new blank window. However, I would like the php file to not be
shown to the user at all. I just need it to run the php file in the
background when the user clicks the button.
Is that possible?
Thanks for your time

create two lv instances and the sendAndLoad() lv
method.

Similar Messages

  • How can I fix error 13019 WITHOUT having to delete all of my music??

    Yesterday, out of nowhere, my iTunes started displaying error 13019.
    Some songs were fine, but now it's every time I try to put somethingonto my iPod!
    I tried the apple support site but nothing helped.
    It's not that they don't appear on the iPod site on iTunes, it's when I disconnect it that it happens: the files don't exist all of a sudden!
    Please, if you know a way to fix this error WITHOUT having to delete all of my music and playlists, please help me.
    I just don't wanna start all over again for the third time!!!
    -Aliice

    Copy the entire itunes folder from the old computer to the new computer.

  • How do I load a ringtone without syncing

    OK - so I know this issue has been asked in hundreds of different forums but after reading all and trying each I am no further than where I started. So I downloaded a silent ringtone (for telemarketers) in .m4r format. I dropped it into iTunes 10.8 (WinXP OS). I plug iPhone in and it is recognized. I drag the file from my desktop and drop into iTunes. It shows in tone folder in iTunes. I drag file from iTunes tones folder and drop into iPhone tones folder. It shows and is checked. Here's the problem - normally, once a song or tone or any other file is moved this way you can see it load onto the phone in the status bar at the top of the screen. Obviously a small file like a tone will be quick but this does not happen. I don't want to sync. If I uncheck sync in photos, music, videos...etc and only sync tones it starts a 6 or 7 step process (back-up...) It also appears that I will lose all of the music on my phone since the colored memory usage indicator at the bottom of the panel shows little of anything since I "un-synced" everything but tones - is this just a representation or will I actually have to sync all? All I want to to is drag and drop the tone into my phone an be done with it - why isn't it that simple? Is there a setting in preferences I need to change? Help - anyone? I'm not well versed in iTunes but I'm not lost when it comes to technology - normally Apple makes things pretty intuitive.

    iTunes is trying to do exactly what you told it to do.
    You unchecked the options for sync apps and/or music so on the next sync it is going to remove all the synced apps and/or music on the device.
    Just leave things alone.
    You cannot simply "drag and drop" if you want to sync.  It's one or the other.
    Seriously... is it going to kill you to wait the 30 seconds to let it sync?

  • How to pass Applet form variables without showing it on top ?

    I am running one applet with some form variables. After submit I want to pass those to .asp file to store into database.
    If I use URL method then all are getting displayed on URL location of browser which I do not want. I want to pass many form variables to another .asp file, so it may not be good also.
    What is the best way of doing it ? Need urgent help about it.

    Well If you create a POST request instead as a GET request the variables will not show up in the URL.
    On tips how to do that you can either check out this thread:
    http://forums.java.sun.com/thread.jsp?forum=31&thread=56388
    or one of these:
    http://search.java.sun.com/Search/java?qt=applet+GET+POST+variables&col=javafrm&rf=0
    Sjur

  • How to print set of documents without showing print dialog box

    I have created a smartform tht prints a Payment Advice. Its input includes range of Document numbers.
    I call the smartform function in loop for all those document numbers. Now my problem is tht everytime tht function is executed the print dialog opens up askin for Printer name and then on pressin 'print', one document is printed and so user has to press print tht many times. To avoid this i added code:
    DATA: it_ssfcompop TYPE ssfcompop.
    DATA : gst_control_parameters TYPE ssfctrlop.
    DATA : gt_job_output_info TYPE ssfcrescl.
        it_ssfcompop-tddest = 'LOCL'.
         IT_SSFCOMPOP-TDNOPREV = 'X'.
         it_ssfcompop-tdnewid = sy-prnew.
         it_ssfcompop-tddelete = sy-prrel.
         it_ssfcompop-tdimmed = 'X'.
         it_ssfcompop-tdnoprint = 'X'.
         CLEAR gst_control_parameters.
         gst_control_parameters-no_dialog = 'X'.
         gst_control_parameters-preview = 'X'. "Deactivate preview!
         gst_control_parameters-GETOTF = 'X'.
    and called smartform function like this:
      CALL FUNCTION FM_NAME
           EXPORTING
            BUKRS                      = BUKRS-LOW
            BELNR                      = BELNR
            GJAHR                      = GJAHR-LOW
            CONTROL_PARAMETERS         = gst_control_parameters
            OUTPUT_OPTIONS             = it_ssfcompop
         IMPORTING
            JOB_OUTPUT_INFO            = gt_job_output_info.
    this shows print preview but still does not print. What could be error. Please help.

    Try this
    * Work Area declarations
    w_objhead TYPE soli_tab,
    w_ctrlop TYPE ssfctrlop,
    w_compop TYPE ssfcompop,
    w_return TYPE ssfcrescl,
    w_doc_chng typE sodocchgi1,
    w_data TYPE sodocchgi1,
    w_buffer TYPE string,"To convert from 132 to 255
    * Variables declarations
    v_form_name TYPE rs38l_fnam,
    v_len_in LIKE sood-objlen,
    v_len_out LIKE sood-objlen,
    v_len_outn TYPE i,
    v_lines_txt TYPE i,
    v_lines_bin TYPE i.
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZONE'
    importing
    fm_name = v_form_name
    exceptions
    no_form = 1
    no_function_module = 2
    others = 3.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    w_ctrlop-getotf = 'X'.
    w_ctrlop-no_dialog = 'X'.
    w_compop-tdnoprev = 'X'.
    CALL FUNCTION v_form_name
    EXPORTING
    control_parameters = w_ctrlop
    output_options = w_compop
    user_settings = 'X'
    IMPORTING
    job_output_info = w_return
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.

  • How to blink/update titlebar icon - without show()?

    Hello,
    I'm writing a Swing application which, when certain events occur, should display a blinking icon in the title bar.
    I am using a TimerTask to change the icon, something like:
    class BlinkIcon extends TimerTask {
    boolean iconOn = false;
    public void run() {
    if (iconOn) {
    frame.setIconImage(imageOn);
    iconOn = false;
    frame.setTitle("ON");
    } else {
    frame.setIconImage(iconOff);
    frame.setTitle("OFF");
    iconOn = true;
    The problem is that, with the code above, only the text title of the window (JFrame) changes. The icon doesn't.
    However, if I issue a frame.show() after changing the icon, the icon changes. But show() has the undesired effect of bringing the window on top.
    Can someone else recommend a solution? Is there something else that I could use instead of show()?
    Thank you!

    Strange...tried this on one of my apps and it works with no problem. Running in Win 2K.
    I'm wondering if you are running into problems due to the fact that most Swing components are not thread-safe, meaning that methods that cause a change in appearance to swing components should never be called outside the Swing Dispatch Thread. (The Timer class runs any scheduled TimerTask in its own thread.)
    Have you tried moving your setTitle() and setIconImage() calls into a Runnable and scheduling that using javax.swing.SwingUtilities.invokeLater() in your TimerTask, rather than calling setTitle() and setIconImage() directly in your TimerTask?

  • How to print data from SAP without showing the screen.

    I need to develop one RFC.It will call by third party tool like XMII.
    Required data will come from XMII and RFC should print data directly from printer.
    RFC should call transaction QM02>Notification>Print>Item Selection>select one of the Shop paper -->Print (No.of copies and name of printer will be given by XMII)

    Hi Priya,
    Build a process chain, to load the Cube and after the load completed, delete the PSA used to load the Cube.
    Also include in this chain a generated ABAP program to selective delete data from your DSO based on some selection/variant , ex: Fiscal Year or something.
    Also check the design and find a reason for using DSO, if no reason then just load into CUBE.
    Hope this helps.
    Thanks,
    Naveen Rao Kattela

  • How to Dynamically Load jvm.dll without setting PATH

    Please help, invoking CreateJavaVM via a function pointer is returning -3, but I'm not sure why.
    When my PATH is setup up to include the jvm.dll and I invoke JNI_CreateJavaVM() directly, it works fine. But I want it to work regardless of my PATH setting, so I am trying to use LoadLibrary and dynamically load the jvm.dll and then a function pointer to invoke CreateJavaVM().
    The LoadLibrary returns non-NULL result, the GetProcAccress() returns non-null, but when I invoke the pointer to the CreateJavaVM call, it returns -3. I know -3 is JNI_EVERSION error, but any ideas what is wrong with the code below, such that it would give me this error?
    Currently my code is as follows:
    typedef jint (JNICALL CreateJavaVM_t)(JavaVM **pvm, void **env, void *args);
    JavaVM *m_jvm;
    JNIEnv *m_env;
    SetDllDirectory(L"C:\\Program Files\\Java\\jdk1.6.0_20\\jre\\bin\\client");
    HINSTANCE hVM = LoadLibrary(L"jvm.dll");
    if ( hVM == NULL ) {
       // report error
    CreateJavaVM_t *pfnCreateJavaVM = (CreateJavaVM_t*)GetProcAddress(hVM, "JNI_CreateJavaVM");
    #ifdef JNI_VERSION_1_6
    char cpChars[1024] = {0};
    sprintf_s(cpChars, "-Djava.class.path=%s", classPath); // classpath is defined elsewhere
    JavaVMOption options[1];
    options[0].optionString = cpChars;
    JavaVMInitArgs vm_args;
    vm_args.version = JNI_VERSION_1_6;
    vm_args.options = options;
    vm_args.nOptions = 1;
    vm_args.ignoreUnrecognized = JNI_TRUE;
    pin_ptr<JNIEnv*> env = &m_env;
    pin_ptr<JavaVM*> jvm = &m_jvm;
    int result = pfnCreateJavaVM(jvm, (void**)env, &vm_args);
    // This is where the failure occurs. result is -3 for some reason here...why?For some reason, pfnCreateJavaVM is returning -3, but I'm not sure why? Any ideas what is wrong with this code, such that it would give me a -3?
    Thanks in advance,
    Bill

    wkoscho wrote:
    For some reason, pfnCreateJavaVM is returning -3, but I'm not sure why? Any ideas what is wrong with this code, such that it would give me a -3?As an experiment try using a different jvm.dll from a different location. From my box there are several different jvm.dll under my jdk install dir.

  • After downloading iTunes to my new laptop, how do I get my library to show up with all my music?

    I have had iTunes for a long time, but I recently purchased a laptop.  I downloaded the latest version of iTunes onto my laptop as well as updating the iTunes on my desktop computer.  When I first signed in on my laptop, everything was okay and my music loaded in my library as expected.  Today I got on my iTunes on my laptop, only to find that my library is gone and only three random songs I've never purchased are in my library.  Please HELP!

    Hi, cameron157.
    Thank you for the question.  If at any time a purchase are missing from your library, you can always download it again at any time free of charge by accessing your purchase via the iTunes Store.  Below, I have an article that goes over how to do this.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Also, if your old computer is still accessible, you can access your content on your old computer via Home Sharing. 
    Understanding Home Sharing
    http://support.apple.com/kb/ht3819
    Cheers,
    Jason H.

  • How do u get ur music  without having to buy all again?

    how do u get ur music back without having to buy it all again?

    Try here. Note that is is not available in all countries.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • HT3529 I would like all data to show up , How do we get i message to show up from all phones?

    I would like my i messages to show on my data, How can i get it to show???

    this is not a reply - i asked the question - still trying to learn how all this works - someone please HELP ME

  • How can we load apps without creating an Apple ID for each employee?

    We have at least two apps that we'd like to distribute to our company iPads.  We would like to hand the employee the iPad with everything loaded.  We don't care if they create their own Apple ID and manage it after the fact but when the employee gets the iPad, it should have the apps they require.
    How do we load these apps without creating an Apple ID for each employee?  If we load the apps from App Store with our Apple ID, the app requires that username and password whenever there is an update.  The employee can not update the app without our username and password or they have to delete and reinstall the app with their own credentials.  Is there a way to load an app so that it doesn't require the credentials of the person that loaded it whenever there's an update?

    Turn on computer.
    Open itunes.
    Connect a device.
    Select what you want to sync.
    Sync
    Repeat for the otehr device

  • How to create apple id fee without credit card

    how to create apple id fee without credit card

    We are all users here ,not Apple so slow down
    http://support.apple.com/kb/HT2534

  • How we can load external html or php file in flash?

    Hi there,
    I want to show my php's file desing in flash..
    i m getting data through database in php file and it has
    table... so I want to show that data in my flash movie...
    Please help me ..
    How can I load external html or php file in flash?
    If any other way is there then plz tell me.....
    thanx

    No.  Flash can only display html content in textfields and only supports a very limited number of html tags (look up the htmlText property of TextFields).  So to display an html/php file is not possible.

  • I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    - Have you tried a reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Try syncing  the iPod to your computer. Then delete from iTunes and sync. that should delete it from the iPod. Then redownload it.

Maybe you are looking for

  • 2069 problem

    cant install either quick time or itunes on my computer wich is Xp 64 bit. neither am i in compatability mode in both of em. I am administrator on my computer. I've re-downloaded them both together and seperate and it still it doenst want to work. an

  • Using certificates with ACS

    Does any of you know how to configure certificates in ACS?, any reference for this issue? thanks

  • Indesign CS4 Pages pane centering problem

    Dear all, I have a problem with my Pages pane. Instead of centering the pages previews they are now placed to the far right side of the screen. This means that i need to enlarge the pages pane to 4/5th of the screen to be able to view the pages. See

  • SCREEN LAYOUT 5800 xpress music

    hello i want to apologize in advance in case i wrote something stupid or unnecessary but my problem is when i want to start a certain golf game i get these next message. the current display setup is not supported, please change the screen layout befo

  • Display Multi language text

    Hi All, I would like to display all language text I am getting as a parameters. How i can display multi language text?