A Flash Developer Resource Site

Results 1 to 6 of 6

Thread: 2 quite difficult ones I think

  1. #1
    Junior Member
    Join Date
    Nov 2000
    Posts
    18
    hey,

    I'm making a poll script in FLASH and PHP, so I load values into FLASH, works fine, I can get a nice graph with a variable number of bars in it, all having the right _height.

    but I've got 2 more problems.

    I have a textfield in the MC with the bar, and it doesn't show the text it has to, it doesn't even show default value!! If I make it a static textfield it shows alright, but a dynamic just seems to disappear. could it be from the attachmovie thingie? (I know masking and dynamic textfields also don't go along..)

    another (less important, but I'm curieus about it) question is the setRGB. I made it possible to change the color of the bars with actionscript, but I can't seem to load the RGB value (0xaf5879 for example) from the PHP (for the moment just a txt file, but what's the difference). Is there a way I can do this, because I'd like to implement such a feature...

    if this works out fine I promise to make a tutorial for FLASHKIT (in the holidays, I'm on exams now )

    thx in advance for reading through this ****

    VoodooChile
    (name was already taken )

  2. #2
    Senior Member
    Join Date
    Feb 2001
    Posts
    1,835
    ok,

    point 1: make sure you have embedded the font in the dynamic text field. If you are still having problems, place the text inside it's own movie clip - helps with masking and similar problems. If that still doesn't help, come back again

    point 2: the easiest way for all concerned IMHO would be to include the hex-code for the colour as a string, so text file would have:

    c0=FFFFFF&c1=FFA10A

    etc.

    Then, in Flash, you can do:

    rgbVal = parseInt(c0,16);

    to convert to valid RGB value that you can use in setRGB.

    Hope that makes sense, good luck with exams

    - n.

  3. #3
    Junior Member
    Join Date
    Nov 2000
    Posts
    18
    Originally posted by enemem
    ok,

    point 1: make sure you have embedded the font in the dynamic text field. If you are still having problems, place the text inside it's own movie clip - helps with masking and similar problems. If that still doesn't help, come back again

    point 2: the easiest way for all concerned IMHO would be to include the hex-code for the colour as a string, so text file would have:

    c0=FFFFFF&c1=FFA10A

    etc.

    Then, in Flash, you can do:

    rgbVal = parseInt(c0,16);

    to convert to valid RGB value that you can use in setRGB.

    Hope that makes sense, good luck with exams

    - n.
    thx, but ehm, I don't speak English that well, and I don't know FLASH terminology that well, what's embedding a font??
    this might be a stupid queastion after all this I think

  4. #4
    Senior Member
    Join Date
    Feb 2001
    Posts
    1,835
    no worries

    if you embed the font, the font information is included in the swf when you create it.

    In the font Palette, under 'Text Options' (where you changed the type of the textbox to 'Dynamic Text') there are some 'Embed Font' options. Just click the left-most button ([...]) to embed the complete font information.

    - n.

  5. #5
    Junior Member
    Join Date
    Nov 2000
    Posts
    18
    marvellous!! thx a zillion man, I've been trying to figure this out for 2 days (in between study work ofcourse )
    and the hex stuff also works...thx

  6. #6
    Senior Member
    Join Date
    Feb 2001
    Posts
    1,835
    cool - you are welcome!

    - n.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center