<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Create a textobject with macro and give it a macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-a-textobject-with-macro-and-give-it-a-macro/m-p/27026#M4520</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey! I create via a macro textboxes. Now what i want is, that to give these created textboxes in the macro actions like use macro, set variables .. is it possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Feb 2018 12:54:01 GMT</pubDate>
    <dc:creator>5abi0001</dc:creator>
    <dc:date>2018-02-28T12:54:01Z</dc:date>
    <item>
      <title>Create a textobject with macro and give it a macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-textobject-with-macro-and-give-it-a-macro/m-p/27026#M4520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey! I create via a macro textboxes. Now what i want is, that to give these created textboxes in the macro actions like use macro, set variables .. is it possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2018 12:54:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-textobject-with-macro-and-give-it-a-macro/m-p/27026#M4520</guid>
      <dc:creator>5abi0001</dc:creator>
      <dc:date>2018-02-28T12:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Create a textobject with macro and give it a macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-textobject-with-macro-and-give-it-a-macro/m-p/27027#M4521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: #575757; background: yellow; font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;&lt;STRONG&gt;Macro Action:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15198698369729009 jive_text_macro" jivemacro_uid="_15198698369729009"&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt;Sub Test&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; set MyText = ActiveDocument.ActiveSheet.CreateTextObject&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; set prop = MyText.GetProperties&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; set TextActions = prop.Layout.ActionItems&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; TextActions.Add&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; TextActions.Item(0).Type=13 &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; set ActionParam=TextActions.Item(0).Parameters&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; ActionParam.Add&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; ActionParam.Item(0).v="Test"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt; MyText.SetProperties prop&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 12px;"&gt;End Sub&lt;/SPAN&gt;&lt;/P&gt;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; background: yellow; font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;&lt;STRONG&gt;Variable Action:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; background: yellow; font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15198698707625087" jivemacro_uid="_15198698707625087" modifiedtitle="true"&gt;
&lt;P&gt;Sub Test &lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt;"&gt;set MyText = ActiveDocument.ActiveSheet.CreateTextObject&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;set prop = MyText.GetProperties&lt;/P&gt;
&lt;P&gt;set TextActions = prop.Layout.ActionItems&lt;/P&gt;
&lt;P&gt;TextActions.Add&lt;/P&gt;
&lt;P&gt;TextActions.Item(0).Type=31&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt;"&gt;set ActionParam=TextActions.Item(0).Parameters&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;ActionParam.Add&lt;/P&gt;
&lt;P&gt;ActionParam.Item(0).v="Test"&lt;/P&gt;
&lt;P&gt;ActionParam.Add&lt;/P&gt;
&lt;P&gt;ActionParam.Item(1).v="0"&lt;/P&gt;
&lt;P&gt;MyText.SetProperties prop&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;End Sub&lt;/P&gt;


&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2018 02:06:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-textobject-with-macro-and-give-it-a-macro/m-p/27027#M4521</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-03-01T02:06:16Z</dc:date>
    </item>
  </channel>
</rss>

