Remove the black fading at start

svintaj

  • Posts: 353
Hi! Is it possible to remove the fading from black at the start of a game?
I can't find the settings for that? Thanks in advance!

svintaj

  • Posts: 353
Is it impossible?

Hectate

  • *
  • Posts: 4643
It might be hardcoded, I dont think anyone knows for sure...
:
:
Patience is a Virtue,
But Haste is my Life.
Proud member of the League of Idiotic Stencylers; doing things in Stencyl that probably shouldn't be done.

tgbtom

  • Posts: 127
I dont think you can.
________________,.-*'Renewal'*-.,________________
http://community.stencyl.com/index.php/topic,10615.0.html

http://renewalthegame.blogspot.ca/
------------------------'*-.,Renewal,.-*'------------------------

Hectate

  • *
  • Posts: 4643
I believe it's possible to change the color of scene transitions if you utilize the code and type in the appropriate hex for your desired color as one of the parameters. But the initial fade is not modifiable AFAIK. This would be a good suggestion.
:
:
Patience is a Virtue,
But Haste is my Life.
Proud member of the League of Idiotic Stencylers; doing things in Stencyl that probably shouldn't be done.

svintaj

  • Posts: 353
Ok I see, that's pity.  :'(
Thanks for your help anyway!

JensWinterstein

  • *
  • Posts: 432
You could workaround this by making your entrance Scene just plain black, wait a second and then transition to your normal Menu/Startscreen-whatever over 0 sec.
Get 100 Chambers for Android / iOS
Get Cubus Velox for Android / iOS or play it on Flash

- Portfolio

svintaj

  • Posts: 353
Yes, but I have a yellow HTML-site and want the FLASH-file to be an integrated part of it with the same yellow backgroundcolor. Now it always starts black and then fade in to yellow, first after that it becomes integrated to the design. I wish it could start yellow straight away.

I don't see why this couldn't be coded.

captaincomic

  • *
  • Posts: 6108
Maybe it helps if you set/change the bgcolor param of the object tag in the embedding html page. E.g.
Code: [Select]
      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="780" height="420">
        <param name="movie" value="myContent.swf" />
        <param name="bgcolor" value="#FFFF00" />
        <!--[if !IE]>-->
        <object type="application/x-shockwave-flash" data="myContent.swf" width="780" height="420">
        <param name="bgcolor" value="#FFFF00" />
        <!--<![endif]-->
          <p>Alternative content</p>
        <!--[if !IE]>-->
        </object>
        <!--<![endif]-->
      </object>

svintaj

  • Posts: 353
Thanks for the suggestion, so I just tried it, but then it first turned yellow, then black again to fade in the start-scene. So it's still a black fade... :-\

captaincomic

  • *
  • Posts: 6108
Hm, I guess then there's nothing you can do, except for begging the Stencyl team to make the fade color customizable in a future version...

Hm, I guess then there's nothing you can do, except for begging the Stencyl team to make the fade color customizable in a future version...
I beg as well.