A Flash Developer Resource Site

Search:

Type: Posts; User: headgonenumb

Page 1 of 10 1 2 3 4

Search: Search took 0.10 seconds.

  1. hanging indents in dynamic textfields

    I'm trying to make it possible to change the formatting of a dynamic textField to hanging indents using textFormat.

    I figured that the easiest way is to set indent to a negative number and then...
  2. Hi I'm trying to load variables from a...

    Hi

    I'm trying to load variables from a .asp-file on a different server than the one my flashfiles are on.

    Am I right in assuming that for this to work I need to have a script on the...
  3. Replies
    3
    Views
    963

    Direct-L is probably the biggest community of...

    Direct-L is probably the biggest community of director-developers : here's the searchable digest http://www.mcli.dist.maricopa.edu/director/digest/index.html

    h
  4. Replies
    2
    Views
    517

    Just what I needed, thanks a lot!

    Just what I needed, thanks a lot!
  5. Replies
    2
    Views
    483

    If you're using MX it's actually as easy as...

    If you're using MX it's actually as easy as making an empty movieclip as a placeholder(instancename f.ex. 'myImage'), placing it where you'd like the top left corner of the loaded image to be and...
  6. Replies
    2
    Views
    517

    I'm looking for a way to retrieve all the...

    I'm looking for a way to retrieve all the properties of an object, not necessarily knowing what the properties are called.
    Something like a 'getpropertylist'-function.

    Anybody know how I can do...
  7. I'm just starting my first major xml-based...

    I'm just starting my first major xml-based project, and I'm wondering about this.

    Intuitively it feels easier to me to access the data if I parse the XML and put the info into objects/arrays to...
  8. Have a look here:...

    Have a look here:
    http://www.macromedia.com/support/shockwave/info/licensing/
  9. Replies
    7
    Views
    516

    I've been looking for a solution to the same...

    I've been looking for a solution to the same problem, so I'm wondering :

    martsch : did you have any luck finding a tool to do this?

    keyone.it : from what I've understood in the past (flash5)...
  10. Thread: hello

    by headgonenumb
    Replies
    7
    Views
    1,856

    Well the basic idea is that something like...

    Well the basic idea is that something like
    myvariable=<FONT FACE='Arial'>the text I want to show</FONT>
    can be used.

    If you have the text to display and keep the fontinfo in a variable you can...
  11. Thread: hello

    by headgonenumb
    Replies
    7
    Views
    1,856

    I think you can change the font if you use...

    I think you can change the font if you use html-formatted text. Just make a function to replace the 'Font face'-tag.
    If I remember correctly you have to embed the font you're going to change to, or...
  12. Don't know if there's a simpler solution to this,...

    Don't know if there's a simpler solution to this, there probably is.

    But this works:

    a="pos";
    a1=ball;
    a2=200;
    a3=100;
    eval(a)(a1,a2,a3);
    //or: this[a](a1,a2,a3);
  13. Replies
    2
    Views
    422

    Haven't tested this, but you can try: tmp =...

    Haven't tested this, but you can try:

    tmp = eval("_parent.TheGrid." + thecell + "." + source);
    blar=tmp.lblarray[x];

    might work,
    HC
  14. Quoted from:...

    Quoted from:
    http://www.macromedia.com/support/flash/ts/documents/attachsound.htm

    Issue
    Sound.attachSound does not work with shared sounds

    Reason
    The attachSound method takes as a parameter...
  15. If the identifier-name is for instance...

    If the identifier-name is for instance "soundVar1" it should be written as a string in the attachSound statement.

    If you got this to work without the random-script, adding that shouldn't be too...
  16. I don't really know why, but I think that adding...

    I don't really know why, but I think that adding the statement 'void(0)' to the getURL-call will solve the problem.

    getURL("javascript:someFunction();void(0);");

    regards,
    HC
  17. If soundvar is a string and not a variable this...

    If soundvar is a string and not a variable this should work:

    s = new Sound();
    s.attachSound("soundVar"+(1+random(7)));
    s.start();

    Note: random(7) will give results from 0 to 6 and not from...
  18. Replies
    15
    Views
    1,219

    First of all, I agree 100% with julianj. ...

    First of all, I agree 100% with julianj.

    People are spending their time trying to help you here, and sounding somewhat aggressive doesn't give the impression that you're grateful for that.
    ...
  19. Replies
    7
    Views
    747

    As far as I know you can't do it directly. The...

    As far as I know you can't do it directly.

    The best way I've come up with is to hardcode the duration of the sound and use a timer to decide if the sound is still playing.

    something like:
    if...
  20. Replies
    1
    Views
    1,501

    You can't get the current label directly. You...

    You can't get the current label directly.

    You can use the javascript method TCurrentLabel and FScommand to achieve the same....
  21. Replies
    24
    Views
    1,967

    There's another way (PC-only, I believe); have a...

    There's another way (PC-only, I believe); have a look here:
    http://www.were-here.com/forums/showthread.php?threadid=43302

    hc
  22. Replies
    1
    Views
    422

    Something like newnumber=Math.round(x*100)/100;...

    Something like
    newnumber=Math.round(x*100)/100;
    should work.
  23. Very nice. I didn't know that was even possible....

    Very nice. I didn't know that was even possible.

    Do you know if it's possible to change the height of the box as well?

    hc
  24. Replies
    3
    Views
    554

    The basic idea I had was that the txt-file should...

    The basic idea I had was that the txt-file should refresh if you load it with a random variable.
    This should make your browser believe that it is a new file (becauseand reload it properly.
    Adding...
  25. Try _root.line.group[CLIPNAME] or ...

    Try
    _root.line.group[CLIPNAME]
    or
    eval("_root.line.group." + CLIPNAME)

    'Telltarget' took a string as the variable, but 'with' prefers a reference to an object. 'With' also accepts strings...
Results 1 to 25 of 246
Page 1 of 10 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center