A Flash Developer Resource Site

Search:

Type: Posts; User: mike6496

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. you can currently (Flash Player 9) make bullets...

    you can currently (Flash Player 9) make bullets any color and size you want, but resist the temptation..
    http://oddhammer.com/index.php/site/comments/bullets_with_color_in_flash/
  2. ASDoc is included in Flex now.. that's your...

    ASDoc is included in Flex now.. that's your best bet if you're working in ActionScript 3

    BLDoc has been abandoned I think (I've tried to register for the beta and get no response)
    AS2Doc has...
  3. Replies
    1
    Views
    675

    yes. your text should be in unicode (utf-8)...

    yes.
    your text should be in unicode (utf-8) format. Put the text in XML files and load the XML into your SWF and parse it.
    If you don't want to republish the SWF for each locale then you might...
  4. something like this.. var...

    something like this..


    var wsConn:WebServiceConnector = new WebServiceConnector();
    wsConn.addEventListener("result", res);
    wsConn.WSDLURL = " https://192.168.1.1/myServices.asmx?WSDL";...
  5. very crude, but this should get you started.. ...

    very crude, but this should get you started..

    this.onEnterFrame = function() {
    var randDirection = random(4);
    switch (randDirection) {
    case 1 :
    stuff._x += 4;
    break;
    case 2 :...
  6. Replies
    9
    Views
    897

    Yunie - like niisa said you can convert the video...

    Yunie - like niisa said you can convert the video into FLV files, upload those FLV files to the server, and then have an HTML page containing a SWF that is used for viewing those FLV files..

    OR.. ...
  7. Replies
    9
    Views
    428

    if you're just trying to swap out the image used...

    if you're just trying to swap out the image used by HTML for the background of the HTML page then that can be done via a FScommand call to JavaScript.. ?

    but.. if your whole web page (navigation)...
  8. can't pass unicode out via JavaScript getURL with NN or Firefox

    I have a FP7 SWF that has this code:

    sampleString = "你好";// hello in Chinese
    getURL("javascript:callBack('"+sampleString+"')", "_self");

    and the HTML/JavaScript has this code:
    function...
  9. Replies
    2
    Views
    380

    try something like... btnLocationX =...

    try something like...


    btnLocationX = myButton_btn._x;
    btnLocationY = myButton_btn._y;
    this.onEnterFrame = function(){
    var diffX = .3*Math.abs(this._xmouse - btnLocationX);
    var diffY =...
  10. If both the banner and the article are in the...

    If both the banner and the article are in the same SWF then it's not terribly hard. You need to use setInterval and clearInterval to set the value of _visible to show or hide the banner.

    If the...
  11. Replies
    3
    Views
    567

    oops.. just take out all that bit about...

    oops.. just take out all that bit about xDestination and yDestination.. it works fine without it. And make sure you change the if statement to
    if ((mc_contain.mc_drag._x == xcoord) &&...
  12. Replies
    3
    Views
    567

    // all of this is on the root timeline // this...

    // all of this is on the root timeline
    // this code
    // a button named gotoblahh_btn
    // a mc named mc_contain
    // inside mc_contain is a mc named mc_drag
    gotoblahh_btn.onPress = function()...
  13. Replies
    8
    Views
    753

    hmm.. have you looked into the Teleo kit from...

    hmm.. have you looked into the Teleo kit from makingthings.com? If you just want to give remote users the ability to control a single camera you might be able to rig something up using the Teleo...
  14. your text file named danish.xml saved as UTF-8...

    your text file named danish.xml saved as UTF-8 contains:
    <stuff>æ ø å</stuff>


    your FLA:
    -- contains a text field named myTextField with the font set to _sans and no characters embedded
    --...
  15. Replies
    0
    Views
    505

    Alt-Gr A for Polish text input

    I have a Polish user who needs to enter text into a Flash input text field.. and AltGr-A (right Alt key plus A)pulls up the Internet Explorer "Add to Favorites" menu. Is there a work around for...
  16. Replies
    8
    Views
    735

    If you have a button named "myButton_btn" and an...

    If you have a button named "myButton_btn"
    and an input box named "keywords_txt"

    myButton_btn.onRelease = function(){...
  17. Replies
    1
    Views
    497

    Flash 7 support?

    Is there any news on Turbine being able to publish SWFs specifically for the Flash 7 Player using ActionScript 2?

    I have a dire need for a solution that simply injects an XML string and some...
  18. I solved this sort of.. I found that I had the...

    I solved this sort of.. I found that I had the wrong username/password for the web service (the web service request contains the u/p). BUT I still couldn't get XML.sendAndLoad() working..

    I...
  19. Replies
    8
    Views
    735

    just remember to escape the value of the...

    just remember to escape the value of the "keywords" input field. If the user enters "something and something" the spaces will break the URL.. they need to be escaped to "%20"

    so if you use...
  20. Replies
    8
    Views
    735

    something like.. action = "search";...

    something like..


    action = "search";
    afID="2972";
    theURL = "http://theURL/thepage.php";

    yourButton_btn.onRelease = function(){
    var textB = escape(yourTextField.text);
    ...
  21. webserviceConnector and XML.sendAndLoad not working w/https

    ok. I'm using MX04Pro on XP trying to hit a .NET web service and am running into a ton of problems.

    If you have successfully used Flash to access a .NET web service over https PLEASE reply so...
  22. Library still not remembering position?

    I installed the update, but my Library panel still forgets where it should be.. this is a pain since I work on 3 monitors (the only way to go..) and have to open the Library panel and reposition it...
  23. Replies
    29
    Views
    3,124

    I would if I knew that all the data cached on my...

    I would if I knew that all the data cached on my system was encrypted and password protected, that the connection was SSL, and that I could easily clear all cached data if I wanted to.

    I think...
  24. Replies
    29
    Views
    3,124

    There's a screenshot of the latest Central Beta...

    There's a screenshot of the latest Central Beta online here:

    http://www.oddhammer.com/blog.htm
  25. Replies
    7
    Views
    2,403

    hey.. I think I found the answer! that...

    hey.. I think I found the answer! that northcode site had this little gem of an app: http://northcode.com/resources/utilities/fla.html

    with it I can embed the xml as a string using the...
Results 1 to 25 of 43
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center