hi,
how to create help file for python application??
what format these files have(.txt or any other)???
thnks
hi,
how to create help file for python application??
what format these files have(.txt or any other)???
thnks
Hi Sagar,
You have your query answered here already.
http://discussion.forum.nokia.com/fo...d.php?t=135607
Best Regards,
Croozeus
Pankaj Nathani
www.croozeus.com
hay CROOZEUS,
i didn't find what i want , actually i want to create "help".
If we go to Tools>settings>Help in mobile phone you will be able to see help having number of pages and it is not .TXT format it is somewhat different. HTML or like that i don't know . Actually i want to know about that format . How to create it and open, close it.
thnks for reply
Pankaj Nathani
www.croozeus.com
The Help application is located at "z:\System\Apps\CsHelp\CsHelp.app", if that helps you... Help system is pretty much hardcoded for C++ support, so I don't know how much that will help you.
Cheers,
--jouni
how to create help file using carbide c++ please help me...
same question and discussion here :
http://discussion.forum.nokia.com/fo...tion-in-python
I wrote an HTML help file for my app. This way I can add images, rich text, links, etc., and the user can invoke it by clicking a button. The code to call the HTML file is something like this:
Code:def show_help(): try: ch = appuifw.Content_handler() ch.open_standalone('C:\\data\\python\\myapp\\help.html') except Exception, e: pass # log_exception('ui.show_help', e)