implemented simple rocking as feature in QML

Hello

I want to put in simple toggle as feature in QML.

For example, when the user clicks the button once, it happens an action,

When the user clicks the button again another action happens when the user clicks new

the button of the action happened at the start will be made.

How to keep the State of a variable of that type in QML?

It should be sth like that, but don't know exactly how do:

onClicked: {
   if (variable == true)
   {
     displayDialog();
     variable = false;
   }else
   {
     displayDialog2();
     variable = true;
   }

 }

How using the correct syntax? Thank you.

The container reference by id, the following should work:

 Container {
   id: myContainer
   ...
    property int toggleProperty: 0;

            Button {

                imageSource: "asset:///bkg.png"

                onClicked: {
                 if (myContainer.toggleProperty == 0)
                {
                  doSmth() // this never gets called :((??
                  myContainer.toggleProperty = 1
                }
                  else
                {
                    doSmthElse()
                   myContainer.toggleProperty = 0
                 }
               }

            }

    } // end of Container

Another option is declaring alias property in the top-level object:

{Page}

property alias toggleProperty: myContainer.toggleProperty

...

The names in this way, even if not qualified will work:

If (toggleProperty == 0)...

It is also possible to declare the property int itself at the highest level.

Tags: BlackBerry Developers

Similar Questions

  • Get a simple device to work in QML

    Hey, I use the QML code from the site of the developers here:

    https://developer.BlackBerry.com/native/documentation/Cascades/graphics_multimedia/camera/qml_code_s...

    But just using the QML does nothing and I get the toast in the code that says "no camera found unit.

    so I thought that I would follow the steps of developer of Blackberry here:

    http://devBlog.BlackBerry.com/2012/07/camera-API/

    It is said to add such things to the app.cpp

    #include 
    
    #include 
    
    #include 
    
    bb::cascades::multimedia::Camera::registerQmlTypes();
    

    He also says to add the registerQmlTypes right before that:

    QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
        qml->setContextProperty("_app", this);
    

    Unfortunately when I do this it gives me an error:

    ../src/app.cpp:92:5: error: 'registerQmlTypes' is not a member of 'bb::cascades::multimedia::Camera'
    

    What I am doing wrong?  I can't imagine adding a feature of camera at the code that is difficult.

    NVMD, looks like the code working me was overthinking the problem.  Embarassingly I forgot to allow cameras in the handle bar

  • Implement the 'New tab' feature in the tabbed pane

    Hello

    I wanted to design feature 'New tab' in my application of cascades in same way that we found in the browser native avaialbe on system Z10.

    On the left sidebar, it states:

    Bookmarks

    History

    New tab

    Tab 1                    |--------------------------

    Tab 2                    |

    Tab 2                    |

    ........

    Tab n                    |-----------------------------

    I know that TabbedPane provides functions like add, insert, delete can be used to manage the tabs in the tabbed pane. But they show cahnges in the level list root of the tabs.

    1 how we can implement similar user interface design?

    1.1 how to add newly created list tab under the menu tab "new tab"?

    1.2 How to provide on each newly created tab close button?

    Could someone please guide me to make this UI?

    Thanks in advance.

    He's right, because while the browser uses WebWorks, you use stunts where the TabbedPane is not customizable in this way (at least not close buttons).

    You can certainly make a tab that says 'New tab', however, and have in fact insert a new tab and then switch to him. How to do this should be pretty obvious once you have read the documentation of the API TabbedPane.

  • I'm new to smart playlists and were able to implement simple. I can't understand how the rules to consolidate all my songs to cover of all my songs in a playlist.

    Smart playlist to group all covers of songs all the

    Are these songs marked somehow as blankets? For example, I add coverage to the tag group in Get Info. Then, it is trivial to create smart playlist with one or more rules.

  • Does everything with JSON of QML

    Hello

    Just trying to decide what type of template to use for the list, I wanted to do.

    It's true that I can't fully implement JSON in its entirety in QML? that is sort of the key (and everything else 100%) in QML, no C++ at all. (I have a JSON file I created)

    In the examples I see, to do a minimum implementation in C++ and more QML.

    Otherwise, I can use XML purely in QML but will not get the features of sort etc..

    Is everything is OK?

    I just noticed tonight that the 'global' Javascript object, in the environment of waterfalls QML, has a JSON object in it.

    This seems to be the JSON object standard ECMAscript 5 which is documented here: https://developer.mozilla.org/en-US/docs/Using_native_JSON

    By using it, you could make JSON.parse (somestring) and retrieve the result of the analysis of the JSON.  Similar to eval(), but probably better...

    Also a JSON.stringify () has to go the other way.

    These things were probably obvious to many who read this... was good news for me.

  • How to connect the ButtonClick events to NavigationPane.popAndDelete within QML

    Hi all

    I know to connect my click event of the button to NavigationPane.popanddelete in the native SDK,

    I want to implement this feature in QML, how to implement it.

    My struct QML is something like this:

    P

    MyHeader.QML
    
    Container{
       Button{
         objectName:"BackButton"
         onClicked:..//how to write here
       }
    }
    
    MyPage.QML
    
    Container{
       MyHeader{
       }
       Container{
       }
    }
    
    within C++
    
                QmlDocument *qml = QmlDocument::create("MyPage.qml");
                AbstractPane *mypage= qml->createRootNode();
               // Button *button = alertPage->findChild("BackButton");
                //QObject::connect(button,SIGNAL(clicked()),this,SLOT(onPreviousClick()));
               m_pagePane->push(mypage);
    

    Thanks in advance...

    Hello

    I want everything first, make sure that you know about the properties of the component in QML. If you have inserted a page in your navigation pane and want to have a back button seems natural, you can use the following code in your definition of QML Page {}:

    paneProperties: {NavigationPaneProperties}
    ButtonBack: {ActionItem}
    Title: 'Back '.
    onTriggered: {}
    _navPane.pop ();
    }
    }
    }

    This will insert a lower bar filled with a previous button following a consistent style.

    If you want to raise the pop event from the QML document via manual button (no), in the property of your onClicked button, you can simply call pop on the handle of your navigation pane.

    for example
    Button {}
    ID: buttonTest
    objectName: "buttonTest.
    text: "text".
    onClicked: {}
    _navPane.pop ();
    }

    Please note that in both cases, you have exposed the handle of "_navPane" in your C++ code with subsequent calls (assuming that m_SidePaneContentQML is the name of your page with the back button):

    m_SidePaneContentQML = QmlDocument::create().load("SidePane/SidePane.qml");
    m_SidePaneQmlContext = m_SidePaneContentQML-> documentContext();
    m_SidePaneQmlContext-> setContextProperty ("_navPane", m_Nav);

    In this case, m_Nav would be the navigation pane that you use.

    Let me know if you need more information, I'm happy to help you.

    Good luck!

    Martin

  • Implementation of "Checkout".

    Hello!

    can someone tell me how to implement the features of the FUND to make purchases via app? In fact I have to create a simple application, where user a list of elements and user can add these items to the cart and ultimately paid through credit cards.i might have implemented the shopping cart feature up to, but does not implement the cash portion.

    So, I need your help... Please...

    Thanks in advance

    It can be done since AS3/AIR, but it's quite complicated. Here is an old article to do in Flex, Flash Builder 4.0 with a desktop AIR application. You will need to use another way to call the web browser on mobile and the PayPal API will probably changed now...

    http://www.Adobe.com/devnet/flex/articles/flex_paypal.html

    Way the easiest way is probably by using a StageWebView (or QNXStageWebView) to direct the user to a page on your site and use PayPal or Amazon it. And then when buying, a poll for the news of your site or send a big boost to the app.

    Don't forget that you still have to pay RIM their share of the revenue generated by the application. If you go around App World, you need to do a lot more work, inform RIM sales, process monthly payments and open your accounts for inspection on demand.

  • Tutorials to implement basic things in the Playbook SDK

    Are there tutorials available to implement simple functionality of a Playbook app such as a display of list of pages, navigate between views, etc. or tabbed panes.

    These things are not exactly 'simple' in the native of PlayBook SDK because there no stunts. It would be easier to build a Webworks or AIR application. Native development kit was really targeted in the games and the ports at this time.

  • Need example of returning QML datamodel to the CPP.

    I have created a listview in qml object and are associated with an ArrayDataModel to him.  This model is loaded from a local json file.  Everything seems to be entered in the list as you wish.  Now, I would like to activate a remove function.  I just want to delete the selected item and then proceed the datamodel altered at the RPC, so I can save it in a json file.

    I have a simple method that accepts the QML datamodel.

    Sub ApplicationUI::helloWorld(QObject *data)

    But it seems the only thing I get when qDebug()

    BB::Cascades:ArrayDataModel (0x82c90a8)

    What Miss me?  Suggestions or excerpts from the sample code would be greatly appreciated as I am a total noob.

    Please notify.

    Brandon

    QML all objects are objects c ++ under the surface.

    You probably should learn at least some basics of c ++, your current code snippet has several errors (which must be verified by the compiler):

    ArrayDataModel* adm = qobject_cast(data)
    

    first of all you need a pointer that add the asterisk after the type (or before the name), for

    and qobject_cast, no case.

  • How to implement and use properly the (long) SourceStream.seek?

    I create a custom DataSource and local SourceStream for streaming of video files (the files are stored in the memory card). I chose to use the data source instead of just creating a player given the path of the file because I have additional processes to be made between bed bytes of video files and the player to obtain the data, and I need to implement look/forward/back features fast outside the play/pause/resume/STOP.

    Then to add these features, I implemented the method SourceStream.seek (long) using setCurrentPosition (int) of the SharedInputStream method.

     public long seek(long where) throws IOException {
            if (where < 0) {
                where = 0;
            }
    
            synchronized (readLock) {
                synchronized (connectionLock) {
                    sharedInputStream.setCurrentPosition((int) where);
                        currentPosition = sharedInputStream.getCurrentPosition();
    
                        return currentPosition;
                }
            }
        }
    

    The problem is, when I explicitly call the seek (long) method to move to a time particular/frame, the video remains stuck in a State of buffering. In addition, I'm worried about the method with a parameter int SharedInputStream.setCurrentPosition (int). I fear that this would cause an exception since I play video files.

    I also tried to use the InputStream methods reset(), and skip (long), but when you watch the video, an exception is thrown:

      public long seek(long where) throws IOException {
            if (where < 0) {
                where = 0;
            }
    
            synchronized (readLock) {
                long now = 0;
                try{
                    sharedInputStream.reset();
                    now = sharedInputStream.skip(where);
                } catch (Throwable t){
                    e.printStackTrace();
                }
                return now;
            }
        }
    

    My questions are:

    1. how the seek (long) method must be implemented using the SharedInputStream.setCurrentPosition (int)?

    2. Similarly, how can you search for videos using the methods InputStream.reset () and .skip (long)?

    3. What is the right way to call the seek (long) method if you want to go to a particular time frame /?

    Thank you!

    Take a look at the following KB that has a very good specimen annex and explains the issues you have raised: http://supportforums.blackberry.com/t5/Java-Development/Streaming-media-Start-to-finish/ta-p/488255

    It uses a CircularStreamingBuffer, and the implementation of seek can handle both seeks in the buffer zone, or outside that case made an additional http request.

    For any initiative the user seeks, you should just use player.setMediaTime () as shown in the example, and it must call your call the implementation on the lower level.

  • QList &lt; QString &gt; values of the RPC return as "not defined" in QML

    Hello. I have a pretty simple question. In my qml file calling a what function of the applicationui.cpp file which is below:

    QList ApplicationUI::getList() {
        qDebug() << myMap.keys(); // prints ("key1", "key2")
        return myMap.keys();
    }
    

    In my file QML (sheet), I write the code below:

        onOpened: {
            var myKeys = app.getList();
            console.log(myKeys); // prints undefined
            for (var item in myKeys){
                myDataModel.append(myKeys[item]);
            }
        }
    

    As you can see in the code, when the program comes to expression qDebug ("key1", "Key2") it prints but it's the expression of console.log (myKeys), it prints "undefined". I'm definitely something wrong. Could you please help?

    Try to send the QList instead. This should make happy qml

  • His game of qml system

    How can I play a simple keyboard click sound of qml.  My app has a ton of buttons and I want to make a clicking sound and may vibrate the phone for your comments.

    Found.  Here is a list of sounds that I found.

           SystemSound
           {
               id: sysSound
               //sound: SystemSound.CameraShutterEvent
               //sound: SystemSound.BrowserStartEvent
               //sound: SystemSound.DeviceTetherEvent
               //sound: SystemSound.GeneralNotification
               sound: SystemSound.InputKeypress
           }
    
  • QML perfomance

    Hello. I have a problem with qt on playbook. I managed to create a simple player for PB, using qml technology, but when I scroll through the text, I have annoying lags. I took a video of it: http://youtu.be/FW0JkUR4rQA

    The elemnt, who is trolling, is faster with rectangles personalized inside. There is a code:

        Flickable {
            property int myBottomMargin: 0
                id: flick
                anchors.rightMargin: 0
                anchors.bottomMargin: myBottomMargin
                anchors.leftMargin: 250
                anchors.topMargin: 48
                z: 1
                flickableDirection: Flickable.VerticalFlick
                contentWidth: 517
                contentHeight: 0
                interactive: true
                clip: true
                anchors.fill: parent
        }
    

    The objects that are in use this class:

    import QtQuick 1.1
    
    Rectangle {
        id: story
        property alias storyText : joke.text
        property alias idText : id.text
        property alias dateText : date.text
        property alias ratioText : ratio.text
        //transformOrigin: Item.TopLeft
        width: topLine.width
        height: topLine.height + border_image1.height
    
        Image {
            id: topLine
            x: 0
            y: 0
            source: "../quite_top.png"
    
            Image {
                id: image1
                x: 20
                y: 4
                width: 21
                height: 18
                source: "../up.png"
            }
    
            BorderImage {
                id: border_image1
                x: 0
                y: topLine.height + topLine.y
                width: topLine.width
                height: joke.paintedHeight
                border.top: 0
                border.right: 633
                border.left: 633
                z: -1
                source: "../quite_middle.png"
            }
    
            Text {
                id: joke
                x: 20
                y: topLine.height + topLine.y
                //+topLine.width*0.05
                width: border_image1.width-40
                height: 200
                font.family: "Times New Roman"
                //text: qsTr("good joke")
                wrapMode: Text.WrapAtWordBoundaryOrAnywhere
                font.pixelSize: 18
            }
    
            Image {
                id: bottomLine
                x: 0
                y: joke.paintedHeight + joke.y
                source: "../quite_bottom.png"
            }
    
            Text {
                id: id
                x: 497
                y: 6
                width: 116
                height: 14
                text: qsTr("")
                verticalAlignment: Text.AlignVCenter
                horizontalAlignment: Text.AlignRight
                font.pixelSize: 12
            }
    
            Text {
                id: date
                x: 327
                y: 6
                text: qsTr("")
                verticalAlignment: Text.AlignVCenter
                font.pixelSize: 12
            }
    
            Text {
                id: ratio
                x: 49
                y: 6
                text: qsTr("")
                verticalAlignment: Text.AlignVCenter
                horizontalAlignment: Text.AlignLeft
                font.pixelSize: 12
            }
    
        }
    }
    

    And how I have the complete list:

    function addObjects() {
        console.log("Add objects")
        console.log(data[0][0])
    
        setStatusBarText();
    
        isLoading = false
    
        count = data[0].length
    
        var component = Qt.createComponent("Story.qml")
        var height_flick = y_offset
    
        //console.log(data[0][0]);
        for (var i=0;i
    

    I use Qt 4.8.3 with settings by default if it is. Thank you

    Hello

    Faster is not optimized for the display of several elements.

    It is best to use a ListView with delegate & dataModel. ListView creates only items that are currently on the screen and should work very quickly.

  • On the features of Drag and Drop

    Hi I work on ADFMobile I implemented an Application using HTML and JavaScript and CSS. And I provide the functionality of Drag and Drop in HTML5, but the functionality of Drag and Drop didn't work.

    So could you please help me how to implement the drag and drop operation going works in ADFMobile

    <! DOCTYPE html >

    < html >

    < head >

    <!-< script type = "text/javascript" src = "jquery.js" > < / script >

    < script type = "text/javascript" src = "main.js" > < / script >->

    < link rel = "stylesheet" type = "text/css" href = "style.css" >

    < title > < / title >

    < / head >

    < body >

    < div id = 'wrapper' >

    < div class = "header-wrapper" >

    < div class = "wrapper-in-head-left" > Accept < / div >

    < div class = 'wrapper-in-head-right' > reject < / div >

    < / div >

    < div class = "container" >

    < div class = "info-container" >

    < div class = "info-header" > example 1 < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < / div > <! - first contianer ends here - >

    < div class = "info-container" >

    < div class = "info-header" > example2 < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < / div > <! - first contianer ends here - >

    < div class = "info-container" >

    < div class = "info-header" > 3 < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < div class = "info-tip" >

    Hello World < p > < /p >

    < / div >

    < / div > <! - first contianer ends here - >

    < / div >

    < div class = 'wrapper-footer' >

    < div class = 'wrapper-foot of page-left' > learn... < / div >

    < div class = 'wrapper-foot of page-right' > Later < / div >

    < / div >

    < / div >

    < / body >

    < / html >

    #{pageFlowScope.JavaScript.InvokeAlerts}

    Sorry, Frank Nimphius I designed a mobile page with HTML5 JavaScript and CSS in Jdeveloper and I try to implement the functionality of gliding & in this application, but it will not work on the Android browser

    Could you please help me how to implement drag and drop features in the given page

    HTML:

    Accept

    Reject

    example1

    Hello world

    Hello world

    Hello world

    Hello world

    Example2

    Hello world

    Hello world

    Hello world

    Hello world

    3

    Hello world

    Hello world

    Hello world

    Hello world

    JavaScript:

    $(document) .ready (function () {}

    $('.info-tip').mousedown (function (e) {}

    e.preventDefault ();

    Console.log (e.ClientX);

    Console.log (e.ClientY);

    $('.info-tip').mousemove (function (e) {}

    {if (e.which = 1)}

    $(this).removeClass('info-tip').addClass ("clone-item");

    }

    });

    (.mouseup)})

    function() {}

    $('.info-tip').off ("mousemove");

    });

    });

    CSS:

    HTML, body {}

    Width: 100%;

    height: 100%;

    padding: 0px;

    margin: 0px;

    background: #ccc;

    }

    {#wrapper}

    Width: 80%;

    height: 80%;

    margin: auto;

    }

    . Container {}

    Width: 100%;

    height: auto;

    margin: 0px 0px 30px 0px;

    }

    {.wrapper-head

    margin: 0;

    background: #4c4c4c; / * Older browsers * /.

    background:-moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #000000 100%, #131313 100%); / * FF3.6 + * /.

    background:-webkit-gradient (linear, left top, left bottom, color-stop(0%,#4c4c4c) color-stop(12%,#595959) color-stop(25%,#666666), color-stop(39%,#474747), color-stop(50%,#2c2c2c), color-stop(60%,#111111), color-stop(76%,#2b2b2b), color-stop(91%,#1c1c1c), color-stop(100%,#000000), color-stop(100%,#131313))... / * Safari4, Chrome + * /.

    background:-webkit-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#000000 100%,#131313 100%); / * Chrome10 +, Safari5.1 + * /.

    background:-o-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#000000 100%,#131313 100%); / * Opera 11.10 + * /.

    background:-ms-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#000000 100%,#131313 100%); / * IE10 + * /.

    background: linear-gradient(to bottom, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#000000 100%,#131313 100%); / * W3C * /.

    filter: progid:DXImageTransform.Microsoft.gradient (startColorstr = ' #4c4c4c ', endColorstr = "#131313 ', GradientType = 0"); / * IE6-9 * /.

    position: fixed;

    top: 0;

    Width: 80%;

    padding: 10px 0px;

    z-index: 100;

    }

    {.wrapper-footer

    margin: 0;

    padding: 10px 0px;

    background: #4c4c4c; / * Older browsers * /.

    background:-moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #000000 100%, #131313 100%); / * FF3.6 + * /.

    background:-webkit-gradient (linear, left top, left bottom, color-stop(0%,#4c4c4c) color-stop(12%,#595959) color-stop(25%,#666666), color-stop(39%,#474747), color-stop(50%,#2c2c2c), color-stop(60%,#111111), color-stop(76%,#2b2b2b), color-stop(91%,#1c1c1c), color-stop(100%,#000000), color-stop(100%,#131313))... / * Safari4, Chrome + * /.

    background:-webkit-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#000000 100%,#131313 100%); / * Chrome10 +, Safari5.1 + * /.

    background:-o-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#000000 100%,#131313 100%); / * Opera 11.10 + * /.

    background:-ms-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#000000 100%,#131313 100%); / * IE10 + * /.

    background: linear-gradient(to bottom, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#000000 100%,#131313 100%); / * W3C * /.

    filter: progid:DXImageTransform.Microsoft.gradient (startColorstr = ' #4c4c4c ', endColorstr = "#131313 ', GradientType = 0"); / * IE6-9 * /.

    position: fixed;

    bottom: 0;

    Width: 80%;

    z-index: 100;

    }

    {} .info-container

    Width: 100%;

    height: auto;

    float: left;

    top of the margin: 20px;

    position: relative;

    }

    .wrapper .wrapper-in-head-left header {}

    float: left;

    color: #fff;

    text-indent: 10px;

    }

    .wrapper .wrapper-in-head-right header {}

    float: right;

    color: #fff;

    text-indent: 10px;

    }

    . Wrapper-foot left-foot of page-.wrapper {}

    float: left;

    color: #fff;

    text-indent: 10px;

    }

    foot of page-.wrapper .wrapper-foot of page-right {}

    float: right;

    color: #fff;

    }

    {} .info-head

    text-indent: 10px;

    color: #fff;

    make-weight: bold;

    padding: 2px 0px;

    margin-bottom: 8px;

    background: #1e5799; / * Older browsers * /.

    background:-moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 90%, #7db9e8 100%); / * FF3.6 + * /.

    background:-webkit-gradient (linear, left top, left bottom, color-stop(0%,#1e5799) color-stop(50%,#2989d8), color-stop(90%,#207cca) color-stop(100%,#7db9e8)); / * Chrome, Safari4 + * /.

    background:-webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 90%,#7db9e8 100%); / * Chrome10 +, Safari5.1 + * /.

    background:-o-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 90%,#7db9e8 100%); / * Opera 11.10 + * /.

    background:-ms-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 90%,#7db9e8 100%); / * IE10 + * /.

    background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 90%,#7db9e8 100%); / * W3C * /.

    filter: progid:DXImageTransform.Microsoft.gradient (startColorstr = ' #1e5799 ', endColorstr = ' #7db9e8 ', GradientType = 0); / * IE6-9 * /.

    }

    {} .info-tip

    Width: 24%;

    height: 150px;

    float: left;

    margin-left: 10px;

    Background: #fff;

    -webkit-border-radius: 10px;

    }

    .info-pointe p {}

    text-align: center;

    margin: 60px banner 0px 0px 0px;

    }

    . Clone-item {}

    background: Red;

    Width: 200px;

    height: 150px;

    float: left;

    margin-left: 10px;

    background: Red;

    -webkit-border-radius: 10px;

    position: absolute;

    }

    Using this code, I generate a page on this page I want to drag drag the HellowWorld to accept button so how to implement this feature - déposer in ADFmobile

  • Ability to add images is a partner feature only?

    So I learned to support certain facts disconcerting than I'm having a hard time to believe actually could be true.  Some hope can confirm, or better yet, to refute these.

    1. The Visual Editor does not allow adding images - you can change existing ones.
    2. The Rich Editor (which allows the addition of images) is only available for partners.
    3. The workarounds are either:
      1. Reset the user originally old discouraged editor soon-to-be-eliminated, thus losing any protection"to prevent the user from fouling the layout, etc.
      2. Tell the user to sign up as a partner of BC (have fun explaining that), then take their partner account a link to the site existing, therefore making them a partner in your partner site and Exhibitor information partner only you have no interest in exposing.
      3. Tell them, insertion of images in their emails and pages is a bad habit, and they shouldn't want to do anyway.


    Please tell me I'm wrong or there is an easy fix, I am not aware or is set to be deployed immediately.

    Since you said Visual Editor, I assume you mean campaigns. I think you have confused what has been said.

    1 visual editor - control Image is within the parameters of ice configure you - no top bar has buttons all is through the ice in the campaign. If you configure an image, the customer can change the image and replace it with others.

    2 If you choose to use the new editor for emailings customers do not see the rich editor mode, it is ONLY for partners (who I think that what you have said and misunderstanding) who will all have the editor buttons etc.

    The foregoing, then based on the other bits you said is what support you have said and what is meant. You need to implement your ice and features if you are going to use it for campaigns.

