A Flash Developer Resource Site

Search:

Type: Posts; User: samtom

Page 1 of 4 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    0
    Views
    351

    Required Multimedia Programmers

    Hi All,

    We are looking for "Multimedia Programmer" to work for our Fortune 500 clients at Maximize Learning.

    As a Multimedia Programmer, you will:

    Program high-end multimedia elements as...
  2. Replies
    1
    Views
    490

    Multilanguage support

    Hi All,

    I am facing a problem in Localization. I want to display Simplified Chinese language characters in flash. This data is kept in XML files with UTF-8 as encoding format. The data is loaded...
  3. Thread: 2 raised to 56

    by samtom
    Replies
    3
    Views
    562

    my dear flashgurus(?) i want to display 2 to...

    my dear flashgurus(?)


    i want to display 2 to the power 56 (56 as a superscript)

    if the text is static then there is an option of super/sub script but here the text is dynamic. so no use of...
  4. Thread: 2 raised to 56

    by samtom
    Replies
    3
    Views
    562

    pls help me in displaying the text : 2 raised...

    pls help me in displaying the text :

    2 raised to 56

    this text is supposed to be displayed dynamically and not static


    samtom
  5. Thread: dynamic text

    by samtom
    Replies
    3
    Views
    430

    i tried using html but i think 5 doesn't support...

    i tried using html but i think 5 doesn't support sub or sup tags

    samtom
  6. Thread: dynamic text

    by samtom
    Replies
    3
    Views
    430

    hi all, i want to display 2 to the power of 56...

    hi all,

    i want to display 2 to the power of 56 i.e. 2 raised to 56.
    if i use static text then i can use super/sub script options. but i am using dynamic text.

    can anybody help me in...
  7. Replies
    2
    Views
    491

    my flash file is not reading the variable from...

    my flash file is not reading the variable from html through javascipt in netscape. i have used the SetVariable function.
    it is working fine in ie.

    is there any problem with the javascript...
  8. Replies
    7
    Views
    738

    its not taking the square brackets. what i mean...

    its not taking the square brackets.
    what i mean to say is :
    assign the varibale 'no' the value of the noArray element.

    samtom.
  9. Replies
    7
    Views
    738

    try this : replace : no=noArray with ...

    try this :

    replace :
    no=noArray

    with
    no=noArray[i]

    samtom.
  10. Replies
    7
    Views
    738

    try this : // make an array of 50 nos to pass...

    try this :

    // make an array of 50 nos to pass through the function say :
    noArray = new Array(23, 48, 20, 33, 1, 24, 29, 45, 4, 10, 42,.......);

    // a loop which will call the function
    for...
  11. Replies
    3
    Views
    571

    try this : on (press) { startDrag (this,...

    try this :
    on (press) {
    startDrag (this, true);
    }
    on (release) {
    stopDrag ();
    if (getProperty(this, _droptarget) eq "/circle") {
    _root.complete.gotoAndPlay(2);
    }
    }
  12. Thread: Timing

    by samtom
    Replies
    3
    Views
    434

    try this : 1.play a timer movieclip which will...

    try this :

    1.play a timer movieclip which will count 3 seconds.
    2.after 3 seconds, play the lightning movieclip and stop the timer.
    3.if the lightning movieclip is played completely , repeat the...
  13. Replies
    2
    Views
    1,900

    //code on the movieclip onClipEvent (mouseMove)...

    //code on the movieclip
    onClipEvent (mouseMove) {
    if (this.hitTest(_root._xmouse, _root._ymouse)) {
    out = false;
    if (over == false) {
    over = true;
    trace ("rollover");
    // play a...
  14. Replies
    2
    Views
    364

    use : eval("box"+i) = arrayOutput; instead of...

    use : eval("box"+i) = arrayOutput;

    instead of : ["box"+i] = arrayOutput;
  15. Thread: control a MC

    by samtom
    Replies
    2
    Views
    395

    please elaborate the pblm samtom

    please elaborate the pblm

    samtom
  16. Thread: tricky one....

    by samtom
    Replies
    10
    Views
    827

    try this : i have two movieclips with buttons...

    try this :

    i have two movieclips with buttons inside them.

    //code on load event : variable 'textfield' is assigned name of the scene
    //movieclip1 :
    onClipEvent (load) {
    textfield =...
  17. Thread: tricky one....

    by samtom
    Replies
    10
    Views
    827

    try this : //code on button which is inside a...

    try this :

    //code on button which is inside a movieclip

    on(realese){
    //call to the function which is on maintimeline
    _parent.fnGoToScene(textfield)
    }
  18. Thread: tricky one....

    by samtom
    Replies
    10
    Views
    827

    could you please tell me that your only problem...

    could you please tell me that your only problem is :

    to go to a certain scene say "about" on click of a button which is inside a movieclip.

    please correct me if i am going wrong.

    samtom.
  19. Replies
    2
    Views
    388

    hi, it's working fine at my end. pls check...

    hi,

    it's working fine at my end. pls check again.

    samtom.
  20. Replies
    5
    Views
    485

    hi, check with this : setProperty...

    hi,

    check with this :

    setProperty ("_level"+n+"."+pos, _y, 100);

    or

    eval("_level"+n+"."+pos)._y = 100;
  21. Replies
    5
    Views
    434

    hi, check with this altenative: take the...

    hi,

    check with this altenative:

    take the movieclip with the text box in it which can hold the biggest word u have i.e. with maximum characters in it.

    then duplicate the movieclip and adjust...
  22. Thread: changeCursor

    by samtom
    Replies
    1
    Views
    405

    hi, hide the cusor and drag the movieclip...

    hi,

    hide the cusor and drag the movieclip which will act as a custom cursor

    e.g. if u have a movieclip say "arrow" then :

    Mouse.hide();
    startDrag ("arrow", true);
  23. Replies
    2
    Views
    420

    hi, you can try this: write a function on...

    hi,

    you can try this:

    write a function on the main timeline : toNextScene()
    which navigates to the next scene.

    function toNextScene () {
    gotoAndStop ("Scene 2", 1);
    }
  24. Thread: simple one

    by samtom
    Replies
    1
    Views
    431

    check with this : on (press) { // code on...

    check with this :

    on (press) {
    // code on up button
    move(1);
    }
    on (press) {
    // code on down button
    move(-1);
    }
  25. Replies
    5
    Views
    488

    check with this : monthArray = new...

    check with this :

    monthArray = new Array("Jan","Feb","Mar","Apr","May","Jun");
    delete_array_element("Feb");

    function delete_array_element (delete_element) {
    for (i=0; i<monthArray.length;...
Results 1 to 25 of 79
Page 1 of 4 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center