<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Is any Auto Repeat function for image in qml?]]></title><description><![CDATA[<p dir="auto">Dear Friends,</p>
<p dir="auto">I’m a beginner in qt. I’ve created one image as a button in qml and i need to print the text continuously in text-input if i hold the image. Is there any auto repeat function like in (qt button property). or which way and how can i achieve this. Thanks in advance…:-)</p>
]]></description><link>https://forum.qt.io/topic/11847/is-any-auto-repeat-function-for-image-in-qml</link><generator>RSS for Node</generator><lastBuildDate>Mon, 15 Jun 2026 01:13:35 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/11847.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 02 Dec 2011 09:16:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Is any Auto Repeat function for image in qml? on Wed, 07 May 2014 11:53:03 GMT]]></title><description><![CDATA[<p dir="auto">thanks favoritas37<br />
i used it.<br />
:)</p>
]]></description><link>https://forum.qt.io/post/126640</link><guid isPermaLink="true">https://forum.qt.io/post/126640</guid><dc:creator><![CDATA[madoodia]]></dc:creator><pubDate>Wed, 07 May 2014 11:53:03 GMT</pubDate></item><item><title><![CDATA[Reply to Is any Auto Repeat function for image in qml? on Sun, 04 Dec 2011 12:39:45 GMT]]></title><description><![CDATA[<p dir="auto">It's working.......!!!!. Thank u <em>favoritas37</em>. Now only i saw this code and implement.</p>
]]></description><link>https://forum.qt.io/post/119113</link><guid isPermaLink="true">https://forum.qt.io/post/119113</guid><dc:creator><![CDATA[Maheshwara]]></dc:creator><pubDate>Sun, 04 Dec 2011 12:39:45 GMT</pubDate></item><item><title><![CDATA[Reply to Is any Auto Repeat function for image in qml? on Sat, 03 Dec 2011 10:52:35 GMT]]></title><description><![CDATA[<p dir="auto">you can use the following:<br />
@<br />
Image {<br />
id: imageRect<br />
signal repeatedClick(variant str);</p>
<pre><code>MouseArea{
    anchors.fill: parent
    onPressed: timer.running = true;
    onReleased: timer.running = false;
}

Timer {
    id: timer
    interval: 500; running: false; repeat: true
    onTriggered: imageRect.repeatedClick("PrintMe");
}

onRepeatedClick: console.log(str);
</code></pre>
<p dir="auto">}<br />
@</p>
]]></description><link>https://forum.qt.io/post/119047</link><guid isPermaLink="true">https://forum.qt.io/post/119047</guid><dc:creator><![CDATA[favoritas37]]></dc:creator><pubDate>Sat, 03 Dec 2011 10:52:35 GMT</pubDate></item></channel></rss>