App is running on simulator but not in Playbook device

Hi,
I have developped an app that has been approved and it's present on app world.
The app is running perfectly on the simulator but customers write reviews saying that they can't save data on the device and no error message is displayed.
I have used AIR SDK and a SQLIte database.
As I'm in Europe and Playbook is not available, I can't debug the app on a real device.
Has anybody an idea about why the app work on the simulator but not on the real device.
Thanks.

Scocam - that's not a particularly helpful comment. A great deal of the apps in AppWorld have not been tested on the PlayBook yet as there ard a number of developers still waiting to receive their PlayBooks.
If they live outside of North America then they have no other way of getting one except for waiting for RIM to ship them out. In the meantime, we use the simulators that RIM provide us and hope the apps behave the same on the real devices. This isn't always the case.
But a great way to demonstrate your ignorance with an unhelpful pithy comment. Well done.
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!

Similar Messages

  • Flex mobile 4.6 app works inside flash builder but not in android emulator

    Originally posted on stackoverflow: http://stackoverflow.com/questions/8663892/flex-mobile-4-6-app-works-inside-flash-builder- but-not-in-android-emulator
    I have a basic flex mobile 4.6 app and it works fully fine in the flash builder built-in emulator using an android device profile like aria...
    It also launches fine in the android emulator but one particular view shows blank (and this view works fine in flash builder).
    Before I get in to many details of the view are there any categorical gotchas that can be causing this?
    I can't seem to get the trace statements from the app to show in 'adb logcat'. It seems I need to compile a debug version of the apk but I don't know how to do this. I use the 'Export Release Build' from the Project menu in flash builder and it doesn't seem to have an option for debug=true.
    The problematic/blank view basically uses the stagewebview and iotashan's oauth library to call linkedin rest apis... A different (and working) view can make restful web service calls in the emulator fine, so it doesn't seem to be an internet permission.
    The source code contained in the problematic/blank view is almost identical to the tutorial found at:http://www.riagora.com/2011/01/air-and-linkedin/
    The differences are: a) The root tag is a View b) I use StageWebView instead of HtmlContainer c) I use my own linkedin key and tokens.
    I would appreciate it if someone can provide me with some pointers on how to troubleshoot this situation. Perhaps someone can tell me how to debug the app while running in the emulator (I think I need the correct adt command arguments for this which matches the 'Export Release Build' menu but adds the debug param?)
    Thanks for your help in advance.
    Comment Added:
    I suspect that this has to do with connections to https:// api.linkedin.com and https:// www.linkedin.com. The only reason I can think of that the same code is not having issues inside of Flex Builder but indeed having issues in the Android emulator is something to do with certificates. Any ideas?

    Thanks er453r,
    I have created a project that clearly reproduces the bug.  Here are the steps:
    1) Create a UrlLoader and point it to https://www.google.com (HTTPS is important because http works but HTTPS does not)
    2) Load it
    3) Run in Flash Builder 4.6/Air 3.1 and then run in Android emulator.  The former works with an http status 200.  The latter gives you an ioerror 2032.  I am assuming what works in Flash Builder is supposed to work in the Android Emulator and what what works in the emulator is supposed to work in a physical device (plus or minus boundary conditions).
    I see a certificate exception in adb logcat but not sure if it's related...
    Here is the self contained View code which works with a TabbedViewNavigatorApplication:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        xmlns:ns1="*"
                        xmlns:local="*"
                        creationComplete="windowedapplication1_creationCompleteHandler(event) "
                        actionBarVisible="true" tabBarVisible="true">
              <fx:Script>
                        <![CDATA[
                                  import mx.events.FlexEvent;
                                  protected var requestTokenUrl:String = "https://www.google.com";
                                  protected function windowedapplication1_creationCompleteHandler(event:FlexEvent):void
                                            var loader:URLLoader = new URLLoader();
                                            loader.addEventListener(ErrorEvent.ERROR, onError);
                                            loader.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onAsyncError);
                                            loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
                                            loader.addEventListener(HTTPStatusEvent.HTTP_RESPONSE_STATUS, httpResponseStatusHandler);
                                            loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
                                            var urlRequest:URLRequest = new URLRequest(requestTokenUrl);
                                            loader.load(urlRequest);
                                  protected function requestTokenHandler(event:Event):void
                                  protected function httpResponse(event:HTTPStatusEvent):void
                                            label.text += event.status;
                                            // TODO Auto-generated method stub
                                  private function completeHandler(event:Event):void {
                                            label.text += event.toString();
                                            trace("completeHandler data: " + event.currentTarget.data);
                                  private function openHandler(event:Event):void {
                                            label.text +=  event.toString();
                                            trace("openHandler: " + event);
                                  private function onError(event:ErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("onError: " + event.type);
                                  private function onAsyncError(event:AsyncErrorEvent):void {
                                            label.text += event.toString();
                                            trace("onAsyncError: " + event);
                                  private function onNetStatus(event:NetStatusEvent):void {
                                            label.text += event.toString();
                                            trace("onNetStatus: " + event);
                                  private function progressHandler(event:ProgressEvent):void {
                                            label.text += event.toString();
                                            trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);
                                  private function securityErrorHandler(event:SecurityErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("securityErrorHandler: " + event);
                                  private function httpStatusHandler(event:HTTPStatusEvent):void {
                                            label.text += event.toString();
                                            //label.text += event.responseHeaders.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function httpResponseStatusHandler(event:HTTPStatusEvent):void {
                                            label.text +=  event.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function ioErrorHandler(event:IOErrorEvent):void {
                                            label.text +=  event.toString();
                                            label.text += event.text;
                                            trace("ioErrorHandler: " + event);
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Label id="label" y="185" width="100%" color="#0A0909" horizontalCenter="0" text=""/>
    </s:View>

  • Some games and apps work on nokia n8 but not on no...

    i have a nokia c7 and i just went to the ovi store to download need for speed shift HD but it said that it was not available for my set but when i set the phone as n8 it said your phone is set
    why? they both have same os and almost the same hardware with the 3d accelerometer and all
    the RAM is same the graphic capeabilities of both phones are same thenwhy and this not only for this game for a number of apps

    699taha wrote:
    Hello did you try to download the game? CAN YOU DO THIS FOR ME PLEASE? just set your phone as n8 send the link of the game to your phone and try to download and then run it THANK YOU!!!!!!..... PLEASE TELL ME IF WORK OR NOT
    Need for Speed Shift is now available in Ovi Store for C7. It is named NFS Shift instead, and unfortunately, it is not free.
    IMO, Need for Speed Shift is free only for N8 was as a form of sales marketing technique to differentiate the product (N8, as an Nseries is suppose to be a flagship device anyway) from other Symbian^3 devices. I'm not sure why they can't launch paid version of NFS for C7 earlier, probably technical issue maybe. I wanted to buy but I bought GT Racing instead, since it is available from the beginning.
    I faced similar issue that certain apps are available to N8 but not to C7, you can email Ovi support to ask them why, basically I forgot what they replied me lol.

  • CF10 App server running after reboot; but website unavailable until service restart

    Hello, everyone.
    I recently returned to a job I previously had after several months at a different job.  Upon my return, I inherited someone else's dev system (my previous dev system, apparently, had been reimaged and given to someone else, after I left.)
    This system originally had CF9 server on it (the ColdFusion9 folder is still here) and now has CF10.  Using the built-in web server (no IIS, no Apache.)
    Every time I boot/reboot the system, I can see in Computer Manage System that CF10 Application Server is, indeed, running.  But if I try to open any of the pages that I am working on, I get an error message that the site can't be found.
    I go into Computer Manage System, go to Services, right-click the CF10 Application Server, choose "Restart", wait for it to finish, and voila!, I can get a working page.
    Does anyone know why this is happening, and/or how to remedy it so that CF will work immediately after boot/reboot without going to restart the service?
    Thank you,

    Good to hear you solved it. If you may still want to know exactly why that was causing an issue, I would propose something I didn’t yet see anyone else do: look specifically at the CF log called coldfusion-out.log. That is basically the “console log” when you run CF as a service, and it would be interesting to know what was in that log if you compared the startup messages in your working and failing examples.
    The log tracks info generally for days if not weeks or months (depending on what else is logged in the file and how quickly it fills), but it may well give you insight  into what was up. I’m not saying there WILL be something there. As Anit said, what you experienced was odd, but if there will be something logged anywhere about this, it may be there.
    If nothing else, I leave this here for anyone else who has a similar sort of problem in the future.
    /charlie
    Re: CF10 App server running after reboot; but website unavailable until service restart
    created by WolfShade <http://forums.adobe.com/people/WolfShade>  in ColdFusion Server Administration - View the full discussion <http://forums.adobe.com/message/6199851#6199851

  • Any way to keep apps on my ipod touch but not keep copies of them on my PC?

    Is there any way to keep apps on my ipod touch but not keep copies of them on my PC? I have space issues on my PC, so I don't want to have to keep copies there. I deleted the apps from my PC, but when I synced my ipod to add some photos, all my apps were deleted from my ipod. Is there any way to be able to just sync photos and music, and not apps? Seems I am able to manually manage music, which allows me to not have to keep my music library stored on my PC, but can't get the photos to sync without the apps syncing too.
    Any help here would be greatly appreciated. I'm new at this.
    Thanks.

    marcy5 wrote:
    Is there any way to keep apps on my ipod touch but not keep copies of them on my PC?
    though purchased apps can be re-downloaded for free, i strongly advise against such a practice !
    I have space issues on my PC
    you would be better off to move your iTunes library to an external drive, thus freeing up space on your startup disk. this read will tell you how http://support.apple.com/kb/HT1364.

  • My friend has lost his iPhone 5.on find my iPhone when entered id and password app says id is valid but not activated. What should I do to find that lost iPhone

    My friend has lost his iPhone 5.on find my iPhone when entered id and password app says id is valid but not activated. What should I do to find that lost iPhone

    If Find My Phone has not been activated on the iPhone before being lost there is nothing more that you can do to locate it with iCloud.  The only option is physical search for it.
    If you have an idea of the location, call the iPhone and see if you can hear it ring.

  • WHEN I CONNECT, THROUGH USB CABLE, MY IPHONE TO THE MAC BOOK PRO, THE ITUNES APP STOP RUNNING AND I CAN NOT SYNCRONIZE THE IPHONE

    I have an iphone 4, iOS 7.1.2
    Mac book pro 13in Mid 2012, with OS X VERSION 10.9.4, Processor speed 2.9 Ghz, Memory 8GB 1600MHz DDR3, Intel core i7, Storage capacity 750 GB, 650 GB available.
    WHEN I CONNECT, THROUGH USB CABLE, MY IPHONE TO THE MAC BOOK PRO, THE ITUNES APP STOP RUNNING AND I CAN NOT SYNCRONIZE THE IPHONE.

    Hello skkmmayer,
    That is probably a lot of stuff you do not want on your iPhone. So this can be handled a few different was. For you current situation, you can delete the apps directly on your iPhone by holding on the app until it starts to jiggle and then tap on the X of all the apps that you do not want. The second thing you can do is before you sync with iTunes, look at the app section on your iPhone to know what gets transfer to it and you can deselect items that you do not want. Lastly, if you download content on your iPad and it is a universal app, you can actually download it directly to your iPhone by looking at your past purchases and download it directly from the App Store. Check out the articles below for more information if need further assistance. 
    How to delete content you've downloaded from the iTunes Store, App Store, iBooks Store, or Mac App Store
    http://support.apple.com/kb/HT5772
    iTunes 11 for Mac: Sync and organize iOS apps
    http://support.apple.com/kb/PH12115
    Download past purchases
    http://support.apple.com/kb/HT2519
    Regards,
    -Norm G. 

  • I downloaded an app; went to my computer, but not to my iPhone

    I downloaded an app; went to my computer, but not to my iPhone.  I have iCloud plus had connected my phone to my computer.  How do I get the app to my iPhone?

    Open itunes, connect iphone, select what you want to sync, sync

  • TS1702 i downloaded advance cinema app from tha app store, but everytime i click on a movie, it takes me to the IMDB website and im not able to watch the movie. The app promises 4000 free movies, but not able to watch any new movies...

    i downloaded advance cinema app from tha app store, but everytime i click on a movie, it takes me to the IMDB website and im not able to watch the movie. The app promises 4000 free movies, but not able to watch any new movies...

    I have found the issue. I have not found an answer to the prob. I have put in a case with customer service. If it doesn't work right, I need my money back!!!

  • Works on emulators but not on mobile devices

    Hello,
    My project works on emulators but not on mobile devices (no image and on Samsung it says "unsupported file").
    Please help, I don't know what to do. My configurations: MIDP 2.1, CLDC 1.1.
    Thanks in advance.
    Edited by: Vitali.pom on Oct 27, 2011 12:01 PM

    Edit: I succeeded to solve it accidentally. I did the following: Sign the jar in Netbeans, clean and build, the jar didn't work, I wiped out the .ks from the jar and clean and build again. Now it worked.
    Edited by: Vitali.pom on Oct 30, 2011 1:28 AM

  • What would happen if I turn off my backup and delete backup data From my device? Will it delete my music and everything for ever or just stay in the cloud but not on my device?

    What would happen if I turn off my backup and delete backup data From my device? Will it delete my music and everything for ever or just stay in the cloud but not on my device?

    If you have multiple devices backing up to the Cloud, you will see all of them listed. You would click on each device to change what is backed up from that device. You can then delete your individual back-ups.
    Once you have all your settings to your liking, you can then go back to Settings>iCloud>Storage & Backup, and click on Back Up Now (bottom of the screen) to create a fresh backup with your new settings.
    Cheers,
    GB

  • Apps icon bouncing on dock, but not starting

    I have Macbook Pro (Mid 2010) with 256 GB with Agility 3 SSD. Additional 500 GB HDD in the optical drive bay and running Mountain Lion GM (and final version).
    My computer is running 7/24 and I dont lid the screen. It sleeps every night (with lock screen). Since last 10 days, native apple application not working (safari, activity monitor etc.) when system waking up from sleep (typing password and hitting the enter).
    icons are keeps bouncing, but not working. Some third party application is running but after a while, they and Finder stops working. System must be switched off by power button.
    After the reboot, everytings goes well. All applications are working.
    I have verify and repair disk permission via Disk Utility from Utilities and in the recovery tool. But doesnt effect. Next morning same problem.
    Re-installed Mountain Lion and restore from Time Machine. After two days same problem occours again.
    Need a solution
    Thank you

    I have this same exact problem with my iMac. It just started happening this week I notice. If I power down the machine sometimes it hangs on shutdown which forces me to kill the power and when I power the machine back up all is fine for a while. If I try to launch any native Apple app llike Safari or Disk Utility all I receive is a bouncing icon in the dock. It never starts, so I have to kill it. If I use FireFox it start without a hitch. I am running 10.8.2, so something is worng here. I have not added any new software that I didn't already have.

  • Is it possible http connection work well in simulator but not in mobile?

    i am developing database three tier client/server application.
    i want to connect mobile application to databse server via servlet page using tomcat server.
    my code is working well in java wireless toolkit and it can download and upload data using my servlet page in which i had used JDBC connectivity but when i am installing same JAR file into Nokia 6030 it will gives me error like java.io.IOException: error in http operation. i had used this code to establish connectivityhcon = (HttpConnection)Connector.open(url, 3);
    hcon.setRequestMethod(HttpConnection.POST);
    hcon.setRequestProperty( "User-Agent","Profile/MIDP-2.0, Configuration/CLDC-1.0");
    hcon.setRequestProperty("Content-Language","en-US");
    hcon.setRequestProperty( "Content-Type", "application/x-www-form-urlencoded" );
    dos = (DataOutputStream)hcon.openDataOutputStream();               
    byte abyte0[] = data.getBytes();      
    dos.write(abyte0);
    dos.flush();
    dis = (DataInputStream)hcon.openDataInputStream();
    while((ch = dis.read()) != -1)
               response = response+(char)ch;
    if(hcon.getResponseCode()==200 && !response.equals("ERROR"))     
         setData(response);
    else
         errorAlert("Server Error","Server can not handle your request at this time, Error msg : " + response);in this code i am sending data to server at url where i have used servlet post method this method work well in simulator but when i m instaling this program into deveice request generated from mobile didn't came to servlet.
    whe i am browsing same page's get method through WAP in mobile it is working but thruogh application not connecting.
    is there any more setting require to browse url via application like in Accesspoint proxy server of provider or i need to change code?.
    If anybody having the solution then please send me.
    thanx .
    jasmit vala.
    [email protected]

    Hi,
    I am also facing the same problem?
    Have u got any solution?
    pls let me know
    its urgent
    thanx in adv.
    Regards,
    Raj

  • I want a user to use only import, it run with export but not import

    Hi,
    i create a user for use only for import and for export.
    batch_export with exp_full_database role <- It run
    batch_import with imp_full_database role <- don't run
    P:\>sqlplus batch_export/batch
    SQL*Plus: Release 10.1.0.2.0 - Production on Lun. Ao¹t 21 17:21:58 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    ERROR:
    ORA-00604: une erreur s'est produite au niveau SQL rÚcursif 1
    ORA-20000: Connexion refusee
    ORA-06512: Ó ligne 41
    Entrez le nom utilisateur :
    P:\>sqlplus batch_import/batch@rfsage
    SQL*Plus: Release 10.1.0.2.0 - Production on Lun. Ao¹t 21 17:03:36 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    ConnectÚ Ó :
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> exit
    the trigger as run
    create or replace trigger batch_export.check_connexion after logon on database
    declare
    V_MODULE SYS.V_$SESSION.module%TYPE;
    V_TERMINAL SYS.V_$SESSION.terminal%TYPE;
    V_SID SYS.V_$SESSION.SID%TYPE;
    V_SERIAL SYS.V_$SESSION.SERIAL#%TYPE;
    V_COMMAND varchar2(100);
    V_CURRENT_USER varchar2(20);
    V_CURRENT_SID SYS.V_$SESSION.SID%TYPE;
    cursor connexion is
    select substr(module,1,7) module, substr(terminal,1,12) terminal, sid, serial# from v$session T1 where schemaname='BATCH_EXPORT';
    cursor ID_CUR is
    select user from dual;
    cursor SID_CUR is
    select SYS_CONTEXT('USERENV','SID') sessionid from dual;
    --select SYS_CONTEXT('USERENV','CURRENT_USERID') current_userid from dual;
    Begin
    open SID_CUR;
    loop
    fetch SID_CUR into V_CURRENT_SID ;
    EXIT WHEN SID_CUR%NOTFOUND;
    dbms_output.put_line('V_CURRENT_SID:'||V_CURRENT_SID);
    end loop;
    close SID_CUR;
    open ID_CUR;
    loop
         fetch ID_CUR into V_CURRENT_USER ;
         EXIT WHEN ID_CUR%NOTFOUND;
         if V_CURRENT_USER='BATCH_EXPORT' then
         open connexion;
         loop
              fetch connexion into V_MODULE,V_TERMINAL,V_SID,V_SERIAL ;
              EXIT WHEN connexion%NOTFOUND;
              if V_MODULE<>'EXP.EXE' then
              dbms_output.put_line('V_SID:'||V_SID);
              dbms_output.put_line('V_CURRENT_USER:'||V_CURRENT_USER);
                   if V_CURRENT_SID=V_SID then
                   dbms_output.put_line('MODULE:'||V_MODULE);
                   RAISE_APPLICATION_ERROR (-20000,'Connexion refusee');
                   end if;
              end if;
         end loop;
         close connexion;
         end if;
    end loop;
    close ID_CUR;
    End;
    as the same for import user.
    I try with role in trigger but it don't, i see this in forum Oracle.
    But i think EXP_FULL_DATABASE have not DBA rule, but IMP_FULL_DATABASE have.
    How i do this ?
    I want just to use a user to imp utilities, but not connexion in sqlplus.
    Thanks for your help
    Christophe

    thanks for your help.
    it run !
    for example :
    as the system user
    SQL> INSERT INTO PRODUCT_USER_PROFILE values ('SQL*Plus', 'BATCH', 'CONNECT',null,null, 'DISABLED', NULL, NULL);
    1 ligne créée.
    SQL> grant create session to batch;
    Autorisation de privilèges (GRANT) acceptée.
    SQL> INSERT INTO PRODUCT_USER_PROFILE values ('SQL*Plus', 'BATCH', 'SELECT',null,null, 'DISABLED', NULL, NULL);
    1 ligne créée.
    the result
    oracle@debian:~$ sqlplus batch/batch;
    SQL*Plus: Release 10.2.0.1.0 - Production on Mar. Août 22 06:53:00 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connecté à :
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select user from dual;
    SP2-0544: Commande "select" désactivée dans le profil utilisateur du produit
    SQL>
    oracle@debian:~$ exp batch/batch owner=batch file=test.dump
    Export: Release 10.2.0.1.0 - Production on Mar. Août 22 06:54:32 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connecté à : Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export fait dans le jeu de car WE8DEC et jeu de car NCHAR AL16UTF16
    le serveur utilise le jeu de caractères WE8ISO8859P1 (conversion possible)
    Prêt à exporter les utilisateurs spécifiés ...
    . export des actions et objets procéduraux de pré-schéma
    . export des noms de bibliothèque de fonctions étrangères pour l'utilisateur BATCH
    . export des synonymes de type PUBLIC
    . export des synonymes de type PRIVATE
    Thanks for all

  • IPhone SDK: UIScrollView, zooming works on simulator but not device

    I've got a UIScrollView set up to zoom an image. It worked fine under Beta 5, both on an iPod Touch and in the simulator.
    In Beta 6, after changing the method scrollViewWillBeginZooming to viewForZoomingInScrollView the zoom works fine in the simulator, but it does not work on the iPod.
    Any ideas?

    Excited to hear that you were able to zoom image.
    I am ****** off, sure because I am new in this.
    I got one UIImageView in UIView.
    And I can display Images.
    I like to implement the pinch and zoom function.
    From my googling I understood that UImageView should be inside a UIScrollView
    But I dont have any idea how to do that.
    Can you please send me the sample code for doing the same.
    Thanks in advance.
    If you guys no some books to refer , please inform me.
    Expecting your help

Maybe you are looking for

  • Does anyone know of troublefree editor that works?

    What I want, is a video capture/editing program that works trouble free; or as close to that as possible. I've upgraded from Premiere 10 to 12 and many versions prior to those, simply hoping that the next version will resolve my constant issues that

  • Parallels: transferring info from a Windows program to a Mac program

    I've been devoted to a Mac for a few years now, but I recently had to switch back to Windows because of its far superior voice recognition software. (I was recently disabled, and now rely on voice recognition to type.) If I were to buy a new Mac and

  • How do i compare the similarities between two or more text files?

    The subject says it all. I am familiar with a number of the diff tools that are available, but I have yet to find a tool or app that will find the similarities between two text files. Any suggestions?

  • Use param for SQL statement...

    Hi, all, Thanks for the help. I have a select statement working in sqlplus: SELECT A.addressid FROM JOHNDOE.tb_Address A, JOHNDOE.tb_Address B WHERE B.Addressid = 1 AND SDO_WITHIN_DISTANCE(A.Location, B.location, 'DISTANCE = 12.8 UNIT = MILE') = 'TRU

  • Photoshop download problem

    I signed up last night for the photoshop and ligthroom special lightroom is working but photoshop isn't even on my computer?