ActiveDen

Tiles 15-Pack

  • Has been a member for 4-5 years
kage says

cool

4 years ago
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
  • United States
dantehicks says
Purchased

nice bg’s… question though… in the help file, where exactly do I put that code so that the bg tiles? thanks!

4 years ago
  • Has been a member for 4-5 years
  • Exclusive Author
  • Sold between 5 000 and 10 000 dollars
  • Bought between 10 and 49 items
  • United States
  • Referred between 50 and 99 users
fisch79 says
Author

Place it in the first frame because we want to fill the bg first …and add fillBG(); to run the function.

4 years ago
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
  • United States
dantehicks says
Purchased

hmm… I think I’m doin something wrong… this is the file I’m using:

http://activeden.net/item/design-studio-template-01-xml/4442

I’m trying to add the tiled bg to the area enveloping the content and when I place the fillBG() code in the first frame, it tiles within the stage area only. I’m sure I’m just overlooking something very basic here…

4 years ago
  • Has been a member for 4-5 years
  • Exclusive Author
  • Sold between 5 000 and 10 000 dollars
  • Bought between 10 and 49 items
  • United States
  • Referred between 50 and 99 users
fisch79 says
Author

try placing it in the movie clip of the object instead of the frame. You may need to convert it to a movie clip first.

It can get tricky with other users templates… especially DS’s ;)

4 years ago
  • Has been a member for 4-5 years
  • Sold between 1 and 100 dollars
  • Bought between 50 and 99 items
bridgepin says
Purchased

I was perplexed at how to make it fill with my background. Your code didn’t work until I add this line after it.

var bg:String = “name of your tile”; fillBG(bg);

Other than that, works great!

4 years ago
  • Has been a member for 4-5 years
  • Sold between 1 and 100 dollars
  • Bought between 50 and 99 items
bridgepin says
Purchased

I’m working with full screen and I can’t get it to extend in the width. The height is fine. Any suggestions?

4 years ago
  • Has been a member for 4-5 years
  • Exclusive Author
  • Sold between 5 000 and 10 000 dollars
  • Bought between 10 and 49 items
  • United States
  • Referred between 50 and 99 users
fisch79 says
Author

bridgepin: Yes.. Sorry about that. Thanks for including that. I cant believe I didnt include that. .. for the full screen issue your having, I probably would need to see how you have it set up. Did you include any special code? You can email me via my den: http://activeden.net/user/fisch79 ... thanks.

4 years ago
  • Has been a member for 4-5 years
  • Sold between 1 and 100 dollars
  • Bought between 50 and 99 items
bridgepin says
Purchased

Hi fisch,

Sorry about the delay, the world got in the way. At any rate, here’s the workaround for the full screen I used.

import flash.display.BitmapData;

cover._x = Stage.width / 2; cover._y = Stage.height / 2;

var tile:BitmapData = BitmapData.loadBitmap(“tile0”;);

function fillBG() { this.beginBitmapFill(tile); this.moveTo(0,0); this.lineTo(Stage.width,0); this.lineTo(Stage.width,Stage.height); this.lineTo(0,Stage.height); this.lineTo(0,0); this.endFill(); }

fillBG();

var stageL:Object = new Object(); stageL.onResize = function() { fillBG(); cover._x = Stage.width / 2; cover._y = Stage.height / 2; }

4 years ago
  • Has been a member for 4-5 years
  • Sold between 1 and 100 dollars
  • Bought between 50 and 99 items
bridgepin says
Purchased

Thanks again, I love your backgrounds!!

4 years ago

by
by
by
by
by