Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
86 user(s) are online (55 user(s) are browsing Forums)

Members: 0
Guests: 86

more...

Headlines

Forum Index


Board index » All Posts (zzd10h)




Re: Sneak Preview Of SketchBlock 2.0 Screen Shot
Just can't stay away
Just can't stay away


Look fantastic.
Donation sent for Sketchblock (and for your help on forums).

Do you plan to make a HowTo for Dummies ?
Because, I try to use Sketchblock like a Paint program (I'm not a graphist),
I can resize, rotate, use layer... but I have many questions.

1) I don't find how to select an area of a picture/layer.
2) what is the aim of the bottom palette (where we can draw)
3) is more export format planned ?

Nevertheless, it's a really nice program, bravo !

PS ; I have tried a lot of options, and Wedges/Curves failed with
SketchPath:Rexx/Wedges/wedges_curves.py: file not executable.


Guillaume


Edited by zzd10h on 2013/3/29 12:44:35
Go to top


Re: Lack of small but important feature
Just can't stay away
Just can't stay away


Funny that HunoPPC had released his OSDLauncher today, exactly what you need.

Go to top


Re: MUI : How to update image filename of a DTPic when running ?
Just can't stay away
Just can't stay away


Thank you Thore and Thomas,
Now, I switch between 2 buffers and it works well without the need of intermediate picture.


Go to top


Re: MUI : How to update image filename of a DTPic when running ?
Just can't stay away
Just can't stay away


Hi,
to put NULL in the DTPic_Name make my system freezes.


path_skin_preview is a
path_skin_preview[128]; where I write the path of a picture depending of a selection in a List


memset (path_skin_preview, 0, sizeof (path_skin_preview));
strcpy(path_skin_preview,"PROGDIR:Skins/");
strcat(path_skin_preview,theme);
strcat(path_skin_preview,"/sound7.PNG");


1) works
set(Im_Data_png,MUIA_Dtpic_Name, "PROGDIR:Skins/Empty.png");
set(Im_Data_png,MUIA_Dtpic_Name, path_skin_preview);


2) doesn't work
set(Im_Data_png,MUIA_Dtpic_Name, path_skin_preview);

3) doesn't work
set(Im_Data_png,MUIA_Dtpic_Name, path_skin_preview);
set(Im_Data_png,MUIA_Dtpic_Name, path_skin_preview);

Go to top


Re: MUI : How to update image filename of a DTPic when running ?
Just can't stay away
Just can't stay away


Thank you Thore to your confirmation,

I don't know why but this
doesn't work like this:

set(Im_Data_png,MUIA_Dtpic_Name, path_preview);

but when I double the instruction like this

set(Im_Data_png,MUIA_Dtpic_Name, path_skin_preview);
set(Im_Data_png,MUIA_Dtpic_Name, path_skin_preview);
it doesn't work

But when I do this with a first constant filename
set(Im_Data_png,MUIA_Dtpic_Name, "PROGDIR:Skins/Empty.png");
set(Im_Data_png,MUIA_Dtpic_Name, path_preview);

it works, Im_Data_png show the right png file :)

Of course, path_preview contains always the correct path of the png.




Go to top


[SOLVED] MUI : How to update image filename of a DTPic when running ?
Just can't stay away
Just can't stay away


Hi,
With MUI, I have a problem with DTPic.
I want to change the DTPic file when user press a element of a list.
It works at init time.
It works when the first element is selected (the DTpic loads well the file)
But it doesn't work when a new element is selected.

At init, I use
Child, Im_Data_png = DtpicObject, MUIA_Dtpic_Name, "PROGDIR:NoPreview.PNG", End,

In my code, when I select an element,

set(Im_Data_png,MUIA_Dtpic_Name, path_preview);

the DTPic load just the image for the first time and never updated it at subsequents attempts.

I find a related question :
http://amigans.net/index.php?function=viewcomments&threadid=124

Is it implemented in MUI39 ?

If not, is somebody know a other (simple if possible) method ?

Thank you by advance
zzd10h


Edited by zzd10h on 2013/3/11 20:22:09
Go to top


Re: Dir Me Up
Just can't stay away
Just can't stay away


Strange, for me it's OK since the last release.
.
Yes, first version had problem with double-click.
But now, no more problem for me, even on NAS volumes.


Go to top


Re: suppress frozen task
Just can't stay away
Just can't stay away


...


Edited by zzd10h on 2013/3/10 23:36:23
Edited by zzd10h on 2013/3/10 23:36:56
Go to top


Re: *Urgent* Need help for audio datatype.
Just can't stay away
Just can't stay away


If you want to use the datatype_sound_signal on upload queue of OS4Depot.
Please use the datatype_sound_signal____1____.lha.
Because I reuploaded it few minutes ago, it had a bug (thank Thomas Rapp for the resolution).

Nevertheless, AmiDark still shows this source on french site amiga-ng.org and it was not OK for him.

I'm interrested too by your AHI samples, impatient to read this in the wiki !

Go to top


Re: Context Menus and argument to WB command ?
Just can't stay away
Just can't stay away


Thank Context for the explanation and for the future fix.

At least, I don't have to continue to search ;)

I'll watch AmiUpdate often...

(thank for your work on ContextMenus, very useful)

Go to top


Re: Context Menus and argument to WB command ?
Just can't stay away
Just can't stay away


I test the same program from sobjs: (I just add arg[0], no "\n" because with it I just see 3 lines in the debug "console")

