Submit user input in mobile app

So I'm a newbie and have just been playing around with flash builder. I've been trying to figure out how to be able to allow the user to input info and it send it to an email thru php. I've found many ways to do this on a desktop version just not for a mobile app. Any advice is greatly appreciated.

Here is my modified code. I've gotten it to accept text, but now am having a problem getting it to display what I want. I'm sure I may just be mising something simple. Also, is there a way to get teh label "email" and the text boxto be on the same line? This would just make it look nicer.
Here's what the text box displays after clicking on "Submit!": [email protected]
I've tried several things, but just can't figure it out...
Thank you.
<CODE>
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class guestTEST extends Applet
{ TextField name, email;
String name2;
public void init()
{ setBackground(Color.black);
setForeground(Color.yellow);
Label name$=new Label("Name:");
add(name$);
name=new TextField(10);
name.requestFocus();
add(name);
Label email$=new Label("Email:");
add(email$);
email=new TextField(15);
email.requestFocus();
email.setEditable(false);
add(email);
Button btn1=new Button("Submit!");
btn1.addActionListener(new btn1lis());
add(btn1); }
public void actionPerformed(ActionEvent ae)
{if(ae.getSource() instanceof Button)
{String name2=name.getText();
class btn1lis implements ActionListener
{ public void actionPerformed(ActionEvent ae)
{ email.setText(name2+"@email.com");
name.requestFocus(); }}
public void paint(Graphics g)
// <applet code="guestTEST.class" height=200 width=250> </applet>
</CODE>

Similar Messages

  • MFA Server - User portal and mobile app web server should be installed where?

    Hi. We are in the process of testing the Multi-Factor Auth server and are currently using it for two-factor authentication to RDS for a couple of users. At the moment we are only using the phone call/text options but I'd like to get the mobile app portion
    working to test.  Also still need to implement the user self-service portal for testing.
    Currently I have a vm that was dedicated to MFA where the Multi-Factor Authentication Server software was installed.  Now though I'm a bit confused as to if its safe to install the user portal and mobile app web service portion on this same machine
    or if they should go on a different server(s)?  Currently the box is internal but I'm guessing if it has also act as the web server we would stick it behind the TMG for external inbound access.  Is external access to the primary MFA server ok? 
    What's the best practice for separation of the MFA roles; or is there none and its fine to just put it altogether? 
    Thanks.

    Hello Col. Forbin,
    Thanks for posting here!
    You have a dedicated MFA server and if you install User Portal on the same server as the MFA Server, it uses RPC to communicate with the MultiFactorAuth service locally.
    If the User Portal is installed on a different server, it must connect via the Web Service SDK. You can use either a username/password of a service account that is a member of the PhoneFactor
    Admins security group, or you can configure client certificates. If using the username/password, you can encrypt the appSettings section of the web.config file if desired.
    Under Inetpub\wwwroot\MultiFactorAuth when you edit the web.config file you need to make sure these values are set.
    USE_WEB_SERVICE_SDK:
    true
    WEB_SERVICE_SDK_AUTHENTICATION_USERNAME: domain\user
    WEB_SERVICE_SDK_AUTHENTICATION_PASSWORD:
    password
    OVERRIDE_PHONE_APP_WEB_SERVICE_URL: 
    You might want to refer this thread link:
    https://social.msdn.microsoft.com/Forums/en-US/ad1f6fc1-ab3f-482d-a435-e4fd6665f640/mfa-user-portal-issue?forum=windowsazureactiveauthentication
    Additional reference links:
    https://technet.microsoft.com/en-us/library/dn376347.aspx#multifactor
    https://pfweb.phonefactor.net/install/6.2.1.16387/release_notes.txt
    Let me know if you have any further questions!
    Regards,
    Sadiqh Ahmed

  • Show/Hide action & Submit Form action on mobile apps

    I want to set up multiple small "help" buttons in various places on my PDF form so that when the user clicks on them, additional information is shown.
    However, my understanding is the the show/hide action is not supported on most mobile devices using the free Adobe Reader.
    Do tool tips work on mobile devices?
    Does the Submit Form work on mobile devices?
    Can anyone help with a suggestion/workaround?

    Hi,
    bind the value properties of the input fields to a managed bean in viewScope. E.g. value=#{viewScope.managedBean.attributeName}. This then guarantees that the bean content survives the request and the data is still there
    Frank

  • Check user input

    Have this small script (my first attempt in Scripting), which is loaded with Acrobat 9 at startup.
    app.addMenuItem({ cName: "Gem &KMS-skrivelse", cParent: "File", cExec: "SaveAs('registreringsmeddelelse', 'produkter/')", nPos: 3 });
    app.addMenuItem({ cName: "Gem &dokument i sag", cParent: "File", cExec: "SaveAs('', '')", nPos: 4 });
    function SaveAs(cName, cDirectory)
        //Get full year
        var date=new Date();
        cYear = date.getFullYear();
        //Get year, case number and file name from user input
        var cYear = app.response({ cQuestion: "Indtast sagsår:", cTitle: "Sagsår", cDefault: cYear });
        var cCase = app.response({ cQuestion: "Indtast sagsnr.:", cTitle: "Sagsnr."});
        var cFile = app.response({ cQuestion: "Indtast filnavn (uden .pdf):", cTitle: "Filnavn", cDefault: cName });
        if (cFile == null)
             return;
        //Concatenate path string
        var cPath = "/h/digi/s" + cYear + "/" + cYear + "-" + cCase + "/" + cDirectory + cFile + ".pdf";
        //Try to save the document, if success, inform the user where to
        try {
            this.saveAs({ cPath: cPath, bPromptToOverwrite: true });
            app.alert("Dokumentet blev gemt i " + cPath, 3);
        catch(e) {
            app.alert("Kunne ikke gemme dokument i " + cPath + ". Kontroller at mappen er oprettet, og at du har skriverettigheder til denne, samt at Acrobat/Reader er sat korrekt op.");
        //So long and thanks for all the fish
        return;
    Based on user input it saves documents to folders on a network share.
    It  works just fine, but if the user cancel the input dialog, null is  returned, and eventually will be part of the filename. So I use a if  statement to check if cFile is null, and if true just returns the  function. But this fails with this error message:
    GeneralError: Handlingen mislykkedes.
    Root.(null):17:Menu Gem &dokument i sag:Exec
    script terminated
    Why is this so?
    Best regards
    mp

    The script still continues after return;
    Try this
    app.addMenuItem({ cName: "Gem &KMS-skrivelse", cParent: "File", cExec: "SaveAs('registreringsmeddelelse', 'produkter/')", nPos: 3 });
    app.addMenuItem({ cName: "Gem &dokument i sag", cParent: "File", cExec: "SaveAs('', '')", nPos: 4 });
    function SaveAs(cName, cDirectory)
        //Get full year
        var date=new Date();
        cYear = date.getFullYear();
        //Get year, case number and file name from user input
        var cYear = app.response({ cQuestion: "Indtast sagsår:", cTitle: "Sagsår", cDefault: cYear });
        var cCase = app.response({ cQuestion: "Indtast sagsnr.:", cTitle: "Sagsnr."});
        var cFile = app.response({ cQuestion: "Indtast filnavn (uden .pdf):", cTitle: "Filnavn", cDefault: cName });
       if (cFile == null)
    else
        //Concatenate path string
        var cPath = "/h/digi/s" + cYear + "/" + cYear + "-" + cCase + "/" + cDirectory + cFile + ".pdf";
        //Try to save the document, if success, inform the user where to
        try {
            this.saveAs({ cPath: cPath, bPromptToOverwrite: true });
            app.alert("Dokumentet blev gemt i " + cPath, 3);
        catch(e) {
            app.alert("Kunne ikke gemme dokument i " + cPath + ". Kontroller at mappen er oprettet, og at du har skriverettigheder til denne, samt at Acrobat/Reader er sat korrekt op.");
        //So long and thanks for all the fish
        return;

  • Options button should be on the left side (Mobile Apps)

    Hello guys!
    First of all: I love your product so please do keep up the good work. Secondly, I'm a frequent user of your mobile app, and with the newest update you put the scroll bar and the options button on the same side. This creates a problematic situation as it is hard to hit the one you want. Every day I accidentaly scroll when i want options and vica verca, so what I'm proposing is that you keep the scroll function on the right side and move the options button to the left side. This would make an already awesome app near perfect. Hope you'll take this into consideration for your next update.
    Kind Regards MJ 

    Updated: 2015-07-02Hello!
    Your idea has been submitted a while ago but unfortunately hasn't gathered enough kudos (25 per year). In order to keep an overview of the active ideas in this forum, we will close this idea for now. However this does not mean that your idea has been declined by Spotify.
    If you still feel strongly about your request, we encourage you to post your idea in a little different form again! Maybe now is the right time to receive the support of our community for your suggestion! ;)
    Do you have any further questions on how the idea exchange is managed? Just click here!

  • Lync 2013 mobile app does not work internally, SIP domain is Different than users UPN. not sure if that matters.

    using the lync client connectivity tester on a pc on the same lan as my mobile client everything is green and it says its ready for use.
    using my android galaxy s5 client on wifi on the same lan i get a screen with waiting to sign in spinning and an error at the top "we cant connect to the server check your network connection and server address, and try again."
    i have uploaded the full client log files
    here: client log file
    some errors that stand out from this log file are:
    1. ERROR HttpEngine: Certificate check fails: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
    2. <h2>401 - Unauthorized: Access is denied due to invalid credentials.</h2>
      <h3>You do not have permission to view this directory or page using the credentials that you supplied.</h3>
    i am using the correct creds, same creds i used on the analyzer tool.
    in the analyzer tool i did have to fill in the username field because my sip domain is different then my users UPN. which from what ive read its required to use the username field.
    i also filled in the username field in the mobile app with domain\username
    3. ERROR LYNC: ERROR TRANSPORT /Volumes/ServerHD2/buildagent/workspace/200604/tps/ucmp/platform/networkapis/privateandroid/CHttpConnection.cpp/295:CHttpConnection exception: java.lang.NullPointerException
    Jan 14, 2015 8:40:49 AM INFO LYNC: INFO TRANSPORT /Volumes/ServerHD2/buildagent/workspace/200604/tps/ucmp/ucmp/transport/requestprocessor/private/CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    Jan 14, 2015 8:40:49 AM INFO LYNC: INFO TRANSPORT /Volumes/ServerHD2/buildagent/workspace/200604/tps/ucmp/ucmp/transport/requestprocessor/private/CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry
    counter is: 0
    4. Jan 14, 2015 8:40:50 AM ERROR LYNC: ERROR TRANSPORT /Volumes/ServerHD2/buildagent/workspace/200604/tps/ucmp/ucmp/transport/authenticationresolver/private/CAuthenticationResolver.cpp/431:Failing the original request as we weren't able to get the token
    this is the same type of error i was getting in the lync connectivity analyzer until i filled in the username field. but its filled in, in my client.
    again you can see the full log file is `HERE
    thank you in advance for any help. im trying to get internal working before i try external.

    Eric,
    I am trying to configure a reverseproxy on my netscaler which is in a 2 arm mode(dmz/internal) but I keep getting an error when configuring the monitor.
    i used this guide to configure it
    http://www.lynced.com.au/2014/04/configure-citrix-netscaler-vpx-as.html
    but continue to get this error in the netscaler monitor "Failure - TCP connection successful, but application timed out"
    so the virtual server is never up, thinking about just changing it to tcp as a monitor so it stays up and i can at lesat get the vip up.
    Also your link to the diagram shows it going to the reverse  proxy but the one im using has it going directly to the front end servers.
    http://www.lync-solutions.com/Documents/Lync_2013_protocol_poster_v6_7.pdf
    I'm guessing Microsoft's is the correct one but wonder why the config differential?
    I see that your diagram says "mobility url", what is the mobility url? i though that was the lyncdiscoverinternal.internal.com
    current setup is
    2 fe servers on internal
    1 edge server on dmz
    1 almost done reverse proxy netscaler load balancer.
    also this ms link i used to configure dns entries, along with the pdf linked above.
    http://technet.microsoft.com/en-us/library/jj945644.aspx
    i currently have these external dns entries and they all point to the edge server on the dmz.
    dialin .external.com
    lync .external.com
    lyncweb .external.com
    lyncdiscover.external.com
    meet .external.com
    sip .external.com
    webconf .external.com
    av .external.com
    _autodiscover._tcp.external.com.
    the internal dns links point to 1 of the front end servers
    1. lyncdiscoverinternal.internal.com
    2. lyncdiscover.internal.com
    3. _sipinternaltls._tcp.internal.com
    4. _sipinternal._tcp.internal.com
    5. sipinternal.internal.com
    6. sip.internal.com
    thanks again for your help.

  • User input changes to capital letters after submit

    Hi,
    I have a button which saves the pdf form in portal.For some reason it is changing all my user inputs to capital letters.
    I have used pdfsource to store the pdf .
    I have used pdfsource and changed it to binary format
    SCMS_XSTRING_TO_BINARY
    and then used this binary table and saved the same using following FM.
    CFX_API_DOC_DOCUMENT_WRITE
    Is there anything i can do using javscript to make the inputs to remain the same after clicks the submit button and saves the form.?
    rgds
    vara
    Edited by: Vara K on Oct 2, 2009 7:51 PM

    You need to set the indicator "Lower case" at the domain of that field.
    You need go again regenrate the Table maintaianace to make this effective.
    Regards,
    Naimesh Patel

  • Help with JQuery Mobile App- Passwords

    Hello,
    I just downloaded the Dreamweaver CS5.5 trial today onto my MacBook Pro (OS 10.6.6) and am trying to make a JQuery Mobile web app.  Once users get to the webpages on their iphone/android, I need them to be able to login so that they can get data specific to that specific user.  So far, I have
    <div data-role="content">     
    <form id="form1" name="form1" method="POST" action="<?php echo $loginFormAction; ?>">
      <p>
        <label for="username">Username:</label>
        <input type="text" name="username" id="username" />
      </p>
      <p>
        <label for="pwd">Password:</label>
    <input type="password" name="pwd" id="pwd" />
      </p>
      <p>
    <input type="submit" name="doLogin" id="doLogin" value="Login" />
      </p>
    </form>     
         </div>
    This makes a nice looking username and password login area, but now I do not know what to do after the user inputs their information and clicks on the "Login" button.  Somehow, I need it to recognize a correct username/password, and link to a different page if it is correct, and produce an error if the username/password combination is incorrect.  Any help would be greatly appreciated; I'm really new at this.
    Thank you.

    Hi Lydia, first off welcome to the world of Dreamweaver!
    Much like anything in DW it takes time to learn these things, especially the new technologies. Here is a page in the Adobe Developer Center that has many tutorials to help you get on the right track with the mobile stuff.
    Build dynamic websites and web applications | Dreamweaver Developer Center http://adobe.ly/kBZmhL

  • Paypal button for jquery mobile app in DW CS5.5

    Using the jquery mobile app framework in DW CS5.5 and need help in using Paypal mobile.
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
      <input type="hidden" name="cmd" value="_xclick" />
      <input type="hidden" name="bn" value="webassist.dreamweaver.4_5_0" />
      <input type="hidden" name="business" value="[email protected]" />
      <input type="hidden" name="item_name" value="Odor Cat" />
      <input type="hidden" name="amount" value="19.50" />
      <input type="hidden" name="currency_code" value="USD" />
      <input type="hidden" name="shipping" value="5.50" />
      <input type="hidden" name="return" value="http://www.mysite.com/checkout_success.php" />
      <input type="hidden" name="cancel_return" value="http://www.mysite.com/checkout_failure.php" />
      <input type="hidden" name="undefined_quantity" value="1" />
      <input type="hidden" name="receiver_email" value="@hotmail.com" />
      <input type="hidden" name="mrb" value="R-3WH47588B4505740X" />
      <input type="hidden" name="pal" value="ANNSXSLJLYR2A" />
      <input type="hidden" name="no_shipping" value="0" />
      <input type="hidden" name="no_note" value="0" />
      <input type="submit" name="submit1" id="submit1" value="Pay with PayPal">
               </form>
    This form button will take the user to paypal for payment, but is not for mobile app.
    thanks for your help,
    -Jim Balthrop

    How do I get someone to respond to my question here?
    Let me try again.
    With DW CS5.5 when I try to insert a PayPal button into a table (which I always did with DW8) the table in Design View gets scrambled, making it unusable.  Please would one of you out there who is much more knowledgeable about DW than me try it and see if there is a solution?  If you create a new HTML page in Design view, create a table in it, place the insertion point inside one of the table cells, go to the code view and locate the insertion point there, then paste the PayPal button code at that point. Here's the code:
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="XSXQ9CUMUVLQC">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    Now go back to Design view and see how it looks.  If it acts the way it does for me, the table is no longer visible, but if you go to Live View everything looks fine with the table and the button inside it.  Of course, I can't design in Live View.
    PLEASE can someone out there help me.
    Many thanks.

  • Tools for Mobile App Development with HTML5/CSS

    Hi --
    I am interested in learning to develop cross platform mobile apps using HTML5 and CSS.
    Which Adobe product(s) (and other tools) are best for this?
    I'm guessing that Apache Cordova and Adobe PhoneGap Build are places to start but I'm looking for input from others.
    I'm also guessing the Adobe Edge products are appropriate "IDEs" for this kind of thing?
    What does Cordova bring to the table that isn't available in native HTML5/CSS?
    I apologize if this is not the correct forum for this question but upon reviewing the list of available forums this seemed like the best fit.
    Thanks
    Rich

    Rich,
    There are few routs you could go to create a Mobile App using Adobe tools.
    1. Adobe Muse then export from Muse and visit build.adobe.com as Brad pointed out here:
    Can I make a Mobile site with Muse and then go through PhoneGap?
    "Export as HTML and the create a zip file with the contents. Go to Phonegap,s website and submit the app directly from there instead of through Dreamweaver."
    2. Dreamweaver and Phonegap build access inside Dreamweaver. Read other users experiences on this community form before you rely solely on Dreamweaver to upload your app to build.adobe.com
    3. Manually coding and uploading your html, js, css, assets (images, audio etc) files coded either in new adobe Edge Code or Dreamweaver to build.phonegap.com
    For easier graphic editing for media devices use Adobe's Fireworks graphics software instead of Adobe Photoshop for graphics. Once you start on your project there are various workflows you can use depending on what you are trying to make.
    -Zeshan B.

  • Refresh page but SAVE USER INPUT in tabular form WITHOUT UPDATE

    Hi,
    When there is a tabular form in the page and user refreshes it (in anyway) tabular form's elements are always computed with values from the table in db. Can we somehow save user input in fields so that after refreshing page user will see what he/she has typed but not submitted to db?
    Regards,
    Tom

    Hello Andy,
    Let me introduce you to the problem.
    There is a tabular form based on a source table. User modifies the data and after he/she clicks Submit button the validation procedure is being run before MRU. If the result of validation is positive then MRU is run otherwise data should not be submitted to db and user should be informed about the result. Moreover, he/she should see the invalid data in fields. Not the correct one from db.
    Is there any way to save a session state of these fields or of a whole tabular form? I cannot save the data in other table in db.
    User cannot click 'Add row' several times in my app because after he clicks it once then the button disappears and appears again only when he/she clicks 'Submit' first (so after validation procedure).
    Maybe there is some way to store fields' values in memory and then compute the form when page is loading again?
    Imagine the situation that there are 100 rows in tabular form and user modifies it for one hour, clicks Submit, validation result is negative and his/her whole one hour work is lost, because the form has been refreshed according to what is stored in db. Such situation should never occur.
    Regards,
    Tom

  • Is there a way to convert a fillable form to a mobile app?

    I have a business process that involves a network of affiliated people collecting data via a particular document which they then sign and return to me.  This could be something like a customer filling in a complex order entry form and returning it to me to place an order.  You could also imagine this like the IRS which provides forms for individuals to fill in and return.
    I would like to offer, as an alternative, a mobile app (iOS and Android) that is based on the same forms.  Imagine, for example, the IRS forms: there are desktop apps (such as TurboTax) that put a GUI form on screen, collect the data, and produce the forms necessary to print out and/or submit electronically.  I want to present my forms in a mobile app using 'native' UI widgets.
    Is there an Adobe tool that can do this conversion process?  I know I can use Acrobat and convert documents from Word to fillable PDF form.  And I believe I can use Adobe DC to convert fillable PDF forms to web forms.  Is there something similar to take me from fillable PDF to mobile app?

    TurboTax or H&R Block Tax software only print a copy of the inputted data to a PDF for the client's records. The input screens and data storage are all independent of the PDF printer.

  • Authentication Mechanism for Our Mobile App

    Hi All,
    We developed a mobile app with SAP SRM System as backend.
    Java Adapters is used in the front end to access SAP Backend in the form of Web Service URL, which is nothing but FM in the form of URL.
    The FM in our application, takes only the User ID, who logs in as the input and returns the data of the user as expected.
    When the Web-Service is called, it is accessing the SAP SRM backend DIRECTLY.
    So, we have to give SAP Backend Credentials to the WS to return the output.
    Is there anyway by which, the user can login the mobile app with his user ID and some other password set by him in the front end login application (which can also have "Forgot Password?") BUT NOT SAP Backend password, as the user id will be consumed in the back-end by the Web-Services.  
    Hope I am clear:)
    Thanks & Regards,
    Pavan

    Cool. Thanks.
    >>> thsundel<[email protected]> 6/18/2012 8:06 AM >>>
    seschenburg;2201882 Wrote:
    > See subject. :-)
    >
    > We just installed Novell Messenger 2.2 and I've been asked about mobile
    > app availability. Mostly for internal users on our internal wi-fi
    > segment, but if there's an external option please share that also. I'll
    > probably get asked about that next.
    >
    > Thanks.
    iPhone and Android mobile apps should be available in mid 2012
    according to the roadmap: http://www.novell.com/php5/groupwise/ (ignore
    the video)
    Thomas
    thsundel
    thsundel's Profile: http://forums.novell.com/member.php?userid=128
    View this thread: http://forums.novell.com/showthread.php?t=456946

  • SAP Mobile app Stock photo not work for network location

    Hi Experts
    I found if we use network location path (e.g.
    servername\pic folder\) in SAP Business One General Settings -> Path, Picture Folder, then if we logon SAP B1 Mobile app from iPad/iPhone, and try to open stock photo, we will get error:
    Processing Failed
    Internal server error: contact your system administrator
    It looks like it only work for local path, e.g C:\pic
    Even we put path as :
    local pc name\pic folder, it is also not work.
    Any idea about this?
    Thanks
    Tim

    The first link is a temporary fix for a machine that only one or two people will use. This will not fix the Library Machines that some 3000 users can use at anytime. I can not pre-add all these users every time we image a machine. We also loan out laptops and I need these machine to wirelessly login dynamically to the domain. But I also need these machine to allow access if these machine are removed from our campus and the wireless access is not available.
    Thank again for the help and I hope someone at Apple can fix this soon. I going to have a hard time telling the client that thay can not use the OS that came with they're machine.

  • FIOS Mobile App - Wireless Does Not Work

    Hello all,
    I am trying to use the new FIOS Mobile app on my Android tablet. This should allow me to watch some live TV, however when I try to connect to a channel it tells me I need to be connected to my broadband router.
    In my setup at home my FiOS broadband router does not handle wireless connections, only wired. I have a separate wireless AP that does this. Why should it matter where I get my wireless connection from, as long as I am connected?
    Help.
    Thanks,
    Steve

    billosaur wrote:
    Someone may have thought this was a great idea, but it's very frustrating to download an app, know that you meet all the criteria for using it, then be unable to use it because the app is unable to differentiate successfully that you are, in fact, on you home network. There's one router in my home, it's a Verizon router, and the app should be smart enough to know this. It's obvious that this app was rushed out without a throrough enough suite of tests, because something this simple should not happen. Is there a ticket in place for this? Is the application support group actively trying to rectify this problem? I'll give Verizon a while to sort it out, but this doesn't please me.
    Send the developers an email at [email protected]  I'm fairly confident they don't monitor this site.  If they don't hear from enough people like you with this issue, they won't fix it.  So please notify them of your issue.  Many are complaining on the Google Play app user reviews about the same problem you have.  You can see then on the Google Play site by accessing the site via a PC.

Maybe you are looking for

  • Stock transfer Price calculation

    Dear expert, I got following request from my client about calculating the Stock pricing for Excise calculation, u201CWhenever stock transfer of any material happens from one excisable plant to another excisable plant we have to pass on the excise dut

  • How can I make an iPad slide show from files on my iMac

    I am a graphic designer who wants to use my iPad as a portfolio.  1.) Must I create the slide show on the internet?  2.) Is there a way to transfer the files to the iPad and use an iPad portfolio slide show.  The basic problem is getting the images f

  • Automated Resizing of Images in Photoshop Elements 9

    I recently upgraded my wife's Photoshop Elements from version 6 to version 9.  However, there is one feature from version 6 that seems to not work in version 9.  When she drags an image into a blank template (of any size), the image drags in to the t

  • WDS Image Problem

    Hi Team, Can anyone help me on below query. I personally installed WDS services on Windows Server 2008 and Configured.  We have Lenovo ThinkCenter System with different models for user at our site . In one system we have installed Windows 7 OS and Re

  • How to fix permissions in /Library/Audio/Plug-ins in Lion

    I noticed that very annoyingly, Lion comes with the following default permissions for /Library/Audio/Plug-ins: drwxr-xr-x  9 root  wheel  306 Oct  7 07:37 Plug-Ins That means that you the user cannot drag a plug-in in and out as you wish. What a pain