Jump to content

Au3DB


FuryCell
 Share

  

39 members have voted

  1. 1. Are you intrested in seeing this developed further?

    • yes
      38
    • no
      1
  2. 2. Would you enjoy seeing a tool like this replacing the snippet holder already included in scite?

    • Yes
      34
    • No
      5


Recommended Posts

Resizable window (with resizable controls obviously) would by nice, as I use a netbook for coding, and Au3DB takes up over half the width of my screen lol. Also +1 to the Find/Search feature already requested. Other than those two things, this is really nice, thanks. Keep up the good work :blink:

Link to comment
Share on other sites

  • Replies 45
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

@scriptonize

mat said it perfectly.

@Tachibanya

Glad you like it and resizing will be done. The scite control is 3rd party however so I have to write a custom routine to resize it when the window is resized. I'll get to it when I get back from vacation in a few days (visted canada yesterday btw). The search will also come once the resizing is complete.

HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Link to comment
Share on other sites

I don't think there will be much of a speed lag even if you only use recursive file search. I'd rather wait five seconds than manually searching through 1000 code snippets for few hours.

Anyway, recursive file search isn't hard at all to implement. Shouldn't take an expert coder like you more than half an hour to implement the entire feature.

[Not using this account any more. Using "iShafayet" instead]

Link to comment
Share on other sites

@Shafayat

I'll look into it. I'm still undecided on which type of search I want to implement and how it will be integrated into the GUI. I'm very anal about things looking out of place lol.

@General

An updated version with resizing is done and can be downloaded here.

Also,I am looking for someone willing to create an installer. It should automatically copy the files to the SciTE folder and add it to the tools menu. Anyone who has enough experience with NSIS willing to do it?

HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Link to comment
Share on other sites

  • 3 weeks later...

Just wondering if you've done any more development on this.

I'm "getting into" using and and it's a big help.

Thanks for the great script

Link to comment
Share on other sites

  • 1 month later...

Glad you guys like the app. As far as nested folders go I'll add it to the issue tracker once the other stuff there is implmnented. The biggest things I want to focus on atm are getting an installer done and making sure the program is stable and as bug free as possible.

HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Link to comment
Share on other sites

Mayby I missed this somehow but, can you run those snippets straight from Au3DB?

They can't be run directly from Au3DB but they are all actually files in the Au3DB folder so you can launch them that way.

HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Link to comment
Share on other sites

  • 2 weeks later...
  • Developers

I have a brief look to what you have made without actually running it yet and have a couple of remarks:

  • Could you post a link to the latest version of your au3db script in the first post to avoid having to read through the thread and find the latest version?
  • Your Setup tool modifies au3.properties which is not the recommended way. You should update the UserSciTE.properties file to avoid loosing the settings when a new version of SciTE4AutoIt3 is installed.

I would like to hear from the regulars some opinions if they think this is an improvement over Gary's version of the snippetholder because I obviously only want to include one.

Thanks

Jos

Edited by Jos
fixed typos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

@Jos

Thanks for the info. I'll update the script with the ability to insert into scite (from your pm code). The installer is just a toy atm as I hope for it to be included as default (which would mean no installer is needed) but I'll look into the UserSciTE.properties. Thanks for your prompt response.

Edit:Clarity

Edit2:The newest version can now be found at the beginning of the thread.

Edited by FuryCell
HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Link to comment
Share on other sites

New version uploaded. See link at beginning of thread to download it. I have been talking to Jos about having it being included in the next release of scite and some feedback on what people think of this idea would be much appreciated.

-Local hotkeys added

-Added abilty to insert into scite when F1 or menu option is selected (Thanks Jos)

-Fixed typo in data folder (I in GUI should be uppercase)

HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Link to comment
Share on other sites

I still think a straight run from the Au3DB would be good. ;)

Edited by AlmarM

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Link to comment
Share on other sites

I still think a straight run from the Au3DB would be good. ;)

I'll see what I can do. Would a "Run" option in the file menu be good enough?(along with F5 local hotkey)

HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Link to comment
Share on other sites

I'll see what I can do. Would a "Run" option in the file menu be good enough?(along with F5 local hotkey)

Ye, great ^x^

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Link to comment
Share on other sites

  • Developers

I'll see what I can do. Would a "Run" option in the file menu be good enough?(along with F5 local hotkey)

What I would do If I were you is load the file into a new SciTE tab and do the Run option. This will avoid having to go through a shitload of coding work to support an Output pane and all the other bell and whistles....

This can all be done via the SciTE director interface.

My 2 cents ;)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Thanks for the comments everyone. I'll look into the director interface after I get out of class today. (Finally getting my A+ Cert)

HKTunes:Softpedia | GoogleCodeLyricToy:Softpedia | GoogleCodeRCTunes:Softpedia | GoogleCodeMichtaToolsProgrammer n. - An ingenious device that turns caffeine into code.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...