A Flash Developer Resource Site

Search:

Type: Posts; User: nitroplonker

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    387

    Thanks am new to AS3 and was missing the Null

    Thanks am new to AS3 and was missing the Null
  2. Replies
    2
    Views
    387

    Simple timer question

    Hi,

    i am using the basic timer code:



    // We need to import the utils package
    import flash.utils.*;

    // Create a new Timer object with a delay of 2000 ms(2 seconds)
  3. Replies
    0
    Views
    511

    Help with a scrolling banner

    Hi,

    I am trying to migrate some code from AS2 to AS3 for a scrolling banner, what i want it to do is basically scroll through all the items in an array until the last one reaches the top the go to...
  4. Replies
    0
    Views
    491

    BitmapData with external images

    Hi,

    I am trying to build some cool image transitions using the BitmapData class, the problem i have is that most of the tutorials and sample code i have found require the images to bae in the...
  5. Replies
    1
    Views
    381

    never mind i noticed i hadn't imported the...

    never mind i noticed i hadn't imported the bitmapdata class into the AS yet
  6. Replies
    1
    Views
    381

    creating new Bitmapdata

    What i am trying to do is to create new bitmap objects from externally loaded png's in AS2, the way i am trying to do it is to first create empty MC's loading the png's into them, then copy these...
  7. Replies
    0
    Views
    471

    [F8] bitmap transition

    Does anyone know of any really good tutorials or books on using the bitmap data class to make some really cool image transitions like shatter effects etc?
    I have been looking for a while now and...
  8. Replies
    1
    Views
    1,117

    Resizing Air Widow

    I have a problem in that i have an air app which loads in an swf, what i want is so that when the air window is maximized the swf is maximized too.

    At the moment you can see the surrounding area...
  9. Replies
    2
    Views
    904

    Thanks for that but is there a way to do it more...

    Thanks for that but is there a way to do it more dynamically, i.e for it to say start at a font size of 16 then keep reducing the font size by 1 until it fits, thereby keeping the text as large as...
  10. Replies
    2
    Views
    904

    Auto Resizing Text

    My Question is,
    how do i make it so that the text externally loaded into a text field will reduce in font size to fit the box if the length of the text is too big, I do not want the text box to...
  11. Replies
    2
    Views
    385

    No it's basically just got to access a url as...

    No it's basically just got to access a url as within the url is all the data that needs to be passed to it.
  12. Replies
    2
    Views
    385

    Accesing Url behind the scenes

    Hi
    is there a way for an swf to access a url without the user knowing, this is for tracking info, i need the swf to once it's loaded to let a url know that someone has loaded it up. The swf is...
  13. Replies
    5
    Views
    572

    This is the main block of code. what the goal is,...

    This is the main block of code. what the goal is, is to look through a really long xml file for certain id numbers, (The id number to look for are also brought in through a seperate xml file.) if it...
  14. Replies
    5
    Views
    572

    no that doesn't seem to work either. i was...

    no that doesn't seem to work either. i was thinking of using a "while" loop such as,

    while (race[i].indexOf(querys[t]) == -1){
    t++;
    break;
    }

    whichRace =...
  15. Replies
    5
    Views
    572

    looping function issue

    ok my problem is that i want this code to look to see if "race[i] includes the value of query[t]" and to apply the lower code if it is but if it's not then to increment t by 1 and to check again....
  16. Thanks for that but i couldn't get it to work for...

    Thanks for that but i couldn't get it to work for me. I have been playing and have come up with a solution for my problem, I know it's not perfect and only works for 2 names but here it is.

    var...
  17. Also great but i am still having trouble looping...

    Also great but i am still having trouble looping through the array applying this to each word.

    this is what i have got.

    var cut:Array = team[teamBet].split(" ");

    for(i=0;i<cut.length;i++){...
  18. Thanks for that it works great. Also is there a...

    Thanks for that it works great.
    Also is there a way of correctly displaying it such as with the first letter as a capital and the rest lower case?
  19. Setting letter Case through Actionscript

    The problem i have is that i am pulling in some text dynamically through a large xml file, the text isn't uniformed in the xml file though with some of it all in capitals while others are all...
  20. Replies
    1
    Views
    873

    [F8] looping

    What i am trying to do is create a preloader in which the letters spelling "loaded" drop in as it loads. The way i was thinking to do it was to have a bar off screen sliding along and as it goes...
  21. Replies
    0
    Views
    388

    [F8] Color fill a dynamic PNG

    I am creating a banner which dynamically loads a png image through xml, no problem yet. The question i have is,

    Is there a way to color fill the loaded image?
    for example i have an png of a man...
  22. Give this a try, just add an else statement after...

    Give this a try, just add an else statement after your code like i have done below.

    function nextImage() {

    if (p<(total-1)) {

    p++;
    if (loaded == filesize) {

    picture._alpha = 0;
  23. Replies
    0
    Views
    409

    [F8] Looping scrolling banner

    I have created a scrolling flash banner which brings in the images dynamically, The problem i am having is to get the banner to loop smoothly. My code is:

    function loadXML(loaded) {

    if...
  24. So is all you want to do is to stop the fade in...

    So is all you want to do is to stop the fade in transitions?

    if you just delete the lines "picture._alpha = 0;" this will stop it. if you want to tidy up your code and want to get rid of the fade...
  25. Replies
    1
    Views
    358

    Sending data from flash

    I have an swf which pulls in a URL string of information gets 2 numbers (a current amount and the previous amount) and counts from the lowest to the highest. When it reaches the higher amount it...
Results 1 to 25 of 26
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center