[Solved]Re position an animated object to previous location
Hi, You can use reversible [qt-project.org] property in states and transitions. Ah, ok. Not as complicated as I would’ve thought. Thx
View ArticleDynamic change text direction
yes, but when user change language to english for example, in element “Text” will be english text, not Arabic, and i should to set alignment of TextInput to LeftToRight
View ArticleHow to hide underline when assigning link inside a Text element
I don’t want underline inside a link element. like that: How to use Text type to hide these underline? Thanks.
View ArticleCanvas resize
That’s strange. Did you notice anything during reinstallation that you might have missed in first ?
View ArticleHow to hide underline when assigning link inside a Text element
There’s style=“text-decoration:none” just after the link href=“http://www.qt-project.org”. Don’t know why it is not showing above.
View ArticleTrigger custom QML Event from c++
I attached my project as a zip. I dont know if this is common practice here. I hope thats ok. Maybe someone could look inside. I think this is easier than posting snippets. I tried several things now....
View Articleqml gui and nogui mode
If you want to run it in the explorer then you need to follow the same step as if you were deploying it on another computer. Follow this fine wiki entry [qt-project.org]
View ArticleHow to hide underline when assigning link inside a Text element
Thank you all. The problem has been resolved.
View ArticleDynamic change text direction
Can you post the relevant code where it shows the binding to horizontalAlignment ?
View Articlesaving html content with images
Hi, I’m doing a simple rss reader, so I parse a Rss file to get the “description” field as html content. I can display this content as Text if I change the “textFormat” property textFormat:...
View ArticleTrigger custom QML handler from c++
Oh yes, that was the missing part. now its working and its awsome. Thanks for the help.
View ArticleHow to Open New Window in Maximized Mode(Solved)
Hi, For my application I need to open a new window in Maximized mode, From Parent I Opened new window like onDoubleClicked: { ...
View ArticleObtain object type string from QML
Hello! How I can obtain type of a object from QML code? I need this feature in Loader: Loader { sourceComponent: myObj.type ===...
View ArticleObtain object type string from QML
You may read about tripple equals (===) in docs: Comparison operators [c-point.com] you are right! I never stop learning. I developed the following example: import QtQuick 2.2 import QtQuick.Controls...
View ArticleHow to Open New Window in Maximized Mode(Solved)
Hi, thanks for the replay, window.showMaximized() works fine.
View ArticleWebview not scrollable using QtWebKit 1.0
Im trying to use a webview in my qml code, but the scrolling is not wrking with those two versions of QtQuick and QtWebKit. Also I tried the Flickable Web View [qt-project.org], the scroll works fine...
View ArticleHow to Open New Window in Maximized Mode(Solved)
This too should work, onDoubleClicked: { var component = Qt.createComponent("AppWin.qml") var window ...
View ArticleObtain object type string from QML
I mean that if we using objectName() method that we must set this property to all instances of class in constructor or in other places. For example: MyObject1() { //...
View ArticleConnect To Remote Webservice using Soap
I am new to Qt, and in my application i need to connect to a remote service hosted in secure environment. I need to add certificates to the Network request inorder to process the request. void...
View ArticleUpgrading from qt quick ui
I have created big application in qml, w/o c++ (I use qmlscene). I have C++ plugin, and I liked to develop that way, but now i need some functionality from QGuiApplication(I need to override cursor and...
View Article