Need to organized the vast amount of snippets

So i use around 100 (planning to use 150 to 200 soon) i need suggestions how i can organize it and remember all of them. Also i have a question can i use {note} commands in drop down meanu please guys i really need this answer

Hi @rksg77 Welcome to the forum! :slight_smile:

Check out this post:

Let us know what are your thoughts about it and any suggestions you have for us.

[quote="rksg77, post:1, topic:40662"]
i have a question can i use {note} commands in drop down meanu [/quote]

Can you please clarify your question with an example?

@rksg77 The import option in the previous post is what I use and it works great! Here is an example:

{note}{formmenu: default=Choice A; Choice B; Choice C; name=Snippet}

{endnote}{if: Snippet == "Choice A"; trim=left}{import: /snippet#1}{endif}

{if: Snippet == "Choice B"; trim=left}{import: /snippet#2}{endif}

{if: Snippet == "Choice C"; trim=left}{import: /snippet#3}{endif}

This will allow you to only have to remember the shortcut to this snippet and it can pull up any snippets you have imported. This is the way I organize my snippets and it works great for me. Instead of having to remember the shortcut for each of the types of phone calls I have to make, I just created one snippet and import my phone call snippets into this snippet.

3 Likes

Thank you but now i am using dropdown menu for each category and my total snippets uses(how many times i have used) is more then 10,000 maybe in 3 or 4 weeks. I don't know if it is little or lot compared to other top user but i love textblaze.

3 Likes

@rksg77 That's awesome! The drop down option is probably my favorite style for using multiple snippets. Are you using IF conditions with the drop-down options or importing snippets? I can send you a few screenshots if you are looking to organize your snippets even more.

1 Like

Thank you, and I apologize for the delay in responding as I was too busy to check the email. Here are some questions and issues that I need to get resolved:

  1. How can I use 'if-else' in a dropdown menu?

  2. I have another issue: I want some snippet text to be auto-selected when I use the snippet. For example, in 'Hello, my name is Batman,' I would like the word 'Batman' to be auto-selected. I tried using {key:ctrl-shift-rightarrow}, but it’s not working. I don't want to use text fields.
    If you can answer me the second question i would be really grateful thanks

Hi @rksg77

For question #1 You can do something like this where you would choose your option in the drop-down box on the top and each choice would be linked to an IF condition.

{note}{formmenu: default=Choice A; Choice B; Choice C; name=Snippet}

{endnote}{if: Snippet == "Choice A"; trim=left}{import: /snippet#1}{endif}

{if: Snippet == "Choice B"; trim=left}{import: /snippet#2}{endif}

{if: Snippet == "Choice C"; trim=left}{import: /snippet#3}{endif}

For question #2: I need a little more for this question. Do you have a drop-down and want a specific name to be automatically auto-selected?