QML Board problem

Hi all, I have warts for use table in the ListView to store the State of the element, and set it in the ListItem.onInitializedChanged section.

ListView{
   var arr = new Array();
...

but the second line is marked in red (syntax error). How to use arrays in qml?

Hello

OK, I got your issue. I tried, but not able to change the value of the array element.

In fact I don't know the exact solution, but I have a temporary solution.

Hopefully useful for you

Try this

import bb.cascades 1.0

Page {

    content: Container {
        Button {
            text: "Get Checked Items"
            onClicked: {
                for (var a = 0; a < 5; a ++) {
                    console.log(listView.arr[a]);
                }
            }
        }

        ListView {
            id: listView
            property variant arr: new Array(5)

            dataModel: ArrayDataModel {
            }

            listItemComponents: [
                ListItemComponent {
                    type: "listItem"
                    CheckBox {
                        text: "Select"

                        onCheckedChanged: {
                            if (checked) {
                                var tempArray = new Array();
                                for (var i = 0; i < parent.arr.length; i ++) {
                                    tempArray[i] = parent.arr[i];
                                }

                                tempArray[ListItem.indexPath] = 1;
                                parent.arr = tempArray;
                            } else {
                                var tempArray = new Array();
                                for (var i = 0; i < parent.arr.length; i ++) {
                                    tempArray[i] = parent.arr[i];
                                }

                                tempArray[ListItem.indexPath] = 0;
                                parent.arr = tempArray;
                            }
                        }

                        onCreationCompleted: {
                            var tempArray = new Array();
                            for (var i = 0; i < parent.arr.length; i ++) {
                                tempArray[i] = parent.arr[i];
                            }

                            tempArray[ListItem.indexPath] = 0;
                            parent.arr = tempArray;
                        }
                    }
                }
            ]

            function itemType(data, indexPath) {
                return "listItem";
            }

            onCreationCompleted: {
                for (var a = 0; a < 5; a ++) {
                    dataModel.append({
                            "exampleProperty": a
                        })
                }
            }
        }
    }
}

Tags: BlackBerry Developers

Similar Questions

  • Failing video card? Or a logic board problem?

    Re: video card failure?

    It is a follow-up to a previous debate.  Less than 2 years ago, I had a default videocard from apple (OEM) with lines of scratches on the screen.  I replaced it with a

    ATI Radeon HD 4870 Graphics Upgrade Kit for Mac Pro Apple sold by: JAG technology it worked fine until I have let my old Mac 2008 for 9 months. When I turned it on to use for art, the startup has been slow and the screen became often black or never turned on at all. And the map seemed to be running really hot.    I pulled the card according to the suggestions and started and checked start with Hello time and on screen sharing my network and it seemed to have a time of normal start for this computer. But when doing screen sharing the screen remains black. So, I can see the contents of the hard drive, etc., but there is no display.

    I ran TechTool Pro and all components on the Mac pass inspection including the video ram.    I wonder if the problem is a graphics processor integrated on the system board itself or just the graphics card.    If the chip card display does not work, shouldn't be able to see a display from a distance even in the absence of a graphics card? Or not?   I don't want to pay $150 to replace a card if it is bad.

    Thank you for your help.

    The f

    There is no piece of the display on the map. For video, you need a working video card.

    Try reinstalling on both ends of the cables of two power between the card and power on the logic board UAX connectors.

    Check that the fan turns freely

  • Signature of QML app problem

    Hello

    Hi, I'm signing my application, but the blackberry-signer-check errors in declarations.

    I have read many topics on the forum, but I have not found a solution to my problem.

    This is my files:

    BlackBerry - tablet.xml:

    
    http://www.qnx.com/schemas/application/1.0">
    com.dwart.Study-Cards
    Study-Cards
    Study-Cards
    1.0.0
    Learn language faster
    dwart
    
      none
      false
      false
      landscape
    
    dwart.com
    run_native
    
    access_shared
    
    
    
    
    
    
    
    
        -platform
        blackberry
        dwart
        gYAAgHnFdvHsS830QUqF8qLsMTE
        run_native
    
        icon.png
        splashscreen.png
    
    

    StudyCards.pro:

    TARGET = StudyCards
    # Add more folders to ship with the application, here
    folder_01.source = qml/StudyCards
    folder_01.target = qml
    DEPLOYMENTFOLDERS = folder_01
    
    QMAKE_LFLAGS += '-Wl,-rpath,\'./app/native/lib\' '
    
    package.target = $${TARGET}.bar
    package.depends = $$TARGET
    package.commands = blackberry-nativepackager \
       -package $${TARGET}.bar -arg -platform -arg blackberry \
       -debugToken ./debugToken.bar \
       -arg -platformpluginpath -arg ./app/native/lib/platforms \
       -arg -pluginpath -arg ./app/native/lib/plugins \
       blackberry-tablet.xml $$TARGET \
       -e icon.png icon.png \
       -e splashscreen.png splashscreen.png \
    -e qml qml \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtCore.so.4 lib/libQtCore.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtGui.so.4 lib/libQtGui.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtOpenGL.so.4 lib/libQtOpenGL.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtNetwork.so.4 lib/libQtNetwork.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtDeclarative.so.4 lib/libQtDeclarative.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtSql.so.4 lib/libQtSql.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtSvg.so.4 lib/libQtSvg.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtScript.so.4 lib/libQtScript.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtXmlPatterns.so.4 lib/libQtXmlPatterns.so.4 \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/plugins/sqldrivers/libqsqlite.so lib/plugins/sqldrivers/libqsqlite.so \
       -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/plugins/platforms/libblackberry.so lib/platforms/libblackberry.so
    QMAKE_EXTRA_TARGETS += package
    
    SOURCES += main.cpp
    
    # Please do not modify the following two lines. Required for deployment.
    include(qmlapplicationviewer/qmlapplicationviewer.pri)
    qtcAddDeployment()
    
    OTHER_FILES += blackberry-tablet.xml
    

    I do *.bar file:

    /home/dwart/Desktop/qt-qnx/stage/nto/armle-v7/usr/lib/qt4/bin/qmake
    
    make
    
    make Study-Cards.bar
    

    Results:

    qcc -Vgcc_ntoarmv7le -lang-c++ -c -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I../qt-qnx/stage/nto/armle-v7/usr/lib/qt4/mkspecs/unsupported/blackberry-armv7le-qcc -I. -I../qt-qnx/stage/nto/usr/include/qt4/QtCore -I../qt-qnx/stage/nto/usr/include/qt4/QtGui -I../qt-qnx/stage/nto/usr/include/qt4/QtDeclarative -I../qt-qnx/stage/nto/usr/include/qt4 -Iqmlapplicationviewer -I. -I/opt/bbndk2/target/qnx6/usr/include -I/opt/bbndk2/target/qnx6/usr/include/freetype2 -o main.o main.cpp
    qcc -Vgcc_ntoarmv7le -lang-c++ -c -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I../qt-qnx/stage/nto/armle-v7/usr/lib/qt4/mkspecs/unsupported/blackberry-armv7le-qcc -I. -I../qt-qnx/stage/nto/usr/include/qt4/QtCore -I../qt-qnx/stage/nto/usr/include/qt4/QtGui -I../qt-qnx/stage/nto/usr/include/qt4/QtDeclarative -I../qt-qnx/stage/nto/usr/include/qt4 -Iqmlapplicationviewer -I. -I/opt/bbndk2/target/qnx6/usr/include -I/opt/bbndk2/target/qnx6/usr/include/freetype2 -o qmlapplicationviewer.o qmlapplicationviewer/qmlapplicationviewer.cpp
    /home/dwart/Desktop/qt-qnx/stage/nto/armle-v7/usr/lib/qt4/bin/moc -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I../qt-qnx/stage/nto/armle-v7/usr/lib/qt4/mkspecs/unsupported/blackberry-armv7le-qcc -I. -I../qt-qnx/stage/nto/usr/include/qt4/QtCore -I../qt-qnx/stage/nto/usr/include/qt4/QtGui -I../qt-qnx/stage/nto/usr/include/qt4/QtDeclarative -I../qt-qnx/stage/nto/usr/include/qt4 -Iqmlapplicationviewer -I. -I/opt/bbndk2/target/qnx6/usr/include -I/opt/bbndk2/target/qnx6/usr/include/freetype2 -D__QNXNTO__ qmlapplicationviewer/qmlapplicationviewer.h -o moc_qmlapplicationviewer.cpp
    qcc -Vgcc_ntoarmv7le -lang-c++ -c -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I../qt-qnx/stage/nto/armle-v7/usr/lib/qt4/mkspecs/unsupported/blackberry-armv7le-qcc -I. -I../qt-qnx/stage/nto/usr/include/qt4/QtCore -I../qt-qnx/stage/nto/usr/include/qt4/QtGui -I../qt-qnx/stage/nto/usr/include/qt4/QtDeclarative -I../qt-qnx/stage/nto/usr/include/qt4 -Iqmlapplicationviewer -I. -I/opt/bbndk2/target/qnx6/usr/include -I/opt/bbndk2/target/qnx6/usr/include/freetype2 -o moc_qmlapplicationviewer.o moc_qmlapplicationviewer.cpp
    qcc -Vgcc_ntoarmv7le -lang-c++ -Wl,-rpath-link,/opt/bbndk2/target/qnx6/armle-v7/lib -Wl,-rpath-link,/opt/bbndk2/target/qnx6/armle-v7/usr/lib -Wl,-rpath,'./app/native/lib' -Wl,-O1 -o Study-Cards main.o qmlapplicationviewer.o moc_qmlapplicationviewer.o    -L/opt/bbndk2/target/qnx6/armle-v7/lib -L/opt/bbndk2/target/qnx6/armle-v7/usr/lib -L/home/dwart/Desktop/qt-qnx/stage/nto/armle-v7/usr/lib/qt4/lib -lQtDeclarative -L/home/dwart/Desktop/qt-qnx/stage/nto/armle-v7/usr/lib/qt4/lib -L/opt/bbndk2/target/qnx6/armle-v7/lib -L/opt/bbndk2/target/qnx6/armle-v7/usr/lib -lQtScript -lQtSvg -lQtSql -lQtXmlPatterns -lQtNetwork -lsocket -lQtGui -lQtCore -lm 
    
    blackberry-nativepackager -package Study-Cards.bar -arg -platform -arg blackberry -debugToken ./debugToken.bar -arg -platformpluginpath -arg ./app/native/lib/platforms -arg -pluginpath -arg ./app/native/lib/plugins blackberry-tablet.xml Study-Cards -e icon.png icon.png -e splashscreen.png splashscreen.png -e qml qml -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtCore.so.4 lib/libQtCore.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtGui.so.4 lib/libQtGui.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtOpenGL.so.4 lib/libQtOpenGL.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtNetwork.so.4 lib/libQtNetwork.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtDeclarative.so.4 lib/libQtDeclarative.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtSql.so.4 lib/libQtSql.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtSvg.so.4 lib/libQtSvg.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtScript.so.4 lib/libQtScript.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/lib/libQtXmlPatterns.so.4 lib/libQtXmlPatterns.so.4 -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/plugins/sqldrivers/libqsqlite.so lib/plugins/sqldrivers/libqsqlite.so -e /home/dwart/.qt-x86-lib/Qt/stage/nto/armle-v7/usr/lib/qt4/plugins/platforms/libblackberry.so lib/platforms/libblackberry.so
    Info: Package created: Study-Cards.bar
    

    In the bar of the file look like this:

    /META-INF
        MANIFEST.MF
    /native
        /lib
            /platforms
                libblackberry.so
            /plugins
                /sqldrivers
                    libqsqlite.so
            libQtCore.so.4
            libQtDe....
            ....
        /qml
            /StudyCards
                card.png
                lisc.png
                main.qml
            /imports
                /Qt
                    ...
                /com
                    ...
        Study-Cards
        blackberry-tablet.xml
        icon.png
        splashscreen.png
    

    I try to sing:

    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -keystore /home/dwart/.rim/author.p12 -storepass myPass ./Study-Cards.bar author
    

    results:

    Info: Bar signed.
    

    It's added to my file for files META_INF bar: AUTHOR. THIS and the AUTHOR. SF

    next step:

    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -verbose -cskpass myCSKpass -keystore /home/dwart/.rim/author.p12 -storepass myStorePass ./Study-Cards.bar RDK
    

    results:

    Developer Certificate TBS =
    30 81 b7 a0 03 02 01 02 02 04 4f 38 2f a6 30 0c
    06 08 2a 86 48 ce 3d 04 03 04 05 00 30 10 31 0e
    30 0c 06 03 55 04 03 13 05 64 77 61 72 74 30 1e
    17 0d 31 32 30 32 31 32 32 31 33 31 31 38 5a 17
    0d 33 32 30 32 30 37 32 31 33 31 31 38 5a 30 10
    31 0e 30 0c 06 03 55 04 03 13 05 64 77 61 72 74
    30 58 30 10 06 07 2a 86 48 ce 3d 02 01 06 05 2b
    81 04 00 23 03 44 00 03 00 6d 4d b3 f4 07 75 ba
    da 3d 5b b4 7c a8 4f 7d 90 01 0f 26 3d e9 e5 54
    07 40 64 b4 0b 11 70 f9 35 ca 5b 1e 9f 68 27 c9
    92 ab d3 a6 ec 4c 2e 20 40 d2 18 88 04 73 82 3d
    c4 84 b8 bb b2 66 e9 ab 37 dd
    Developer Certificate TBS Digest =
    0c 92 56 7d 1f 7d 88 a2 98 7e ea 60 01 e5 93 7d
    22 09 96 7c 68 c4 e8 be 2a d4 38 ee f2 84 06 3c
    a9 00 78 f6 63 6d b7 4c 3e 76 88 a6 ba 79 a6 12
    f0 8a fd 38 50 d9 4d b9 be 2e 6f d0 38 78 64 75
    Developer Certificate TBS Encoded Digest =
    44 4a 4a 57 66 52 39 39 69 4b 4b 59 66 75 70 67
    41 65 57 54 66 53 49 4a 6c 6e 78 6f 78 4f 69 2d
    4b 74 51 34 37 76 4b 45 42 6a 79 70 41 48 6a 32
    59 32 32 33 54 44 35 32 69 4b 61 36 65 61 59 53
    38 49 72 39 4f 46 44 5a 54 62 6d 2d 4c 6d 5f 51
    4f 48 68 6b 64 51
    Requesting signature from server...
    Reading CSK file...
    Properties of CSK file := [
    Version = 2
    Encoded Salt =
    2f 6d 35 46 4e 49 4f 58 55 53 45 3d
    Encoded and Encrypted PrivateKey =
    4f 46 53 49 5a 75 4a 51 73 70 62 6c 62 37 71 5a
    63 4b 78 37 61 48 39 5a 4e 65 45 6f 73 79 61 7a
    33 4c 63 39 4f 58 72 73 35 6b 5a 76 54 67 62 62
    59 33 4b 41 4b 48 74 36 38 73 70 38 70 2f 4d 2b
    70 45 5a 56 75 59 5a 53 6f 6a 76 42 38 49 70 59
    4e 43 6f 6a 6b 64 49 2f
    Salt =
    fe 6e 45 34 83 97 51 21
    Digest =
    3c 1e 47 62 fc ce 0b 13 35 25 70 56 ac d1 1a eb
    77 0e 9a 21 7e 8a 11 52 06 64 d2 79 da 4e 09 88
    97 96 c1 01 ec 53 f2 7a 6a 3e 75 70 6a f3 1f 51
    e2 28 1a 1a e8 c7 85 f7 d7 7a 98 05 b7 f6 bf 75
    Signature =
    30 81 88 02 42 01 06 b1 0c e3 2d fd f3 01 f7 5f
    14 a6 ef b4 4b a0 5c 2b a6 b3 ef aa 1d 25 ed 46
    62 8b 06 fe 35 eb 10 80 e8 b9 0a 8e a0 7b 6a ef
    c9 28 c9 53 85 89 66 26 1e 7f d8 67 0f ef e4 58
    86 6b ca 4e b8 57 6a 02 42 01 27 e4 29 2a 9f ee
    2b ad 59 48 77 ff 39 87 98 5a 9c ae 2d ac 72 93
    d1 33 fc 7f 4e 6a 87 ab 88 46 af 59 22 65 c6 6f
    81 f8 ef 3c da 79 c4 74 36 c1 35 c1 b0 21 d5 1d
    e3 1b 3e 72 24 47 bf c1 1a 19 fc
    Flat Signature =
    01 06 b1 0c e3 2d fd f3 01 f7 5f 14 a6 ef b4 4b
    a0 5c 2b a6 b3 ef aa 1d 25 ed 46 62 8b 06 fe 35
    eb 10 80 e8 b9 0a 8e a0 7b 6a ef c9 28 c9 53 85
    89 66 26 1e 7f d8 67 0f ef e4 58 86 6b ca 4e b8
    57 6a 01 27 e4 29 2a 9f ee 2b ad 59 48 77 ff 39
    87 98 5a 9c ae 2d ac 72 93 d1 33 fc 7f 4e 6a 87
    ab 88 46 af 59 22 65 c6 6f 81 f8 ef 3c da 79 c4
    74 36 c1 35 c1 b0 21 d5 1d e3 1b 3e 72 24 47 bf
    c1 1a 19 fc
    Properties of request := [
    Version = 1
    Command = Signature Request
    SignerID = RDK
    ClientID = 3903770746
    MF =
    51 58 4a 6a 61 47 6c 32 5a 53 31 4e 59 57 35 70
    5a 6d 56 7a 64 43 31 57 5a 58 4a 7a 61 57 39 75
    4f 69 41 78 4c 6a 45 4e 43 6b 46 79 59 32 68 70
    64 6d 55 74 51 33 4a 6c 59 58 52 6c 5a 43 31 43
    65 54 6f 67 51 6d 78 68 59 32 74 43 5a 58 4a 79
    65 53 42 55 59 57 4a 73 5a 58 51 67 54 31 4d 67
    52 57 78 6d 49 45 4a 42 55 69 42 51 59 57 4e 72
    ..........
    4f 52 66 38 75 2f 59 48 69 54 32 38 30 42 54 4d
    76 72 2b 30 50 30 70 61 56 49 54 4b 6d 6a 51 35
    49 6a 41 67 34 32 43 48 33 4d 59 56 44 73 30 7a
    4e 66 47 66 57 75 52 72 4a 70 31 6b 54 43 55 3d
    Connecting to URL http://www.rim.net/Websigner/servlet/RDK-Waterloo
    Sending properties to server...
    Properties of response := [
    Version = 1
    Response = Signature Response
    Confirm = Signing server ID RDK signed code file from client ID 3903770746.
    Error = null
    ]
    Encoded Package-Author-Id =
    67 59 41 41 67 48 6e 46 64 76 48 73 53 38 33 30
    51 55 71 46 38 71 4c 73 4d 54 45
    Encoded Package-Id =
    67 59 41 42 67 47 4a 65 7a 68 55 79 4a 6d 6a 47
    5f 37 76 57 34 48 4a 71 57 32 6b
    Encoded Package-Version-Id =
    67 59 41 43 67 46 6c 63 4b 6e 4e 64 65 46 79 4d
    6a 66 56 31 50 78 4c 32 6e 6e 73
    Encoded Application-Id =
    67 59 41 44 67 43 34 6f 48 63 59 47 78 77 32 6d
    41 50 32 68 4f 75 63 67 46 76 49
    Encoded Application-Version-Id =
    67 59 41 45 67 44 46 55 35 62 57 6a 37 71 5f 49
    67 6f 65 37 55 4e 57 41 35 51 45
    Encoded Signature =
    41 65 4a 71 6c 55 56 68 67 68 46 7a 49 34 46 51
    69 33 73 35 35 59 30 43 38 62 30 43 4e 43 31 38
    39 2f 70 69 49 41 44 34 4a 4d 6c 62 49 46 39 50
    53 4b 32 66 33 79 41 58 6c 5a 75 46 4b 79 58 42
    2f 50 72 39 6b 37 63 49 61 56 45 34 4d 69 42 52
    31 61 55 49 32 33 57 39 41 55 39 72 38 30 6f 47
    56 34 48 6b 55 61 54 76 6e 74 4a 36 67 42 31 33
    72 79 69 55 41 78 67 45 62 6e 35 62 62 71 48 4b
    74 76 34 59 64 58 6a 71 4f 78 55 5a 37 2b 43 33
    48 2b 45 4c 75 62 48 63 49 6b 2b 79 36 45 52 33
    62 69 55 37 35 54 52 68 37 47 72 62 44 6c 65 4a
    Decoded Signature =
    01 e2 6a 95 45 61 82 11 73 23 81 50 8b 7b 39 e5
    8d 02 f1 bd 02 34 2d 7c f7 fa 62 20 00 f8 24 c9
    5b 20 5f 4f 48 ad 9f df 20 17 95 9b 85 2b 25 c1
    fc fa fd 93 b7 08 69 51 38 32 20 51 d5 a5 08 db
    75 bd 01 4f 6b f3 4a 06 57 81 e4 51 a4 ef 9e d2
    7a 80 1d 77 af 28 94 03 18 04 6e 7e 5b 6e a1 ca
    b6 fe 18 75 78 ea 3b 15 19 ef e0 b7 1f e1 0b b9
    b1 dc 22 4f b2 e8 44 77 6e 25 3b e5 34 61 ec 6a
    db 0e 57 89
    ASN.1 Signature =
    30 81 88 02 42 01 e2 6a 95 45 61 82 11 73 23 81
    50 8b 7b 39 e5 8d 02 f1 bd 02 34 2d 7c f7 fa 62
    20 00 f8 24 c9 5b 20 5f 4f 48 ad 9f df 20 17 95
    9b 85 2b 25 c1 fc fa fd 93 b7 08 69 51 38 32 20
    51 d5 a5 08 db 75 bd 02 42 01 4f 6b f3 4a 06 57
    81 e4 51 a4 ef 9e d2 7a 80 1d 77 af 28 94 03 18
    04 6e 7e 5b 6e a1 ca b6 fe 18 75 78 ea 3b 15 19
    ef e0 b7 1f e1 0b b9 b1 dc 22 4f b2 e8 44 77 6e
    25 3b e5 34 61 ec 6a db 0e 57 89
     Updating: META-INF/MANIFEST.MF
       Adding: META-INF/RDK.SF
       Adding: META-INF/RDK.EC
      Signing: native/Study-Cards
      Signing: native/icon.png
      Signing: native/splashscreen.png
      Signing: native/qml/imports/Qt/labs/components.1.1/CheckableGroup.qml
      Signing: native/qml/imports/Qt/labs/components.1.1/Checkable.qml
      Signing: native/qml/imports/Qt/labs/components.1.1/CheckableGroup.js
      Signing: native/qml/imports/Qt/labs/components.1.1/qmldir
      Signing: native/qml/imports/Qt/labs/components.1.1/libqtcomponentsplugin_1_1.so
      Signing: native/qml/imports/Qt/labs/components/native/Dialog.qml
      Signing: native/qml/imports/Qt/labs/components/native/ToolButton.qml
      Signing: native/qml/imports/Qt/labs/components/native/MenuItem.qml
      Signing: native/qml/imports/Qt/labs/components/native/Label.qml
      Signing: native/qml/imports/Qt/labs/components/native/SectionScroller.qml
      Signing: native/qml/imports/Qt/labs/components/native/BusyIndicator.qml
      Signing: native/qml/imports/Qt/labs/components/native/ButtonRow.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextSelectionHandle.qml
      Signing: native/qml/imports/Qt/labs/components/native/QueryDialog.qml
      Signing: native/qml/imports/Qt/labs/components/native/Page.qml
      Signing: native/qml/imports/Qt/labs/components/native/ContextMenu.qml
      Signing: native/qml/imports/Qt/labs/components/native/PageStackWindow.qml
      Signing: native/qml/imports/Qt/labs/components/native/StatusBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/ListItemText.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/RadioButton.qml
      Signing: native/qml/imports/Qt/labs/components/native/Switch.qml
      Signing: native/qml/imports/Qt/labs/components/native/ApplicationWindow.qml
      Signing: native/qml/imports/Qt/labs/components/native/RectUtils.js
      Signing: native/qml/imports/Qt/labs/components/native/ScrollBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/SelectionListItem.qml
      Signing: native/qml/imports/Qt/labs/components/native/libsymbianplugin_1_1.so
      Signing: native/qml/imports/Qt/labs/components/native/PageStack.qml
      Signing: native/qml/imports/Qt/labs/components/native/MenuLayout.qml
      Signing: native/qml/imports/Qt/labs/components/native/ToolBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/Popup.qml
      Signing: native/qml/imports/Qt/labs/components/native/Button.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextField.qml
      Signing: native/qml/imports/Qt/labs/components/native/MenuContent.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextArea.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabGroup.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabButton.qml
      Signing: native/qml/imports/Qt/labs/components/native/ButtonGroup.js
      Signing: native/qml/imports/Qt/labs/components/native/ProgressBar.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextTouchController.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextMagnifier.qml
      Signing: native/qml/imports/Qt/labs/components/native/Slider.qml
      Signing: native/qml/imports/Qt/labs/components/native/PageStack.js
      Signing: native/qml/imports/Qt/labs/components/native/Window.qml
      Signing: native/qml/imports/Qt/labs/components/native/SelectionDialog.qml
      Signing: native/qml/imports/Qt/labs/components/native/Fader.qml
      Signing: native/qml/imports/Qt/labs/components/native/ToolBarLayout.qml
      Signing: native/qml/imports/Qt/labs/components/native/AppManager.js
      Signing: native/qml/imports/Qt/labs/components/native/qmldir
      Signing: native/qml/imports/Qt/labs/components/native/ButtonColumn.qml
      Signing: native/qml/imports/Qt/labs/components/native/CommonDialog.qml
      Signing: native/qml/imports/Qt/labs/components/native/ToolTip.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabBarLayout.qml
      Signing: native/qml/imports/Qt/labs/components/native/CheckBox.qml
      Signing: native/qml/imports/Qt/labs/components/native/ListItem.qml
      Signing: native/qml/imports/Qt/labs/components/native/SectionScroller.js
      Signing: native/qml/imports/Qt/labs/components/native/ScrollDecorator.qml
      Signing: native/qml/imports/Qt/labs/components/native/Menu.qml
      Signing: native/qml/imports/Qt/labs/components/native/TextContextMenu.qml
      Signing: native/qml/imports/Qt/labs/components/native/TabGroup.js
      Signing: native/qml/imports/Qt/labs/components/native/ListHeading.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/libsymbianextrasplugin_1_1.so
      Signing: native/qml/imports/com/nokia/extras.1.1/TimePickerDialog.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/TumblerDialog.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/DatePickerDialog.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/RatingIndicator.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/TumblerColumn.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/TumblerIndexHelper.js
      Signing: native/qml/imports/com/nokia/extras.1.1/qmldir
      Signing: native/qml/imports/com/nokia/extras.1.1/SearchBox.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/Constants.js
      Signing: native/qml/imports/com/nokia/extras.1.1/Tumbler.js
      Signing: native/qml/imports/com/nokia/extras.1.1/InfoBanner.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/Tumbler.qml
      Signing: native/qml/imports/com/nokia/extras.1.1/TumblerTemplate.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Dialog.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ToolButton.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/MenuItem.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Label.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/SectionScroller.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/BusyIndicator.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ButtonRow.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextSelectionHandle.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/QueryDialog.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Page.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ContextMenu.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/PageStackWindow.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/StatusBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ListItemText.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/RadioButton.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Switch.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ApplicationWindow.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/RectUtils.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/ScrollBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/SelectionListItem.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/libsymbianplugin_1_1.so
      Signing: native/qml/imports/com/nokia/symbian.1.1/PageStack.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/MenuLayout.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ToolBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Popup.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Button.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextField.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/MenuContent.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextArea.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabGroup.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabButton.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ButtonGroup.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/ProgressBar.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextTouchController.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextMagnifier.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Slider.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/PageStack.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/Window.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/SelectionDialog.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Fader.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ToolBarLayout.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/AppManager.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/qmldir
      Signing: native/qml/imports/com/nokia/symbian.1.1/ButtonColumn.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/CommonDialog.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ToolTip.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabBarLayout.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/CheckBox.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/ListItem.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/SectionScroller.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/ScrollDecorator.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/Menu.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TextContextMenu.qml
      Signing: native/qml/imports/com/nokia/symbian.1.1/TabGroup.js
      Signing: native/qml/imports/com/nokia/symbian.1.1/ListHeading.qml
      Signing: native/qml/StudyCards/card.png
      Signing: native/qml/StudyCards/main.qml
      Signing: native/qml/StudyCards/lisc.png
      Signing: native/lib/libQtCore.so.4
      Signing: native/lib/libQtGui.so.4
      Signing: native/lib/libQtOpenGL.so.4
      Signing: native/lib/libQtNetwork.so.4
      Signing: native/lib/libQtDeclarative.so.4
      Signing: native/lib/libQtSql.so.4
      Signing: native/lib/libQtSvg.so.4
      Signing: native/lib/libQtScript.so.4
      Signing: native/lib/libQtXmlPatterns.so.4
      Signing: native/lib/plugins/sqldrivers/libqsqlite.so
      Signing: native/lib/platforms/libblackberry.so
      Signing: native/blackberry-tablet.xml
    Info: Bar signed.
    

    I think that everything is OK, but:

    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -verbose -verify Study-Cards.bar
    

    results:

    Error: Invalid signature file digest for Manifest main attributes
    

    Someone knows how to solve?

    PS Sorry for the long post and my English

    OK, I change the order of:

    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -verbose -cskpass myCSKpass -keystore /home/dwart/.rim/author.p12 -storepass myStorePass ./Study-Cards.bar RDK
    
    /opt/bbndk2/host/linux/x86/usr/bin/blackberry-signer -keystore /home/dwart/.rim/author.p12 -storepass myPass ./Study-Cards.bar author
    

    Now it's work

    Info: Bar verified.
    

    Thank you much for the help

  • QML Audio problem

    This is QtMultimedia audio qml. Do you have someone at - it using problem audio qml. When I want to jump to the next song as the code example below using audio qml, after playing on dozens of song perfectly all of a sudden she stops just. The code below works on symbian but in BlackBerry stop to jump to the next song after playing on a dozen of song(random sometimes) signals onStopped Manager seems to just stop working. Is there a bug problem audio qml with BlackBerry. The internet search got no results.

    I use console.log to the event log when the song ended and the song started and every time the song skip to the next song, both log console, but when the question produce two stop the event record, which is also when the decision to jump to the next song. OnError has not also record any error on console so not even sure what is happening.

    Audio {
             id: audio
    
             //LOGGING ANY POSSIBLE ERROR
             OnError: {
             Console.log("Error: ", error)
             Console.log(errorstring)
    
             // LOGGING BOTH ENDOFMEDIA AND NEXTSONG WITH CONSOLE.LOG
             OnStopped: {
                 Console.log("endofmedia")
                 if (status == Audio.EndOfMedia) {
                 Console.log("startplay")
                 nextsong()
                 }
             }
         }
    

    The problem is resolved. It's because of the components old symbian. Although I know not even how a symbian component can affect component Qt Quick but recompile component symbian has solved the problem. Here is the link to the cases where any interested person

  • QML layout problem

    I consider myself fairly competent with QML, but cannot get this to work.

    I would a ScrollView at the top of the screen and a multiline inside label, the tricky bit is to operate on the Z10 Q10 formats and in a single file.

    ***********************

    *                            *

    *                            *

    * ScrollView *.

    *                            *

    *                            *

    *                            *

    ***********************

    * Multi-line *.

    *           Text          *

    ***********************

    Dock and absolutely do not work because they hide the text or superimposed according to the order, which leaves StackLayout.

    The problem with this is that using the infinite on the ScrollView turns the multi-line into single line, using average absolute values the text is not down on the Z10.

    Any ideas?

    OK, I think I see not the interest. And if you put the scrollview in another container, then the spaceQuota is calculated:

    // Segmented control navigation project template
    import bb.cascades 1.0
    import com.rim.example.custom 1.0
    
    Page {
        content: Container {
    
            layout: StackLayout {
                orientation: LayoutOrientation.TopToBottom
            }
            Container {
                ScrollView {
                    Container {
                        Label {
                            text: "texte"
                        }
                        Label {
                            text: "texte"
                        }
                        Label {
                            text: "texte"
                        }
                    }
                }
                layoutProperties: StackLayoutProperties {
                    spaceQuota: 1
                }
            }
            Label {
                text: "texte vdsgkso pkbop kbr kbrk oerkb)eobk kebo)kr )bkerbk)oerk b)ekorkbitojkqnjkbnbn ibni nqrjibn inqrb oqrjib pqbj"
                multiline: true
                layoutProperties: StackLayoutProperties {
                    spaceQuota: -1
                }
            }
        }
    }
    
  • Watch an interactive pdf - page break at the touch on the screen - SMART board problem?

    Is there a way to disable the page advance when you touch the screen in the visualization of interactive PDF files?

    Adobe Acrobat Pro X c. 10.1.3

    Reading and full screen, I have the url and the navigation links that work very well.

    But when I 'touch' the screen out of one of these live areas with my cursor, the page goes to the next.

    I could avoid this but I'm worried about my customers who will use it on a SMART board.

    I foresee it as a problem when displaying on a SMART board (I don't have access to one) where the teacher is pointing to something on the page, and he lurched suddenly to another, or when you use the SMART display writing tool, it can jump.

    Anyone?

    Thanks for your thoughts.

    Nothing you can do in the PDF itself, but on the dialog box Preferences for Acrobat/Reader, full-screen you need to disable «left click to go forward one page...» "option.

  • Virus or the logic board problem?

    Everyone has this screen before? Another screen that appears is a bunch of letters and numbers. Now my computer won't even turn on half the time. Sometimes just the fan will start the liquidation. Before what is going on started my computer would freeze and then turns off randomly. I called apple and I also took at the Genius Bar. They think maybe it's logic board. The Lady said that my best money wise option would be that she be sent for $280, more repairs before as I do that I wanted to see if anyone had any advice. At this point, I wonder if I should just get a new computer. I don't use the computer a lot to the point where this should be the case. Would it maybe a virus?

    No, it is not caused by malicious software.

    You must replace the system board, if you want to keep the Mac.

    Best.

  • T400 - 6474CTO - key board problem

    All of a sudden this problem occurred: n, b, space, arrow to the top right left suddenly stopped working. Working now and then, for the most part. KB has changed; the same problem.

    Any clue?

    I change the motherboard. Problem solved.

  • Board problem and number

    I encountered a problem while writing a special sub.vi whose purpose is to depend on a specified range, spit out a bunch of different test settings.

    The problem, as shown in the spare part, has to do with the fact that the majority of the beaches, it spits out a table frequencies to test.  However, there are some beaches that require only 1 test frequency, and I can't do a painting that is only 1 entry.

    This .vi acts as a sub.vi in a larger program, and I really need them to go all the same (the 'Frequencies' table) indicator.

    In the cut wire insert a table to build.  It will create an array with a single element.

    The exit flag requires a table.  The number of elements in the array can be 0, 1,... ~ 2 ^ 32.

    Lynn

  • Strictly increasing Board problem

    I run a strange problem when you try to create a Subvi which would check if input of U32 1 d-array numbers is in order with regard to strictly increasing index. A Boolean output is true if this is the case (maybe there is an easier way to check?)

    When I hit the run button continually to check it out, it seems to work for most of the time, but sometimes I get a true value even if the elements are clearly not ascending or have identical values.

    The image attatched I put probes on wires to see what values they have. As you can see that is the item index 4-2 and 1 respectively. The higher or equal-function is defined for comparing aggregates, but it says that-2 > = 1 is true?

    Is there a problem with the old data still in memory or something?

    Thanks in advance

    Oscar

    Hi Oscar,.

    no need to use a loop FOR:

    To your question:

    Choose the method of comparison can have side effects on the result of the comparison. Be sure to read the help...

  • How do l fix doesn't have system board problem RTC accuracy test

    Hello

    When running my PC Checkup(system tests), l has a problem, the overall result of the test revealed that the card system, RTC accuracy Test
    WSBO1-HWX failed. How do l fix the problem so that the RTC accuracy Test will pass in the future?
    Kind regards
    Amos.

    Hi, Amos.

    What is your computer make and model and the Windows operating system?

    RTC - this test accuracy test verifies the accuracy of the RTC on the motherboard and compares it to the processor clock to determine if the motherboard and CPU clock are too out of sync. This test will discover problems with updates of time system, periodic interruptions and interruptions of the alarm. If the test detects errors with the accuracy of the RTC, it will record the test failure in report of the additional details in the test log.

    Your Windows system time may not be the same as the Bios time.

    Check in the Bios

    Compare with time Windows

    If the clock keeps losing time, check the battery

    You may need to replace the CMOS battery

  • HELP the QML Notification problems

    I don't know why my custom sounds and the icon does not work. I checked my sounds and icons are really in the right place and they are valid.

    //imported this import bb.platform 1.2 // I am running it to my device with 10.2 OS//I've also added the permissions and the proper library in the pro file
    
    Notification
            {
                id: theNotification
                soundUrl: "asset:///sounds/ios.wav"
                iconUrl: "asset:///images/icon.png"
                title: "Test"
                body: "Test"
            }
    
    then I call this in a button theNotification.notify();
    

    Also how can I continue to add notifications? When he has already added a notification in the hub, you may not add another new and nothing happens.

    Also is there a way to disable its default Notifications?

    I hope that a solution to this little problem.

    Hi, I tried your 2nd suggestion and did not work at all. no error and no notificaitons have been issued.

    I just used C++ and works perfectly. Thank you very much!

    I just built a function

    void ApplicationUI::notify(QString title, QString body)
    {
        Notification* notification = new Notification();
        notification->setTitle(title);
        notification->setBody(body);
        notification->notify();
    }
    

    So call whenever I need to display a Notification of Hub.

  • for loop Board problem

    I'm really new to programming in labview (started on Monday). I followed the toturials of labview and online or Web site, but I have not been able to solve.

    Edit: all the values in the table are the same...

    Maybe someone here can take a look.


  • Board problem

    Hello

    I was wondering what kind of table is who?

    Thank you

    High-centre is an array of bunches, with the cluster containing 2 tables. Below and to the left of that is a unique cluster, even containing 2 elements, which are arrays of floating-point values.

  • Virtual key board problem...

    Hello gurus,

    I am a newbee and lately have begun to build the app for BB OS version 4.2, 4.3 - 4.6 and 4.7 or upward...

    Now I have run into the situation as follows...

    I added following code to hide the virtual keyboard

    #ifdef JDE_4_7<-- pre="" processor="" for="" building="" different="" version="" cod="">

    Import net.rim.device.api.ui.VirtualKeyboard;

    endif

    Some where in the middle of my class, I added following code to hide the virtual keyboard

    Hey guys... I found the solution... just to make a few simple changes in code...

    Here it is...

Maybe you are looking for