A Flash Developer Resource Site

Search:

Type: Posts; User: jennyj

Page 1 of 20 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    8
    Views
    3,195

    The company I used to do freelance work for built...

    The company I used to do freelance work for built e-learning modules exclusively in Flash, usually for standalone applications, and produced e-learning content for some of the biggest UK companies...
  2. Replies
    2
    Views
    381

    Quick example for you, you basically just need to...

    Quick example for you, you basically just need to change your var to be declared as a string, not put "movement" as a string within your function call.
    You will need to replace the first line of...
  3. Thread: on (KillFocus)

    by jennyj
    Replies
    6
    Views
    1,371

    Hi, in the file provided, there was a movie...

    Hi,

    in the file provided, there was a movie clip called 'myText1', which contained a text field called 'my_txt'
    therefore to access the text field from the _root, the path is myText1.my_txt.
    You...
  4. Thread: on (KillFocus)

    by jennyj
    Replies
    6
    Views
    1,371

    I made a little test file for you, is this what...

    I made a little test file for you, is this what you need?
  5. Thread: on (KillFocus)

    by jennyj
    Replies
    6
    Views
    1,371

    first of all, give your text field an instance...

    first of all, give your text field an instance name, eg 'my_txt', then remove the code that you have, and put this on the frame containing the movie clip

    myText1.my_txt.onKillFocus = function(){
    ...
  6. for MX2004 and above only. On the first frame...

    for MX2004 and above only.

    On the first frame of your movie

    var my_cm:ContextMenu = new ContextMenu();
    my_cm.hideBuiltInItems();
    this.menu = my_cm;
  7. Replies
    6
    Views
    577

    Fetch is a very good FTP program for Macs, and...

    Fetch is a very good FTP program for Macs, and nice and simple to use - I even taught my mother how to use it!
    Not sure how much it costs, but not very much....

    JennyJ
  8. Replies
    1
    Views
    503

    Is the pc that this won't work on running XP SP2...

    Is the pc that this won't work on running XP SP2 ?
    If so, you will always have problems with javascript generated windows - particularly if you want them to open fullscreen
    Also, make sure you do...
  9. Replies
    1
    Views
    584

    mytextbox.border = true; mytextbox.borderColor =...

    mytextbox.border = true;
    mytextbox.borderColor = 0x00FF00;
    mytextbox.background = true;
    mytextbox.backgroundColor = 0xFF0000;


    where mytextbox is the name of your textbox

    JennyJ
  10. Replies
    0
    Views
    957

    problem with clearInterval

    I have a function that plays a sound effect randomly, every 4 to 12 seconds

    playWatercoolerNoises = function() {
    _global.PlaySFX("watercooler");
    }
    function randRange(min:Number,...
  11. have you tried trace(typeof(specialcode))...

    have you tried

    trace(typeof(specialcode))
    trace(typeof(teamCode[i]))


    JennyJ
  12. Replies
    4
    Views
    429

    my_txt.embedFonts = true; where my_txt is the...

    my_txt.embedFonts = true;

    where my_txt is the name of your text box.

    JennyJ
  13. Replies
    2
    Views
    373

    The image is saved as 'progressive', i.e. when it...

    The image is saved as 'progressive', i.e. when it starts to load, you see a blurry image, which then improves as it finishes loading. Flash will not display progressive jpegs. Resave your image as a...
  14. Replies
    2
    Views
    429

    this is asp, but I guess asp.net can do something...

    this is asp, but I guess asp.net can do something similar


    <% if Minute(Now) > 50 then %>
    'do something here - display the first add
    <%elseif Minute(Now) > 40 then %>
    'show the second ad
    <%...
  15. Thread: email problem

    by jennyj
    Replies
    1
    Views
    456

    Probably an error in your asp sendmail script,...

    Probably an error in your asp sendmail script, post the script you are using so we can see what you are doing

    JennyJ
  16. Replies
    2
    Views
    474

    tutorial on creating f5 version here...

    tutorial on creating f5 version here http://actionscript-toolbox.com/sampleslidingviewer2.php

    JennyJ
  17. Replies
    19
    Views
    865

    let x = the original price (without VAT) x *...

    let x = the original price (without VAT)

    x * 1.175 = 2.80

    therefore 2.80/1.175 = x

    x=2.38 (approx)

    JennyJ
  18. Replies
    12
    Views
    834

    UK job searches, try http://jobserve.co.uk you...

    UK job searches, try http://jobserve.co.uk you can search by area and job

    JennyJ
  19. Thread: 50" Tv

    by jennyj
    Replies
    17
    Views
    1,517

    sorry. nothing to do with the TV...... Markp:...

    sorry. nothing to do with the TV......

    Markp: cakes last up to a week, but they usually get eaten before then!
    delivery depends on the cake, and where it is being delivered to, within 50 miles of...
  20. Thread: 50" Tv

    by jennyj
    Replies
    17
    Views
    1,517

    two best recommendations - chocolate truffle...

    two best recommendations - chocolate truffle torte, a sort of chocolate and cream mousse on a nut and biscuit base, or chocolate mousse cake, chocolate sponge filled with chocolate mousse and covered...
  21. Thread: 50" Tv

    by jennyj
    Replies
    17
    Views
    1,517

    Just seen this...

    Just seen this
    http://news.bbc.co.uk/1/hi/technology/4361543.stm
    thousands of TVs sold as HDTV are not able to display HD

    Might be worth checking out

    JennyJ
  22. I haven't included any of the error checking, but...

    I haven't included any of the error checking, but how about this for the updating textbox


    textbox1_txt.onChanged=function(){
    textbox2_txt.text = textbox1_txt.text * 2;
    }


    Sample attached
  23. Replies
    2
    Views
    395

    sandbox security In flash MX2004, it is not...

    sandbox security
    In flash MX2004, it is not possible to access variables from a different domain
    see http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_14213
    for more details

    JennyJ
  24. linereturn added to dynamic textbox when loaded into parent movie

    Hi,
    I have a movie that loads text in dynamically, and then a border is drawn round the text using the following code


    setwidth = text_txt.textWidth + 10;
    setheight = text_txt.textHeight + 10;...
  25. embedFonts=true JennyJ

    embedFonts=true


    JennyJ
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center