Messages - ecaradec [ switch to compact view ]

Pages: [1] 2 3 4 5 6 ... 83next
1
Living Room / Re: I'm getting married, wish me luck!
« on: February 08, 2019, 05:38 AM »
I'm finding out that you got married mouser. My very best wishes to you and mrs.mouser !!

2
Hi, mouser, have a great, great birthday ! DC has helped me realized I could build things on my own, release them, and that people would use them. DC is a amazing place on the internet, where everybody like your efforts good or bad and I think that it's a lot because of you mouser. You are a amazing person and you make this place unique. And I'm truly meaning unique, I don't know of any place on the internet where people are as supportive as DC.

In the last year I also got sciatic pain that caused me pain when sitting, and now have to exercise an hour each day and this took the time I used to spend on DC (I'm getting better these days, but it's a sloooow process ). Because I couldn't code as much I've returned to playing to lot of pen and paper role playing games with friends.

In the process, I've also started writing one called "biz&beyond" about the creation of a startup of ghost hunting where you need to hunt ghosts and clients to grow up your business ;)

3
Developer's Corner / Re: Odd/Fun Ways You've Learned Programming
« on: September 17, 2013, 02:51 PM »
On a holiday trip we visited family. My cousin had a game that was a kind of a lodrunner like that we played a lot while being there. I wanted to get it but my cousin had an amstrad cpc6128. At home i had a cpc464. The 6128 had a floppy disk drive but the 464 only had a tape so I could make a copy. As the game was in BASIC language we printed it so that I could type it again at home. Yeah we did that then !

When I got home I typed everything that was printed, but the last page was missing. It didn't print. Out of necessity, I wrote the end on my own... I had no idea if it would work, but at the end it did. I felt totally awesome.

4
Ecaradec's Software / Re: Qatapult
« on: May 24, 2012, 04:09 PM »
Thanks ! This is fixed.

Nice to see you here.

5
Ecaradec's Software / Re: Qatapult
« on: May 23, 2012, 06:34 PM »
Hello, it has been a bit long since the last update, but Qatapult is going on again : I had a neck ache after jumping badly on a trampoline, not that serious but it was painful enough that I couldn't work too much for some time... among others things. Don't worry everything is ok now ;)

I've uploaded a new version that support multi elements arguments. The way it works is that you can CTRL+Enter on a argument, then it'll stack on the current arg. The default File commands 'Open', 'Delete', etc... handle this by running the command on each item, but you can define how you want your action to handle it :
As an example you could use it to create zip commands and things like that that operate on many files in one command. You can try it on File object in the first pane.

A quick way to multiple select files is to drop Files over the Qatapult interface from the file explorer. Qatapult will accept them when it's appropriate.

Rules define which argument can use multi. You can enable any argument to do that by adding a multi attribute to the argument type tag. Once a type is stacked, you can only stack objects of the same sort and only rules that support multi items will show up in the next pane. Here is how to define a rule that enable multi on the first arg :
<rule>
<arg multi="1">TEXT</arg>
<arg>
<item>
<lbl>Append to file</lbl>
<ico>icons\defaultverb.png</ico>
</item>
</arg>
<script>for(var i=0;i<qatapult.getArgItemCount(0);i++) appendtofile(qatapult.getArgValue(0,i,"text"),"plugins\\commands\\test.txt")</script>
</rule>

I've also added a dialog box that warn you if there is a new Qatapult version available, so you won't need to come back here again and again to check if your version is up to date.

Pages: [1] 2 3 4 5 6 ... 83next
Go to full version