Maybe you are looking for

  • How to remove - com.adobe.ARMDCHelper.cc24-

    After execution of Etrecheck... I find that com.adobe.ARMDCHelper.cc24 - etc... shows that it is a failure... I don't know what it is, or delete.  I checked the Macintosh HD - library and library system... to search for that item in the launch of dem

  • Internal keyboard - Maj-symbols changed! Help, please

    Hello MBP Late 2009, 13.3, keyboard internal only, I have not used any external keyboard. OS X El Capitan Too many hours looking for the answer but can: t understand why my MBP modified to use shift-number symbols! For example when I press shift-2 sy

  • Product name: HP Pavilion 17 N: can I use recommended application HPSA to install HP updates, updates windows and tune-up?

    Should I use HPSA application install recommended updates of DRIVERS, windows updates and the updates?  I understand that you can select the updates you want to install but I always select and install updates recommended by HPSA. Thank you.

  • Computer is slow and want to reinstall Windows XP.

    Original title: HELP I need to reinstall xp BUT do not have a backup disk. Can you please help... Thanks in advance. Hi there I would take my netbook XP to the day I bought it. Unfortunately, I do not back up the netbook and did not receive a CD of i

  • Configuration Linksys LTR214 VPN

    Sorry to ask a stupid question, but how do I do on the side of the Modem cable to configure a VPN?  I had setup a VPN software but could support only a single connection; I bought this unit and you want to set up iit upward to access my network remot