Jump to content

stuj1

Members
  • Posts

    3
  • Joined

  • Last visited

Reputation

0 Neutral

About stuj1

Personal Information

  • Occupation
    New Media Developer
  • Location
    Gloucestershire

Employer (optional)

  • Company Represented
    Crystal Presentations Ltd
  1. no i havent. Further reading has brought up Exchange Web Services API (EWS) as a far more supported method of accessing E2007 data, but this requires .NET and Visual Studio and my expertise is very limmited in that area.
  2. is it as2 or as3? When you move the car you want to get it's x and y position. Then use an if statement so that: if(car.x < 0) { // hit the left wall } else if(car.x > Stage.width) { // hit the right wall } if(car.y < 0) { // hit the ceiling } else if(car.y > Stage.height) { // hit the floor } You can adjust the values to take into account the car's width by using this instead: if(car.x-(car.width/2) < 0) Failing that use the hitTest method, placing movieclips around the outside. Check the Flash help for hitTest
  3. I have been trying to find a way of displaying a user's email inbox contents in a web page. Basically, i want to create my own stripped down version of OWA. I actually managed to do it using some php code and WebDav, but it only worked for an Exchange 2003 server that I was using for testing, not the actual server that I need to access which is Exchange 2007! Has anyone managed to do this with Exchange 2007? Thanks, I have trawled the net for info and still have nothing that works!!! Stu
×
×
  • Create New...