Wednesday, April 21, 2010

Tips: Few links to Inkscape tutorials.

http://verysimpledesigns.com/vectors/

http://screencasters.heathenx.org/

http://screencasters.heathenx.org/wp-content/videos/

http://howto.nicubunu.ro/

http://www.microugly.com/inkscape-quickguide/

http://inkscapetutorials.wordpress.com

http://nicubunu.blogspot.com/

http://www.trazoi.net/tutorials/inkscape

http://www.ioncannon.net/utilities/123/10-tips-for-creating-good-looking-diagrams-using-inkscape

http://www.starfishwebconsulting.co.uk/articles/inkscape-tastic-icons?/tasty_icons

http://aqeeliz.com/2007/03/12/inkscape-tutorial-reflection/

Sorry for the spam.

Hello ,

Two days back some one hacked my funmayank@yahoo.co.in email id and sent the spam related to dell website. I have since then changed the password. I am sorry for the inconvenience caused due to that email.

Thanks for understanding

Thanks and Regards
Mayank Johri

Friday, April 9, 2010

Tips: wx.Python: Animated Gif in

import wx

import wx.animate # ..\wx\animate.py

class MyPanel(wx.Panel):

""" class MyPanel creates a panel, inherits wx.Panel """

def __init__(self, parent=None):


wx.Panel.__init__(self, parent)


self.SetBackgroundColour("white")


ag_fname = r"progress.gif"


self.ag = wx.animate.GIFAnimationCtrl(self, -1, ag_fname, pos=(0, 0), size=(64,64))


self.ag.GetPlayer().UseBackgroundColour(True)


self.ag.Play()


#self.ag.Stop()



if __name__ == '__main__':

app = wx.App(redirect = 0)


frame = MyPanel(None)


frame.Show(True)


app.SetTopWindow(frame)


app.MainLoop()