Search found 347 matches

by sinisrus
Mon Oct 04, 2021 6:54 pm
Forum: Showcase
Topic: Pixy - Pixel editor new generation
Replies: 11
Views: 6688

Re: Pixy - Pixel editor new generation

the problem rarely occurs in me so it is difficult to identify
I will have to dismantle my code without knowing what to look for ... :shock:

crashlogs don't help me I don't understand them
by sinisrus
Sun Oct 03, 2021 10:52 pm
Forum: Showcase
Topic: Pixy - Pixel editor new generation
Replies: 11
Views: 6688

Re: Pixy - Pixel editor new generation

No i use hollywood 9 and muiroyal
by sinisrus
Sun Oct 03, 2021 4:21 pm
Forum: Showcase
Topic: Pixy - Pixel editor new generation
Replies: 11
Views: 6688

Pixy - Pixel editor new generation

Hello,

I upload on OS4depot My project Pixy Alpha version

Pixy and hollywood this crash but i don't understand why
https://amitheme.amiga-ng.org/amiga/Pixy/Crashlog.lha

Please Help me :-(((
by sinisrus
Sun Oct 03, 2021 4:11 pm
Forum: Hollywood bugs
Topic: Hollywood crash with AnimGif
Replies: 1
Views: 1369

Hollywood crash with AnimGif

Hello,

Hollywood crash with this AnimGif:
https://amitheme.amiga-ng.org/amiga/Gif-anim.gif

Code: Select all

LoadAnim(1,"Gif-anim.gif")
PlayAnim(1,0,0)

Repeat
        WaitEvent
Forever
Do you have a solution ?
by sinisrus
Wed Jul 28, 2021 4:32 pm
Forum: Hollywood bugs
Topic: Hollywood 9 with french character
Replies: 3
Views: 2178

Re: Hollywood 9 with french character

Yes i change with UTF-8 work now !

Thank you !
by sinisrus
Tue Jul 27, 2021 9:56 am
Forum: Hollywood bugs
Topic: Hollywood 9 with french character
Replies: 3
Views: 2178

Hollywood 9 with french character

Hello,

With Hollywood 9 and MUIRoyal or RapaGUI i have problem with french caractere (é, è, à, ç, ...)
With OS4 => OK
With OS3.9 (WinUAE) => KO

Not problem with Hollywood 8 and older

Have you solution ?
by sinisrus
Thu Apr 29, 2021 12:04 am
Forum: General programming
Topic: UseAlpha is removed !!
Replies: 4
Views: 3551

Re: UseAlpha is removed !!

Cool!
by sinisrus
Thu Apr 22, 2021 12:04 am
Forum: Hollywood bugs
Topic: Draw Circle() or Ellipse() not good
Replies: 10
Views: 7837

Re: Draw Circle() or Ellipse() not good

see this:

Code: Select all

@DISPLAY 1, {COLOR=#WHITE}

CreateBrush(1,20,20,#BLACK, {AlphaChannel = True, Clear=True})
  SelectBrush(1,#SELMODE_COMBO,2)
  Ellipse(#CENTER,#CENTER,4,4,#BLUE)
  EndSelect

ScaleBrush(1,"400%","400%")
DisplayBrush(1,50,50)

Repeat
        WaitEvent
Forever
by sinisrus
Wed Apr 21, 2021 12:29 am
Forum: General programming
Topic: UseAlpha is removed !!
Replies: 4
Views: 3551

UseAlpha is removed !!

Hello,

You have remove Usealpha in saveanim() i use this for my project > save Apng anim 24bits
now is broken :cry:
by sinisrus
Sat Apr 17, 2021 10:54 am
Forum: Hollywood bugs
Topic: Draw Circle() or Ellipse() not good
Replies: 10
Views: 7837

Re: Draw Circle() or Ellipse() not good

Hello, I have allways bug with ellipse() If i use ForcePathUse() the ellipse(#GREEN) > move is not good ! If i do not use ForcePathUse() the ellipse(#BLUE) not correct drawing @DISPLAY 1, {COLOR=#WHITE} BeginDoubleBuffer(True) K=10 Function Move() Cls(#WHITE) ForcePathUse(True) BOX(50,50,10,K,#RED) ...