Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by BluesmanUK

  1. BluesmanUK

    UI Design Pattern

    Hi all, I posted this in some flash forums but I thought it would be just as appropriate to post my question here too... Im creating a UI using Flash and OOP Actionscript; and my question relates to designing the menu navigation system. What needs to happen is fairly simple i guess : when a...
  2. BluesmanUK

    How to execute php inside flash and recive data

    you cannot execute PHP inside flash :-) you can load variables returned from php by calling the php file on the server, or you can have flash embedded in your php-generated html page, with FlashVars parameters in the object and embed tags. If you just want to bring RSS feeds into flash, several...
  3. BluesmanUK

    projector question

    you'll need to use a 3rd party utility like this one: http://brajeshwar.com/2006/zinc-win-mac-device-flash-projector-wrapperenhancer/ and I believe you cannot AutoStart on Mac OS-X these days...
  4. BluesmanUK

    animation of text

    for simple shapes you can use a mask and animate it: http://www.gomediazine.com/01/19/2007/an-angel-grows-wings-animated-mask-in-flash/
  5. BluesmanUK

    Communication between subcclasses

    I dont think you're understanding inheritance correctly. It looks like you're mixing up inheritance and composition. A class defines a type of object. With inheritance you can create a class (subclass) which inherits the features of another class (the superclass). The Superclass doesnt control...
  6. BluesmanUK

    Flash Box

    sure you can, in the html page take out the object and embed tags for those swfs and just include them like you did with the header and the buttons eg. <script type="text/javascript"> var so = new SWFObject("homepage.swf", "mymovie", "94", "22", "6", "#003399"); so.addParam("wmode"...
  7. BluesmanUK

    Create 3d object from image?

    you can import those images as a series of frames, sure
  8. BluesmanUK

    Flash Box

    youre using swfobject to get around having the box around the swfs (it uses javascript to write the object and embed tags in the html) however the movies that still have the box are included in the html page using regular object and embed html tags, not using SWFobject.
  9. BluesmanUK

    FLV in EXE not playing

    where is the FLV? is it external or embedded into the flash movie?
  10. BluesmanUK

    actionscript: storing objects in an array

    Brilliant, thats just what I meant :-) Thanks to your info i've written a class that stores an array of objects and type casts every time i retrieve the array element - this seems to work perfectly well: import com.mydomain.Page; class com.mydomain.PageCollection { private var...
  11. BluesmanUK

    Create 3d object from image?

    Unfortunately flash does not natively support 3d. There are some actionscript libraries out there that can simulate 3d, but won't be for the beginner. This is quite new and looks cool: http://osflash.org/papervision3d Otherwise, this is a good application: http://www.erain.com/
  12. BluesmanUK

    actionscript: storing objects in an array

    yeah but my point is that you lose the benefit of Typing when you put Objects into an Array...
  13. BluesmanUK

    actionscript: storing objects in an array

    Ah i see what you're doing there - but can you type prop, and can func() access prop? Im writing an application which includes a slideshow with the content coming from xml - so ive created a data class to hold the xml data, and i wanted an array of 'slide' objects as a property of that data...
  14. BluesmanUK

    actionscript: storing objects in an array

    bit of a programming question here : I have a data object class in which I would like a property to be an array of objects , each with their own properties and methods. It seems that in actionscript , once put inside an array, an object loses its type - does anyone know if is there any way round...
  15. BluesmanUK

    Debugging flash projector on hybrid cd-rom

    Just discovered the problem - filename of an image that was preloading was too long. ARGH

Part and Inventory Search

Back
Top