A Flash Developer Resource Site

Search:

Type: Posts; User: CJElven

Page 1 of 12 1 2 3 4

Search: Search took 0.07 seconds.

  1. Thread: AS3.0 and 508

    by CJElven
    Replies
    12
    Views
    5,009

    I've read that and, unfortunately, that blurb...

    I've read that and, unfortunately, that blurb amounts to nothing. All that blurb says is that it's just as compatible as versions 8 & 9. Technically, it's easier to assign the 508-compatible...
  2. Thread: AS3.0 and 508

    by CJElven
    Replies
    12
    Views
    5,009

    Well, that's what I'm trying to determine. If...

    Well, that's what I'm trying to determine. If you're asking "Is there a way to tell the screenreader, directly, to read?", then the answer is "No." This is a failing of Microsoft at the moment, as...
  3. Thread: AS3.0 and 508

    by CJElven
    Replies
    12
    Views
    5,009

    Setting stage.focus DOES work. However, it no...

    Setting stage.focus DOES work. However, it no longer causes the screenreader to activate and read the newly-focused object automatically. I'm not having trouble setting focus to the object, though.
  4. Thread: AS3.0 and 508

    by CJElven
    Replies
    12
    Views
    5,009

    AS3.0 and 508

    Creating a 508-compatible site is not the easiest thing to do. As of late, however, it IS a task with which my company has been saddled more frequently. Some customers demand an AS 2.0 solution,...
  5. I'm assuming that you're not telling the base...

    I'm assuming that you're not telling the base movie to stop 10,000,000 times, right (since that would be a bit pointless)? You're actually stopping 10,000,000 movies, or doing something else with...
  6. Replies
    3
    Views
    856

    Whoops. I meant gunShot.start(); Sorry about...

    Whoops. I meant gunShot.start(); Sorry about that.
  7. Where is the name variable supposed to be coming...

    Where is the name variable supposed to be coming from? XML? TXT? JS? HTML? The code itself to insert a variable name into something like that is pretty easy. But where is that variable coming...
  8. Replies
    3
    Views
    856

    If this sound is being loaded from your library,...

    If this sound is being loaded from your library, then it needs to look like this:



    on (release){
    var gunShot:Sound = new Sound(this);
    gunShot.attachSound ("gunshot"); //this is the...
  9. Replies
    0
    Views
    464

    [CS3] Tabbing Issue

    I'm building a 508-accessible site for a client (It's training, actually, but whatever), and I'm having some trouble with tabbing. I have no problems with reading order, keyboard shortcuts, or...
  10. Thread: tabIndex list?

    by CJElven
    Replies
    1
    Views
    670

    tabIndex list?

    Is there any way to list all items that are written to the tabIndex? I have a controller movie that loads in several different SWFs that SHOULD all be correctly indexed, but I'm not able to easily...
  11. Replies
    2
    Views
    495

    Sorry about bringing this back. I was searching...

    Sorry about bringing this back. I was searching for something specific, and didn't notice the date attached.
  12. Replies
    2
    Views
    495

    Place myTween2.onMotionFinished INSIDE the braces...

    Place myTween2.onMotionFinished INSIDE the braces for myTween.onMotionFinished. So it looks like this:


    myTween.onMotionFinished = function () {
    var myTween2 = new mx.transitions.Tween (boxmc,...
  13. Replies
    2
    Views
    1,052

    I would have thought that it would have a...

    I would have thought that it would have a reference as well, but what it seems to do is either A) Spit out a compiler error (CS3) while stating that no such property exists, or B) It compiles...
  14. Replies
    2
    Views
    1,052

    Quick class question

    When writing an external class, is there a way to ALWAYS refer to the class? The circumstances that I'm referring to are when you use something like MovieClipLoader, or similar. Right now, for...
  15. Replies
    4
    Views
    1,053

    I tried that before, but kept calling...

    I tried that before, but kept calling onLoadComplete, instead of onLoadInit. My mistake. Thanks for your help!
  16. Replies
    4
    Views
    1,053

    That's the real trouble. Whenever I go to read...

    That's the real trouble. Whenever I go to read the _width and _height of the MC, it reads as 0. I'm waiting until the image is fully loaded, too, so I'm a little confused.
  17. Replies
    4
    Views
    1,053

    Can't read size of imported images?

    Did I miss something here, or am I unable to read the size of images that I import? I'm using a fairly standard


    var myImage:MovieClip = this.createEmptyMovieClip("myImage",...
  18. Replies
    0
    Views
    557

    BitmapData trouble with multi MCs

    I have a parent movie that imports two (or more) external SWF files, assigns them names (Movie1, Movie2, and Movie3 for our purposes), and then runs them in sequence. This basically takes the place...
  19. What, exactly, do you mean by "it starts to gain...

    What, exactly, do you mean by "it starts to gain and lose time"? Are you trying to reuse this over and over, and it seems to change when 25 seconds is? Anyway, if you have an animation that you...
  20. Replies
    1
    Views
    1,005

    Problem passing from HTML to Flash

    I've read posts on how to do it. I've read posts on how to do it differently than the first posts. But I can't get it to work! This is obviously a big problem!

    What am I talking about? Passing...
  21. Replies
    1
    Views
    385

    I am having this exact same trouble. At least, I...

    I am having this exact same trouble. At least, I can't seem to get it to work in IE. It still seems to work in Firefox. Any ideas?
  22. Replies
    0
    Views
    377

    Print troubles (F8-CS3)

    I have the following code:

    function printMe () {
    textMov.setMask (null);
    var myPJ:PrintJob = new PrintJob ();
    if (myPJ.start ()) {
    if (myPJ.addPage ("printMov")) {
    pageCount++;
    }...
  23. I'm having similar trouble. But I can't get JAWS...

    I'm having similar trouble. But I can't get JAWS to read the answer even when I click. What are you using Accessibility.updateProperties() for? Does this cause the screen reader to basically "see"...
  24. Replies
    0
    Views
    370

    [F8] Reading keyframes?

    I haven't been able to do this yet, but that doesn't mean I can't...so I'll ask here. Is there a way for a movie to read if there's been a keyframe in the timeline?

    I have several images that I...
  25. Replies
    0
    Views
    325

    Quick question about scale9Grid

    Is it possible to use scale9Grid properties on a dynamically assigned mask? I can't seem to get it to work. And if I CAN use it...why isn't it working?

    The scale9Grid property DOES work if...
Results 1 to 25 of 298
Page 1 of 12 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center