1) from sobjs :
http://zzd10h.amiga-ng.org/FastCopy/FastCopy_CLI_Problem.jpg
the first set of 6 files works great
the second set of 6 files is not OK
=> maybe not a number of files problem as I thought initialy

2) from RAM:
http://zzd10h.amiga-ng.org/FastCopy/F ... py_CLI_Length_Problem.jpg
with just 2 set of 2 files
the first set works
the second with very long file names doesn't work

Strange, no ? A name length problem ?

If you have time, I put the program, the source and makefile here :

http://zzd10h.amiga-ng.org/FastCopy/FastCopy.lha

Could you try by adding in your contextualmenu.cfg the following line ?

Multiple,>FastCopy
Multiple,To RAM:,CLI,Work:Dev/FastCopy/FastCopy DEST RAM: FILES %A
Multiple,>FastCopy

and by selecting a lot of files (or a long filenames) ?

Thank by advance :)


Go to top


Re: Context Menus and argument to WB command ?
Just can't stay away
Just can't stay away


I don't know if I understand well but I have just 1 copy of my prog.
The files that I select are just files like .o .debug and copy of .o and .debug.
There are not my program himself.

And I obtain the 2 debugs log with just 1 run (one click in the contextual menu)

My goal is to select multiple files...

Concretely, I select multiple files in workbench (files that you see selected in the previous grab) and I right click to launch the prog FastCopy who might list me all the files in 1 time.

With the same files minus the last one, it works.
With the 5 files selected, it runs twice.

Yes, I remove the argc[0] because the program name was useless for me.

will add the \n tomorrow, you are right, it will be more easy to read.

Thank you Broadblues, to take in consideration my problem, nice ;)

Go to top


Re: Context Menus and argument to WB command ?
Just can't stay away
Just can't stay away



Just tried with CLI type with %A option (for all files including .info) but I really have a problem when more than 4 files are selected.

With 4 files or less, my program is fired just one time
With 5 files, my program is fired twice (???)

I put this in my ContextMenus.cfg
Multiple,To RAM:,CLI,Work:Dev/FastCopy/FastCopy RAM: %A

My program just do

int main(int argc,char **argv)
{
int i = 1;
printf("Run from CLI, %d args.\n",argc);

for (i = 1; i < argc ; i++)
{
printf("%s ",argv[i]);
}
}

and with more than 4 files I obtain 2 running instances of my program.

http://zzd10h.amiga-ng.org/FastCopy/ContextMenu_CLI_KO.jpg

With WB type, I have all my files in just one instance (great!), unfortunately I can't pass a argument by command line...

Is somebody could spot my mistake, please ?

Thank by advance.

Go to top


Re: Context Menus and argument to WB command ?
Just can't stay away
Just can't stay away


Thank you Broadblues,
I read the doc before to ask and in fact find just the way to do for CLI.

I had tried CLI (with standard argv array) but my program ran 1 time for each files, but just 1 time for all files with WB type (what I wanted)

I have to review my program to make CLI compatible...

Thank again :)

Go to top


Context Menus and argument to WB command ?
Just can't stay away
Just can't stay away


Hi,
I would like to pass arguments to a Workbench program inside the ContextMenus.cfg but I don't succeed to make it working.

For example,
I try in my ContextMenus.cfg

Multiple,To RAM:,WB,Work:Dev/FastCopy/FastCopy RAM:

to pass the argument "RAM:" to the WB program FastCopy but nothing happes.

When I code

Multiple,To RAM:,WB,Work:Dev/FastCopy/FastCopy,RAM:

The program launch but I just have the selected files in the WBargs and not the "RAM:" parameter.

Is it possible to pass a arbitrary argument to a wb program and to make it inside the ContextMenus.cfg ?

Thank by advance for your kind help

Go to top


Re: Post-Update 6 updates
Just can't stay away
Just can't stay away


Same problem than you on my x1000,
No rollback.

The 20th of january :
rollback list empty and the newest directory in the rollback drawer was 6th january

I had reinstalled amiupdate from codebench website and all rollback was reappared.

But since... rollback list is blocked at the 20th january

Go to top


Re: Frogatto ALPHA is Open
Just can't stay away
Just can't stay away


Run very nice on my x1000 - Radeon 9250.

Great gameplay, sound and graphics (with native Warp3D)

Is someone tried it with Wazp3D ?

As usual, good work HunoPPC !
Many thanks.

Go to top


Re: AmiCygnix V1.3 released
Just can't stay away
Just can't stay away



Thanks to KL, I find my problem with Gimp Standalone script
I have just removed the PROGARGS value

;Set PROGARGS "--geometry=${DEF_WINWIDTH}x${DEF_WINHEIGHT}+0+0"
Set PROGARGS " "

Strange, before it worked and it works like that for AbiWord (presently).

At least, all is working now !!!

http://zzd10h.amiga-ng.org/Divers/AmiCygnix_Standalone_OK.jpg


Go to top


Re: AmiCygnix V1.3 released
Just can't stay away
Just can't stay away


Thank you to have resolved the Dead keys problem. Very nice.

And I hope that you will find a solution for my new problem of standalone scripts who don't find, since this update, the X server.

Go to top


Re: How to use Alpha layer for Docky ?
Just can't stay away
Just can't stay away


It works, great !

Go to top



TopTop
« 1 ... 64 65 66 (67) 68 69 70 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project