File for images of the Asset Picker

Hello

Here's the current code

        FilePicker {
            id:filePicker
            type : FileType.Picture
            title : "Select Wallpaper"
            directories : ["app/native/assets/images/"]
            onFileSelected : {
                console.log("FileSelected signal received : " + selectedFiles);

                //make sure to prepend "file://" when using as a source for an ImageView or MediaPlayer

            }
            defaultType: FileType.Picture
            sourceRestriction: FilePickerSourceRestriction.LocalOnly
            viewMode: FilePickerViewMode.GridView
        }

The problem is with the directories.

I get the error "Cannot find source.

Anyone got any ideas how I could take the images stored under assets/images /?

FilePicker works like a card, which means that it is indeed another application. I don't think that he can access your data area of the app sandbox.

Tags: BlackBerry Developers

Similar Questions

  • Smart collection for images of the error

    Is it possible to create a smart collection for images with the message "lightroom has met problems reading of this photo?

    Laughing out loud

    If you get this message, the images have been corrupted somehow, and you will not be able to make use of these images. You might as well remove them from Lightroom.

  • Where can I see a copy of the standard for images of the reserve license?

    I can't find a copy of the standard for images of the reserve license.  Where can I see a real license?

    Hello

    Legal terms of use | Adobe

    Additional terms for Stock images can be found here.

    Thank you

    Bev

  • Why "save under" create a folder separated for images when the page is saved.

    for example, when you save the ezpass document he used to save the page. now, it saves the page more creates a folder that contains images. I can't delete the folder without leaving the page. My mistake, it would be using Firefox.

    now in support of Firefox.

    But to answer your question, HTML is a markup language that displays images files etc. Unlike a document of treatment of all the elements of the document included in a single file. HTML stores the items of the page as individual items. If a folder is created to hold these items such as images, files audio video flash etc..

    Microsoft encouraged a MHTML file format they have invented and placed in Internet explorer, which is a single file of storage, but it is really only supported in Internet Explorer.

    It seem not to be modules on the site of the add-on to enable MHTML in firefox such as

    https://addons.Mozilla.org/firefox/addon/Mozilla-archive-format/?src=search

    https://addons.Mozilla.org/firefox/addon/UnMHT/?src=search

    If you have had this feature before, perhaps you have already installed an add-on?

  • Problem with copy paste function (for images) using the TinyMCE editor

    Can not copy paste images (a document - text Copies OK) to the tinyMCE editor in Windows 8. Seems to be the specific question of operating system.

    Use the tinyMCE editor for info on the download Web site. Copy-paste function works very well on a Windows7 machine

    Hi Anand,

    I would be grateful if you can help me with the following information related to the TinyMCE editor:

    1. What is the Web browser that you use to copy and paste images via the application editor TinyMCE?
    2. What exactly happens when you try to copy and paste images using the editor? You receive an error message?

    This problem may occur because of the compatibility of the browser with the TinyMCE editor.

    Check out these links and check if the suggestions help you to solve the problem:

    http://www.TinyMCE.com/forum/viewtopic.php?PID=34916

    http://www.TinyMCE.com/develop/bugtracker_view.php?id=6075

    If the problem is specific to the TinyMCE editor, you can also contact the support of TinyMCE:

    http://www.TinyMCE.com/enterprise/support.php

    Please let us know if you need more help on this issue. Otherwise, feel free to ask for more queries on Windows.

  • size of the file for video on the web

    Hello world

    I exported just a 10-minute video using the H.264 format and preset YouTube HD 720, but the size of the file ends up being about 611 MB.

    I lowered the bitrate, and then I got the file size down a little but not a lot. I was just wondering if this is what size usually is a 10 minute file or if I can reduce the size somehow, except using bitrate

    Would be very grateful for any advice.

    Thanks in advance

    I was just wondering if this is what size usually is a 10 minute file or if I can reduce the size somehow, except using bitrate

    You can also reduce the size of the image and/or reduce the pace.  The size of next standard frame down to 1280 x 720 is 960 x 540 and 640 x 360 after that.  In fact, fewer pixels produces a smaller file.  For all lower frame rates go, you could reduce it by half (so 29.97 FPS reduced to 15 fps and 24 fps to 12 frames per second); However, this affects the quality of movement, and the H264 is so effective that it is rare to reduce your frame rate, these days.

    Is too large because of your internet 611 MB upload?  Or do you need a smaller file to fit on 521MB USB Flash drives or some other limitations of storage?

    -Warren

  • Defining the new path for the data files for restoring using the VALUE of NEWNAME FOR DATABASE

    Version: 11.2.0.3 Linux

    Today, I had to do a restore RMAN to a new server and I came across the post following RTO on the VALUE of NEWNAME FOR DATABASE

    ALTER database open resetlogs upgraded;         error to throw

    So, I thought to use it to indicate the new location of the data files to restore.

    That's what I did
    ===================

    Restore the control file and catalog items to backup using the command of CATALOGUE START WITH. Then I started the restoration
    $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:40:41 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of set command at 07/26/2012 04:40:43
    RMAN-06970: NEWNAME '/fnup/hwrc/oradata/spikey' for database must include %f or %U format
    
    Recovery Manager complete.
    Don't know how it worked for Levi without %f or %U. So, I added %f
     $ vi restore.txt
     $ cat restore.txt
    run
     {
     SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
     restore database  ;
     }
    
    
     $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:45:45 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    
    Starting restore at 26-JUL-12
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=19 device type=DISK
    
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00001 to /fnup/hwrc/oradata/spikey/1
    channel ORA_DISK_1: restoring datafile 00002 to /fnup/hwrc/oradata/spikey/2
    channel ORA_DISK_1: restoring datafile 00003 to /fnup/hwrc/oradata/spikey/3
    channel ORA_DISK_1: restoring datafile 00004 to /fnup/hwrc/oradata/spikey/4
    channel ORA_DISK_1: restoring datafile 00005 to /fnup/hwrc/oradata/spikey/5
    channel ORA_DISK_1: restoring datafile 00006 to /fnup/hwrc/oradata/spikey/6
    channel ORA_DISK_1: restoring datafile 00007 to /fnup/hwrc/oradata/spikey/7
    channel ORA_DISK_1: restoring datafile 00008 to /fnup/hwrc/oradata/spikey/8
    channel ORA_DISK_1: restoring datafile 00009 to /fnup/hwrc/oradata/spikey/9
    channel ORA_DISK_1: reading from backup piece /u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: errors found reading piece handle=/u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: failover to piece handle=/u07/dump/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk tag=SPIKEY_FULL
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:56
    Finished restore at 26-JUL-12
    
    Recovery Manager complete.
    As you can see, RMAN restore data files to the desired location. But the data file names ended up as
    1
    2
    3
    .
    .      
    .
    9
    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -----------| Holy Cow |-----------------------------


    So I had to rename each file as below
    $ mv 1 /fnup/hwrc/oradata/spikey/system01.dbf
    $ mv 2 /fnup/hwrc/oradata/spikey/sysaux01.dbf
    $ mv 3 /fnup/hwrc/oradata/spikey/undotbs01.dbf
    I would have been better in execution of the order for each data below file
    SET NEWNAME FOR DATAFILE
    Now, I think, there is no advantage in using NEWNAME SET of DATABASE to. Only the disadvantages. I did anything wrong above?

    Martin;

    On the issue of the VALUE of NEWNAME FOR DATABASE, you must specify at least one of the first three of the following substitution variables to avoid collisions of names: %b f % U. see semantic entry for TO 'filename' for a description of the possible substitution variables.

    You use %f

    %b
    
    Specifies the filename without the fully qualified directory path. For example, the datafile name /oradata/prod/financial.dbf is transformed to financial.dbf. This variable enables you to preserve the names of the datafiles while you move them to different directory. During backup, it can be used for the creation of image copies. The variable cannot be used for OMF datafiles or backup sets.
    
    %f
    
    Specifies the absolute file number of the datafile for which the new name is generated. For example, if datafile 2 is duplicated, then %f generates the value 2.
    
    %U
    
    Specifies a system-generated unique filename. The name is in the following format: data-D-%d_id-%I_TS-%N_FNO-%f. The %d variable specifies the database name. For example, a possible name might be data-D-prod_id-22398754_TS-users_FNO-7.
    

    Source - E10643-01

    Backup and recovery reference

    http://docs.Oracle.com/CD/E14072_01/backup.112/e10643/rcmsynta2014.htm

    I see CKPT and I agree on that!

    Best regards

    mseberg

  • setting up multiple files for storage on the sidebar in mail

    How can I configure multiple files storage on the sidebar in mail

    Mail/Mailbox/new mailbox. Generally better to create the mailbox on my Mac when it is used for storage.

  • How can I set a default save file for scans using the Solution Center?

    Using Windows 7-64 bit.   All-in-one printer HP Photosmart C-309 Premuim has.

    Due to a crash of Windows, I had to install a new drive and reload Windows. I also rebooted other software like the HP Solution Center & drivers. My problem is that I can't find how to set a default folder for my scans.  This is NOT mentioned in the user manual, but it has been initially implemented by the HP Technical Support when the printer was new.  Can anyone relate how to set the default folders for my scans?

    Thank you.

    Tango

    When you go to the analysis, there should be a window that appears to select the format and the DPI of the analysis. There is also an option for the options of '/CSA/ '. Here you can change the default location to save on selecting another file of having sent them to analysis.

    I would like to know if this information helps, and have a great day!

  • How to change Windows Photo Gallery to be default for images of the camera?

    Can someone tell me please how to change windows photo gallery to be the default program for my camera. Also, if I delete pictures in the gallery it also removes that I put in a separate folder.

    Help.  Thank you

    Hello

    These could work and be sure to check with the manufacturer of the camera for other options.

    Use another program like the default binding for the types of files instead of the Windows Photo Gallery.

    That Picasa support associations or assign to it.

    Picasa - free
    http://Picasa.Google.com/

    Or

    Install Irfanview and do take care associations:

    IrfanView - free - download plugins too
    http://www.IrfanView.com/

    Or:

    How to set default Associations for a program under Vista
    http://www.Vistax64.com/tutorials/83196-default-programs-program-default-associations.html
    How to associate a file Type of Extension to a program under Vista
    http://www.Vistax64.com/tutorials/69758-default-programs.html

    If necessary:

    How Unassociate a Type of Extension file in Vista - and a utility to help
    http://www.Vistax64.com/tutorials/91920-unassociate-file-extention-type.html
    Restore the Type Associations by default Vista file extensions
    http://www.Vistax64.com/tutorials/233243-default-file-type-associations-restore.html
    How to view and change an Extension of filename on Vista
    http://www.Vistax64.com/tutorials/103171-file-name-extension.html

    I hope this helps.
    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

  • Need a configuration file for download in the library section.

    I bought a refurbished nine Windows 7 and I saw that under the library section, it doesn't have the file 'Downloads '. There is an icon for my downloads on my account but I don't know where to go from here.

    This is normal. You can always access the downloads folder in your user folder, or activate the download folder in the start menu (the taskbar properties > start menu > customize)

  • How to make a jad file and cod file to a single file for hosting on the web server

    Hello

    I want to make the jad file and cod file is a single file, which must be installed in the blackberry.

    When I load the jad without cod file file, it loads the app

    but when I load the jad file cod file, it loads the application on the blackberry device.

    I only want a single file to be uplaoded to the server for the installation of the application.

    Help, please

    I want it to install the web server to the BlackBerry smartphone.

    Thanks and greetings

    Anthony singh

    This is not possible, that both jad and cod is necessary to install an OTA application. the jad file contains a description of the application, the cod is the real application.

  • How to set the ALX file for compatibility of the storm

    Well, he can't ' be that lasts.  How to set a value in the ALX file so that my application when it is installed by the Manager of funds an ALX and COD file, behaves like a native storm app?

    Anyone?

    Thank you

    Gerry

    I asked this before but never got a response from RIM.

    I guess that they neglected to provide a way to do it.

    Strike 3 for compatibility mode.

  • Create PRN files for use with the software E-Tran. Unable to set the port to a local printer in Windows 7 with WordPerfect.

    As a reporter, I provide digital transcripts safely to my clients.  I have a Kodak printer and all drivers are up to date.  I use WordPerfect 12 for my transcripts.  E - Tran is the software used to process the transcripts.  It requires one. PRN file.  I save my document as a .wpd file.  I click, file, print, and I check the box print to file provided.   This creates the .prn format.

    I then download this file... or I tried all day to do it, in the software E-Tran.   It will NOT work.  The file is empty.  Nothing is there.  I tried to create a local no port in windows for printing of file installation... no good.  Error messages tell me: function page failed.  ???  Help!

    Hello

    I suggest you to convert wpd (WordPerfect) format .prn file before trying to download it.

    If the problem is not resolved, I suggest you to contact WordPerfect or the manufacturer of the software e-Tran for assistance.

    http://www.Corel.com/Corel/pages/index.jsp?PgId=800085

  • Can I move files from image of the inside of the RH

    First of all, I know that I did wrong. Now, I'm trying to clean up my mess in the method most effective possible time.

    I have inserted pictures to cut and paste.  The images have been saved at the root of the project and not in the pictures folder as I expected.  I tried to drop and drag inside the project manager, but the files did not move.

    Then, I moved the file in Explorer file (outside of the HR) and then put manually updated the link.  It works, but it is time intensive.  Is there an easier way?

    Shannon

    Hello

    You try to drag the image as shown below?

    See you soon... Rick

Maybe you are looking for

  • Camileo P100 goes off when it is plugged to the PC

    After my first videos with my brand new Camileo P100, I plugged the computer to the PC to transfer their. If the device it turns off and it can depend on. If it is off it continues offshore and new can not turn. Any ideas? Thanks in advance.

  • How to manually remove WordPerfect Suite 8 for XP

    link does not work

  • Impression of E3200

    I plugged my USB printer to the router today opportunity Cisco connect with desktop and laptop and I must say that this has been the easiest, I got it again. Worked like a charm. My question is, Am, I could print from smartphones (Android) to the pri

  • Error in the protection of water

    When I used my Sony Xperia Z2 under water

  • Vostro 420 maximum size of hard drive upgrade?

    What is the maximum size of hard drive upgrade that works with the Vostro 420? FYI: I am considering adding a Western Digital Caviar Black WD2002FAEX 2 to 7200 tr / MIN 64 MB Cache SATA 6.0 GB/s 3.5 "internal hard drive(The 6.0 GB/s should adjust dow