Drag and drop to upload

I'm using the desktop AIR application. Is there any way to
drag and drop a file onto the widget view to begin uploading the
file without going through any extra steps? When I try this, the
application maximizes, but that's it.

Hello davidmacy,
Thanks for using the AIR application with Acrobat.com.
Dragging a file onto the widget will expand the AIR app to
full size so that the final buttons can be pressed.
This is a good suggestion for additional behavior, I'll pass
it on to the Acrobat.com Team!
Regards,
Pete

Similar Messages

  • How do I view an FTP site in Windows Explorer for drag and drop file upload in Firefox?

    In Internet Explorer you have the drop-down menu option called '''"Page"''' (located below the address bar, on the right-hand side). In the options listed you can''''' "Open FTP side in Windows Explorer"'''''.
    I cannot seem to locate a similar option within Firefox 4.0.
    Guidance and suggestions welcome. Thanks.

    You can look at:
    * FireFTP: https://addons.mozilla.org/firefox/addon/684
    * FileZilla: http://filezilla.sourceforge.net/

  • File Upload via Drag and Drop in IE10

    The drag-and-drop file upload feature introduced in Spaces PS5 is great but it is not compatible with IE9 and earlier versions (see link below).
    Has anyone tried using drag-and-drop with IE10? Did it work?
    https://support.oracle.com/epmos/faces/ui/km/SearchDocDisplay.jspx?_afrLoop=1753102566545647&type=DOCUMENT&id=1453326.1&displayIndex=1&_afrWindowMode=0&_adf.ctrl-state=nyed5wpzc_584

    I'm using the Windows version of Acrobat Pro 9 and found this thread with the same problem. (Key command to replace on Windows is: Ctrl + Alt).
    Anyway, to answer the how to disable the warning, go to the Acrobat Preferences. In the General category under "Warnings", check the setting "Do not show edit warnings". There should be a similar setting on the Mac version.
    (Now I wish replacing pages didn't require a key command like in previous versions.)

  • Drag and drop in CRM7?

    Dear Experts,
    We are exploring the drag and drop functionnality for our client in SAP CRM7 standalone.
    I have found this solution in the scn http://scn.sap.com/community/developer-center/netweaver-gateway/blog/2014/11/12/file-uploaddownload-in-crm-webui-using-net-weaver-gatewayodata-services .
    However, I am new to SAP CRM and would like to know if this is a potential solution?  Has already implemented it before?
    Thanks a lot for your feedback,
    Regards,
    Emilie

    Hi Hari,
    Thanks for your concern !
    Regarding the requirement:  I am refering to the assignement block 'Attachment' in Service Request.
    We are looking for a functionnality Drag and Drop to upload multiple files from a desktop to the CRM_UI in one shot.
    Concerning the link, it is a post in the scn: http://http://scn.sap.com/community/developer-center/netweaver-gateway/blog/2014/11/12/file-uploaddownload-in-crm-webui-using-net-weaver-gatewayodata-services  , below is an extract:
    Thanks a lot for your help.
    Create the project in SEGW Transaction Code and the Entity Type:
    In the Entity Type Properties select the check box: Media
    And the properties of Entity Type are:
    And then map the RFC function module for the Create Operation in the Entity Set.
    And do the mapping for Get Entity (Read) Operation in the Entity Set.
    Then Redefine the DEFINE method in the *MPC_EXT class and add the below logic:
      METHOD define.
    super->define( ).
    DATA: lo_entity   TYPE REF TO /iwbep/if_mgw_odata_entity_typ,
           lo_property TYPE REF TO /iwbep/if_mgw_odata_property.
    lo_entity = model->get_entity_type ( iv_entity_name = 'TerritoryFileAttachment' ).
      IF lo_entity IS BOUND.
       lo_property = lo_entity->get_property( iv_property_name = 'MIME_TYPE' ).
       IF lo_property IS BOUND.
         lo_property->set_as_content_type( ).
       ENDIF.
    ENDIF.
    ENDMETHOD.
    Then Redefine the CREATE_STREAM Method (/IWBEP/IF_MGW_APPL_SRV_RUNTIME~CREATE_STREAM) in the *DPC_EXT class and implement the below logic to upload the file attachment into the CRM WebUI for a given Territory Plan.
    All input parameters/values we have to get into the SLUG parameter from the UI Side (If we have multiple input parameter values then with concatenation of multiple parameter values with delimiter we have to get the values in SLUG parameter).
      METHOD /iwbep/if_mgw_appl_srv_runtime~create_stream.
    DATA:  ls_file_attach               TYPE        ztp_s_file_attachment,
           lv_tp_guid                   TYPE        crm_mktpl_ib_mpl_guid,
           ls_key                       TYPE        /iwbep/s_mgw_tech_pair,
           lt_keys                      TYPE        /iwbep/t_mgw_tech_pairs,
           lv_entityset_name            TYPE        string,
           lv_entity_name               TYPE        string,
           lo_tech_read_request_context TYPE REF TO /iwbep/cl_sb_gen_read_aftr_crt,
           ls_entity                    TYPE REF TO data,
           ls_string                    TYPE        string.
    DATA:  ls_bo                  TYPE        sibflporb,
           lt_properties          TYPE        sdokproptys,
           ls_properties          TYPE        sdokpropty,
           lt_file_access         TYPE        sdokfilacis,
           ls_file_access         TYPE        sdokfilaci,
           lt_file_content_binary TYPE        sdokcntbins,
           ls_loio                TYPE        skwf_io,
           ls_phio                TYPE        skwf_io,
           ls_error               TYPE        skwf_error,
           lv_file_size           TYPE        i,
           lt_messages            TYPE        zif_zdmtp_service=>bapiret2_t,
           ls_messages            TYPE        bapiret2,
           lo_dp_facade           TYPE REF TO /iwbep/if_mgw_dp_facade,
           lv_destination         TYPE        rfcdest,
           lr_dmtp_service        TYPE REF TO zcl_dmtp_service,
           lv_tp_id               TYPE        crm_mktpl_campaignid.
    FIELD-SYMBOLS: <ls_data> TYPE any.
    CLEAR: ls_file_attach, lv_tp_guid, ls_bo, lt_properties, ls_properties,
            lt_file_access, ls_file_access, lt_file_content_binary,ls_loio,
            ls_phio, ls_error, lv_file_size.
    ***IV_SLUG parameter will be passed from the front-end side
    SPLIT iv_slug AT '/' INTO ls_file_attach-tp_id
                           ls_file_attach-filename
                           ls_file_attach-name
                           ls_file_attach-description.
    ****File Type(MIME TYPE)****
    ls_file_attach-mime_type  = is_media_resource-mime_type.
    ****File Content in XSTRING.*****
    ls_file_attach-file_value = is_media_resource-value.
    ****Convert the Territory Plan ID into GUID****
    CALL FUNCTION 'CONVERSION_EXIT_CGPLP_INPUT'
    EXPORTING
        input  = ls_file_attach-tp_id
    IMPORTING
        output = lv_tp_guid.
    ****Build Attachment Business Object****
    ls_bo-catid  = 'BO'.
    ls_bo-typeid = 'BUS2010010' .
    ls_bo-instid = lv_tp_guid.
    ****Build Attachment Properties****
    ls_properties-name  = 'KW_RELATIVE_URL'. "NAME
    ls_properties-value = ls_file_attach-name.
    APPEND ls_properties TO lt_properties.
    CLEAR ls_properties.
    ls_properties-name  = 'DESCRIPTION'. "DESCRIPTION
    ls_properties-value = ls_file_attach-description.
    APPEND ls_properties TO lt_properties.
    CLEAR ls_properties.
    ls_properties-name  = 'MIMETYPE'. "MIME TYPE
    ls_properties-value = ls_file_attach-mime_type.
    APPEND ls_properties TO lt_properties.
    CLEAR ls_properties.
    ****Convert the Attachment File Data from XSTRING to BINARY****
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
       buffer                    = ls_file_attach-file_value
    IMPORTING
       output_length = lv_file_size
    TABLES
       binary_tab    = lt_file_content_binary.
    ****Build File Access Information****
    ls_file_access-file_size  = lv_file_size.
    ls_file_access-binary_flg = abap_true.
    ls_file_access-file_name  = ls_file_attach-filename.
    ls_file_access-mimetype   = ls_file_attach-mime_type.
    APPEND ls_file_access TO lt_file_access.
    CLEAR ls_file_access.
    ****Upload the Attachment for Territory Plan in CRM WEBUI****
    CALL METHOD cl_crm_documents=>create_with_table
    EXPORTING
       business_object     = ls_bo
       properties          = lt_properties
       file_access_info    = lt_file_access
       file_content_binary = lt_file_content_binary
    IMPORTING
       loio                = ls_loio
       phio                = ls_phio
       error               = ls_error.
    IF ls_error IS INITIAL.
      ls_file_attach-file_loio_guid = ls_loio-objid.
    ELSE.
      ls_messages-id                   = ls_error-id.
      ls_messages-number           = ls_error-no.
      ls_messages-type                = ls_error-type .
      ls_messages-message_v1 = ls_error-v1 .
      ls_messages-message_v2 = ls_error-v2 .
      ls_messages-message_v3 = ls_error-v3 .
      ls_messages-message_v4 = ls_error-v4 .
      APPEND ls_messages TO lt_messages.
    me->/iwbep/if_sb_dpc_comm_services~rfc_save_log(
    EXPORTING
       iv_entity_type = iv_entity_name
       it_return      = lt_messages
       it_key_tab     = it_key_tab ).
    ****Call RFC commit work****
    me->/iwbep/if_sb_dpc_comm_services~commit_work(
    EXPORTING
    iv_rfc_dest = lv_destination) .
    RETURN.
    ENDIF.
    *             -****Read After Create -******
    CREATE OBJECT lo_tech_read_request_context.
    * Create key table for the read operation
    ls_key-name  = 'TP_ID'.
    ls_key-value    = ls_file_attach-tp_id.
    APPEND ls_key TO lt_keys.
    ls_key-name  = 'FILENAME'.
    ls_key-value    = ls_file_attach-filename.
    APPEND ls_key TO lt_keys.
    ls_key-name  = 'IV_OBJECT'.
    ls_key-value    = 'FILEATTACH'.
    APPEND ls_key TO lt_keys.
    ls_key-name  = 'FILE_LOIO_GUID'.
    ls_key-value    = ls_file_attach-file_loio_guid.
    APPEND ls_key TO lt_keys.
    ****Set into request context object the key table and the entity set name****
    lo_tech_read_request_context->set_keys( IMPORTING et_keys = lt_keys ).
    lv_entityset_name = io_tech_request_context->get_entity_set_name( ).
    lo_tech_read_request_context->set_entityset_name( IMPORTING ev_entityset_name = lv_entityset_name ).
    ****Call read after create****
    /iwbep/if_mgw_appl_srv_runtime~get_entity(
    EXPORTING
       iv_entity_name          = iv_entity_name
       iv_entity_set_name      = iv_entity_set_name
       iv_source_name          = iv_source_name
       it_key_tab              = it_key_tab
       io_tech_request_context = lo_tech_read_request_context
       it_navigation_path      = it_navigation_path
    IMPORTING
       er_entity               = ls_entity ).
    ****Send the read response to the caller interface****
    ASSIGN ls_entity->* TO <ls_data>.
    IF <ls_data> IS ASSIGNED.
       copy_data_to_ref(
            EXPORTING
                is_data = <ls_data>
        CHANGING 
                cr_data = er_entity ).
    ENDIF.
    ENDIF.
    ENDMETHOD.
    Once the CREATE_STREAM method redefines is done then we can test the service using the REST Client to upload the file attachment into CRM WebUI for Territory Plan.
    Please Note: Maximum file size 30 MB will allow to upload the file from CRM WebUI standard functionality.
    Test the service using the Rest-client.
    First get the CSRF-Token value while calling below service.
    Then in the response we will get the CSRF Token Value.
    Then give the CSRF Token value and SLUG parameter in the Headers and choose the file to upload it via OData Service. Once we click on send then file will be uploaded in CRM WebUI for a given Territory Plan.

  • SMB Drag and Drop in Win 98

    We are setting up iFS to enable SMB drag-and-drop to upload multiple files in Windows 98 environment. Windows 98 does not take IP address when mapping the network drive, it takes computer name only. How do you resolve this issue?

    Yes it does.
    Open an MS-DOS prompt and enter:
    'net use /?'
    You should be able to map a drive using an IP address like this:
    net use d: \\ip\resource
    d: = any drive available (not in use) drive letter
    ip = IP-addresse or name of server holding resource
    resource = name of resource.
    If you have admin rights to the server in question you may use c$ (meaning C: on the server). There is such builtin admin-share names for all local drives on the server.
    If you don't have admin rights to the server

  • Unable to upload a file with Drag and Drop and http

    Hello,
    I am trying to upload a file through the web interface (Netscape 4.7 and IE 5.0). When I click un upload, Via Drag and Drop, a new window is started, but never completes.
    With Netscape, I get a message box: Netscape is unable to locate the server null. Please check the server name and try again.
    With IE 5, I get an error: This page can not be displayed.
    Are there any files I need to edit on the PC side to get this to work?
    Thanks
    Scott
    PS I think you guys are doing a great job with support on iFS.

    WebUI Drag & Drop requires FTP to be running and available.
    Drag & Drop is really just uses the browser built in FTP ability.

  • I can't get Mozilla Drag and Drop Uploader to work. Suggestions for troubleshooting?

    I have a recurring need to post 100's of photos from "My Pictures" to a web site. I currently click on "Browse", up pops the photo file, and I then must manually select the proper photos and double click them to move them to the web site.
    A colleague who has the same recurring need has told me to download Firefox as my browser, then download and install the "Drag and Drop Uploader". By doing this, I should be able to simply highlight the proper photos from 'My Pictures" and drag them to the correct box on the web site.
    I have seen him do this on his computer, so I know it is possible. I'm guessing the problem I am having lies in having downloaded incompatible versions.
    Help?

    Support for that extension is here: <br />
    http://www.teslacore.it/wiki/index.php?title=DragDropUpload

  • How do I put music I have uploaded from a CD onto my iphone 5 via itunes? I have tried to drag and drop it onto my iphone when my phone is plugged into itunes this does not seem to be working.... Getting annoyed!!!

    I cant seem to get cd's that I have uploaded onto my iphone 5 via itunes. I have tried to highlight the items and drag and drop them into my phone but this isnt working...; This is really starting to frusterate me!!!
    Please help me

    If you have not already reverted the look and feel to be like iTunes 10 then
    View > Show Sidebar
    View > Show Statusbar
    click on the black arrow in the search box and untick Search Entire Library
    Now you should be able to drag and drop onto your phone or use the sync pages
    http://support.apple.com/kb/PH12113
    If your still having issues with your phone then Try this trouble shooting link
    http://support.apple.com/kb/TS1591

  • Drag and drop photo files into photo lab website for uploading photos, worked in old version but not in new version.

    drag and drop ability not available in new version. I am trying to upload a large number of photo file to an online photo site for processing and the drag and drop does not work it did on the old version.

    Nothing to be fixed. Just a little learning for you.
    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • Start Workflow when Upload File using drag and drop

    Hi,
    I am working with SharePoint 2013.
    I have a workflow needed to be started and run only once after a document is uploaded into the document library. The document library has
    required custom columns with default values. If I set workflow starting option as 'On Created', when user got redirected to the edit form and click 'Save', there would be error as
    "The <filename> has been modified by <user> on <datetime>". Besides the unwanted error dialog, the metadata entered by users are not reflected. I understand the issue is because the workflow had already started before
    the edit form showed and it modified the file.
    So I changed the starting option to 'On Changed", created an additional column to record if the workflow has been run or not to avoid running the whole workflow more than once. This works fine for normal upload. However on drag and drop, the
    event 'On Changed' is not triggered and the workflow is not started. I checked the version of the file but in both normal upload and drag and drop, there is another version after the first version. But
    only the version of normal upload triggers the workflow.
    I read an article about some Mode = Upload on the edit form.
    https://go4answers.webhost4life.com/Example/workflow-triggered-during-upload-user-149297.aspx
    It seems that the Mode = Upload is not there anymore for normal upload, but it's still there for drag and drop. Not sure about this
    Is there a solution for my case. Basically I want to start the workflow only once when the document is uploaded normally or via drag and drop. For normal upload, user can
    edit the custom metadata right after they browse the file. For drag and drop, the
    metadata will be set as default values.
    Thank you.

    I'm still researching your issue, but as an interesting note... This is an issue only when I use a 2013 style workflow. I do not get the error when using a 2010 style workflow.
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • Drag and drop not working when uploading file using safari

    why i cannot drag and drop any file when using safari , and what happens the file auotmatically open while i need to upload it only , extra for that , i cannot write  any remark or fill a space while using website related to my work.
    my work is to upload drawing files using dwf file to a website so the other parties can review and give me review , and then i reply to the remark at the same place and make meeting through the same site.
    please any body can give any way to correct my mac.
    latelly i installed win7 only to use it for that website , and iam now changing from mac to win whenever i want to work , this not acceptable to me because it is waste of time beside i like the mac and it working with other application but not for safari.

    why ?
    I'm sorry, but every OS is different.  You cannot expect all features of one to be in another.  Or alternatively, for similar features, be done it the exact same way. 
    It looks to me after a quick google search that winexplorer is basically the moral equivalent of the mac's finder to present the file system in different ways.  The OSX Finder also has alternative views of the file system, i.e., icons, list, columns.  Experiment with the list and column views and see if one of them are more to your liking.
    As for winexplorer on the mac.  I don't know if this simulates it or not but there is a program called Macintosh Explorer so check that out as well.
    And finally, in the end, as I said in my earlier post, no matter what, nothing on the mac is going to change what I believe you think you can do and drop a file on a browser window and expect it to upload.

  • Drag and Drop for File Uploads

    Hey,
    Is it possible to do this in Flex? Drag and Drop files into a flex app - to upload them later (say on a button click). I did some searching and found that it is possible to do this in AIR - drag files from the file system and drop it in the app. But our app is web based and will be running in a browser.
    Thanks

    I have suffered from this during the past three days.
    Firefox 23.0, Mozilla Firefox for Ubuntu canonical - 1.0
    on a 32-bit Ubuntu PC. So the system couldn't be more different.
    I was trying to upload .MP3 files of 27MB. From about a dozen attempts with one file, no success whatever. On the other hand a different file worked first time. But a later attempt with a 14 MB .wav failed, so it's not related to the file.
    On the other hand an upload with Chrome worked perfectly. So it does look like a browser problem.
    Watching the system monitor during upload, it runs freely for about 9MB, then stops abruptly. At the same time, the message at the bottom left of the browser window, relating to dl-web.dropbox, disappears.
    The text of the message differed between Firefox & Chrome, but I imagine that's just a textual, rather than a functional, difference.

  • Drag and Drop files to upload snag

    I am developing a Director projector application that uploads
    a users local files to a server via an FTP Xtra. I would like to
    have an icon on the desktop that the user can drag-and-drop files
    onto and the application automatically uploads the files. I have
    created a folder on the desktop and an application that poll it for
    content to initiate the upload but the problem with this is that
    the user, by dragging files to the folder, will unknowingly move
    the files to "upload folder" and they will be removed from their
    original locations. This is obviously not what anyone desires. I
    would like to have the drag-and-drop trigger the upload from the
    file's current location.
    One solution that I have implemented is using the "Drag &
    Drop Xtra", from Meliora Software, and created a MIAW that looks
    like a desktop folder icon. The problem with this is that the icon
    is present only when the application is running and I can not keep
    it pinned down to the desktop. When it is clicked-on it will come
    to the front, like any other application. Is there a way to keep a
    MIAW pinned down?
    Another POSSIBLE approach would be to place a shortcut to the
    application on the desktop and when a file is dropped on it,
    capture the file path and pass that along to the Director
    application on startup. Is this possible? Is there an Xtra to do
    this or does Director have this capability built in?
    Ideally, we would like to have a folder on the desktop that
    only allows copy-and-paste functionality to itself but that would
    be an OS issue and out of the control of Director. Have any of you
    created such an app? Any ideas are welcomed.
    Thanks in advance.

    > Another POSSIBLE approach would be to place a shortcut
    to
    > the application on the desktop and when a file is
    dropped on it,
    > capture the file path and pass that along to the
    Director
    > application on startup. Is this possible? Is there an
    Xtra to do
    > this or does Director have this capability built in?
    this approach won't work because every time a file is dropped
    on the icon a new instance of the projector will run.
    To achieve that you need:
    1) A Director version prior to MX 2004, Director MX would be
    fine.
    2) Remove the projector's button from the task bar when it
    starts with our Window Xtra:
    wndRemoveFromTaskbar(true)
    3) Move the projector's window to the background with our
    Window Xtra:
    WndSetDepth(wndGetMain(),"back")
    4) Apply a 1-bit alpha mask to change the projector's shape
    to make it looking like an icon, again, with our Window Xtra:
    wndTransInit(member "1BitMask",false,false)
    5) Leave all the Drag&Drop Xtra code for drop as is.
    That's it, it seems MIAW isn't required.

  • I download firefox 5.0 and now I'm having trouble dragging and dropping PDF files into Google Docs and I can't view the PDF once uploaded. I had no problems with this in the previous verion of Firefox

    With firefox 5.0 I can't drag and drop pdf files in the google docs screen. When I do eventually get a pdf file uploaded I can't view it. I get "no preview available". In my previous verion of firefox (4.something) I had no problems with this and I was able to drag and drop and after uploaded I could view the entire file.

    Thanks one again. I know you helped me the last to. I do have the Deja Vu font set in my folder. I downloaded and the last time. So I don't know if there is supposed to be more or not, but those were installed with Windows-XP after my reformat.
    This is really driving me nuts. as I've done several re-formats on my computer and several friends computers and even upgraded hardware so I am not necessarily a software or programming expert, I am somewhat advanced when it comes to computers in general and can usually diagnose the problem but these font's are the problem and they never were before.
    I did see in another forum that if you had a Dell Computer and did the Microsoft update for the onboard video card driver that it could be the culprit, but I have that disabled being I have a much better graphics card so the updates from Microsoft for the onboard video weren't installed.
    It' a Dell Dimension 3000 with an Intel(R) 82865G Graphics Controller so I don't believe it is the culprit being it is disabled. The actual video card that I am using is a PCI Nvidia GeForce 9400 GT with 1 GB Memory. And I didn't have any problem before.
    I appreciate the help. But still can't get things to work. Live Help Chat doesn't open for another two hours so maybe they can do "Remote Access" or something and can check setting and help me. But if you come up with other suggestions, they would be greatly appreciated.
    Thanks again.
    Susan

  • How do I upload or drag and drop folders into my website folder content?

    Am I limited to uploading or dragging and dropping only files? I have folder content I want to place in these folders in mmy Creative Cloud Accounts websites?

    Thank you Manish-Sharma for offering help. I have way too many individual files to upload singly. It would only be opportune to upload the individual folders. Until Adobe creates such to upload folders, there is no reason to upload any content so I will not be able to benefit from displaying any content. I just do not have the time to upload by this means. So, it is a feature that makes no worthwhile availability in Adobe Creative Cloud to me. This really needs attention by Adobe otherwise it is a major point to not continue using Adobe Creative Cloud. It makes no sense to lack the ability.  John

Maybe you are looking for