Search results

  1. R

    How do I Incorporate an ASP.NET shopping cart into an HTML website?

    you can connect any html page to any .aspx page and vice versa but you need to have the pages on a server that has the .net framework enabled, check with your isp if it has the .net framework...theres usually an extra charge to have as part of your package
  2. R

    import classes in flash?

    heres the corrected code var back:Sprite = new Sprite(); back.graphics.beginFill(0x000000); back.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight); addChild(back); line 1 creates the var back from the class Sprite(), the colon means derived from the class. The bg should be back...
  3. R

    about motion guide in flash mx 2004..?

    There are 2 ways to change its colour but only one way to shape tween. but there is a basic problem in what you are being asked to do. flash wont allow a motion tween and a shape tween on the same object on the same layer, you either shape or motion, not both at least not on the same layer. so...
  4. R

    about motion guide in flash mx 2004..?

    There are 2 ways to change its colour but only one way to shape tween. but there is a basic problem in what you are being asked to do. flash wont allow a motion tween and a shape tween on the same object on the same layer, you either shape or motion, not both at least not on the same layer. so...
  5. R

    photoshop question - making a faded background for website - its inconsistent!?

    have you clicked the text that says gradient overlay to get to the gradien controls, from there you can click the gradient marker on the far right and make it transparent. Or why not use the gradient tool and then you have total control over the direction of the gradient.
  6. R

    Easy photoshop question... how do I delete the selection after using the magic...

    press the del button then control d to get rid of the marching ants selection.
  7. R

    Flash Actionscript - How to move an object using the "a, w, s, d" keys?

    A= 65 s= 83 w= 87 d= 68 use it like this if(Key.isDown(66)){ this._x=+10 } heres some code for you to get all the ascii codes: draw a text box on stage, set it to input text and then in the first frame put this ation script: var keyListener:Object = new Object(); keyListener.onKeyDown...
  8. R

    Changes I made to Flash files do not appear on my live site?

    you need to flush out teh cache, your browser is loading the flash files from you hard drive. try uploading a flash fil but with a different name and i bet you it will appear from your website.
  9. R

    Changes I made to Flash files do not appear on my live site?

    you need to flush out teh cache, your browser is loading the flash files from you hard drive. try uploading a flash fil but with a different name and i bet you it will appear from your website.
  10. R

    Changes I made to Flash files do not appear on my live site?

    you need to flush out teh cache, your browser is loading the flash files from you hard drive. try uploading a flash fil but with a different name and i bet you it will appear from your website.
  11. R

    Changes I made to Flash files do not appear on my live site?

    you need to flush out teh cache, your browser is loading the flash files from you hard drive. try uploading a flash fil but with a different name and i bet you it will appear from your website.
  12. R

    HTML: Automatically updating date is an hour ahead?

    I think you mean javascript. this bit of js tells the time and date <SCRIPT> document.write(Date()+".") </SCRIPT> any script you get will read the time from your system clock so maybe its that thats not been set to daylight saving time.
Back
Top