Dear All,<br><br>I am trying to create THIRD LEVEL MENU  through the following code. Like I have a menu Called &quot;Boundaries&quot;, inside that I have sub menu called &quot;Division&quot;, inside that I have &quot;Division_name&quot;, inside &quot;Division Name&quot; we have a separate sub menu called &quot;Division Range&quot;, on clicking on the sub menu &quot;Division range&quot; some action is done, like opening the range boundary shape file. I am able to open the Shape file portion, but I am getting error in the Bold Line marked as &quot;AttributeError: addActions&quot;<br>
       <br>        self.menu = QMenu()<br>        self.menu.setTitle( &quot;Boundaries&quot; )<br>        <br>        self.DM = QMenu( &quot;Division&quot; )<br>        self.Div1 = QAction( QIcon( &quot;:/icons/find.png&quot; ), &quot;Division Name&quot;,self.iface.getMainWindow() )<br>
        self.DM.addActions( [ self.Div1])<br>        self.menu.addMenu( self.DM )<br>        menuBar = self.iface.getMainWindow().menuBar()<br>        menuBar.addMenu(self.menu)<br>        <br>        self.Div_Range = QAction( QIcon( &quot;:/icons/find.png&quot; ), &quot;Division Range&quot;,self.iface.getMainWindow() )<br>
        <b>self.Div1.addActions( [ self.Div_Range])</b><br>        self.menu.addMenu( self.Div_Range )<br>        menuBar = self.iface.getMainWindow().menuBar()<br>        menuBar.addMenu(self.menu)<br>        <br>        QObject.connect( self.Div_Range, SIGNAL(&quot;triggered()&quot;), self.Div1_Clicked )<br>
<br>It will be of immense help, if anybody can point the error in the code, or is it like THIRD LEVEL SUBMENU is not supported in QGIS?<br><br>I am using QGIS 0.11, Python 2.5 and QT.<br><br>I am posting the same in the QGIS Developer forum<br>
<br>Thanking you in advance,<br><br>With Warm Regards<br><br>