A Flash Developer Resource Site

Search:

Type: Posts; User: Wisconsin

Page 1 of 5 1 2 3 4

Search: Search took 0.13 seconds.

  1. Replies
    9
    Views
    11,608

    Thanks ilike2flash, I'm trying to learn as I go....

    Thanks ilike2flash,
    I'm trying to learn as I go. I'm trying to create an online worksheet for my students that will post to a SQL database when the students take it. I already had the file done...
  2. Replies
    9
    Views
    11,608

    I can do something like this but it isn't dynamic...

    I can do something like this but it isn't dynamic and I know there's a better way. I'd appreciate any help.


    var arr:Array = new Array();
    var p1:Array = new Array();
    var p2:Array = new...
  3. Replies
    9
    Views
    11,608

    Thanks ilike2flash, you're a great help. How...

    Thanks ilike2flash, you're a great help.

    How can I name the arrays in the loop so I get a nested array like this?


    myNestedArray=(p1,p2,p3,p4 etc)

    so I can reference the nested array ...
  4. Replies
    9
    Views
    11,608

    Thanks ilike2, It worked perfectly. If I...

    Thanks ilike2,
    It worked perfectly.

    If I have a varying number of questions in the xml, what is the best way to push the info into individual arrays?


    <WORKSHEET>
    <QUESTION>...
  5. Replies
    9
    Views
    11,608

    AS3 How to parse xml into an array

    I can load the xml, but I'm having trouble parsing it.


    var myXML:XML;
    var myLoader:URLLoader = new URLLoader();
    myLoader.load(new URLRequest("fillinblank.xml"));...
  6. Replies
    1
    Views
    2,601

    How to trap all keys

    I have a quiz projector file in full screen. I want to prevent students from using keyboard shortcuts like alt+tab or the win key. I tried...


    fscommand("trapallkeys", "true");

    but it...
  7. Replies
    2
    Views
    550

    I'm still hoping someone will point me in the...

    I'm still hoping someone will point me in the right direction. :)
  8. Replies
    2
    Views
    550

    Any help, advice, suggestions would be greatly...

    Any help, advice, suggestions would be greatly appreciated. Thanks.
  9. Replies
    2
    Views
    550

    IOError to catch a canceled print job

    I want to make some buttons invisible until the print job is done. So I have simply set the alpha to 0 when the print button is clicked. At the end of the printjob I want the exit button to be...
  10. Replies
    2
    Views
    387

    That solved my problem. Such an easy fix! ...

    That solved my problem. Such an easy fix! THANKS! You have helped me on several occasions and I can't thank you enough.
  11. Replies
    2
    Views
    387

    [RESOLVED] Textfield issues

    I create a textfield in a MC....


    var feedback_txt:TextField= new TextField();
    feedback_txt.type=TextFieldType.DYNAMIC;
    feedback_txt.x=firstPart+5;
    feedback_txt.y=45;...
  12. Replies
    3
    Views
    713

    Your advice was hugely helpful. I came up with...

    Your advice was hugely helpful. I came up with this and now every issue is solved and everything is working great. THANKS!!


    //preloader
    loaderInfo.addEventListener(ProgressEvent.PROGRESS,...
  13. Replies
    3
    Views
    713

    Anyone have any advice? Thanks

    Anyone have any advice? Thanks
  14. Replies
    3
    Views
    713

    [RESOLVED] CS4 preloader issue

    I have this code on the first frame of the main timeline.


    //preloader
    loaderInfo.addEventListener(ProgressEvent.PROGRESS, updatePreloader);
    function updatePreloader(evtObj: ProgressEvent):void...
  15. Replies
    2
    Views
    1,787

    I found the documentation that solved my problem....

    I found the documentation that solved my problem. I needed to disable the new security settings in CS4 before using getLocal().


    Security.exactSettings=false;

    Now everything works fine.
  16. Replies
    2
    Views
    1,787

    I should mention. The above code appears on the...

    I should mention. The above code appears on the first frame of the main timeline.
  17. Replies
    2
    Views
    1,787

    [RESOLVED] AS2 SharedObject.getLocal

    I recently purchased CS4 and am trying to publish some older files with no changes to them and am having the following problem.

    I want to place a SharedObject on the local machine. The idea is...
  18. Replies
    2
    Views
    554

    I removed the listener and that solved the...

    I removed the listener and that solved the problem. Thanks once again.

    I think I know what was happening. I stopped the timer and advanced one frame where there was no timer on stage. Stopping...
  19. Replies
    2
    Views
    554

    [RESOLVED] Timer

    I have a timer on the main timeline that triggers a function during a quiz that saves variables, scores the question and brings in the next question. At the end of the quiz in test mode I get an...
  20. This is embarrassing. You were right. Thanks...

    This is embarrassing. You were right. Thanks for your help. I imported the sounds from a flash 8 library and 'export in the first frame' wasn't checked

    Thanks cancerinform for your help also.
  21. I'm sorry cancerinform, but I don't understand. ...

    I'm sorry cancerinform, but I don't understand.

    Thanks designforce for the idea. This doesn't help me though. I have 50-100 questions in a quiz. I need the sounds to match the questions. In...
  22. Thanks for your help Phix. I tried this... ...

    Thanks for your help Phix. I tried this...


    var sChannel:SoundChannel = new SoundChannel();
    var soundClass:Class=getDefinitionByName(myQuestions[0][8]) as Class;
    var file:Object = new...
  23. Replies
    5
    Views
    657

    This worked like a charm. Thanks for your...

    This worked like a charm. Thanks for your help!!! And thanks to neznein9 as well.
  24. Replies
    5
    Views
    657

    Thanks for the help. I tried this and the error...

    Thanks for the help. I tried this and the error message is gone but the code doesn't seem to work. The function downloadSuccess never triggers. I assume the syntax to my file on the server in AS3...
  25. Replies
    5
    Views
    657

    [RESOLVED] Using Load vars

    What I want to do:
    I have a flash quiz (projector file) that students can take home and practice.
    I want students to practice at home but take the quiz at school. In the past I used flash 8 and...
Results 1 to 25 of 113
Page 1 of 5 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center