User Profile

Collapse

Profile Sidebar

Collapse
rsdev
rsdev
Last Activity: May 5 '08, 01:56 PM
Joined: Jul 4 '07
Location: France
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • rsdev
    replied to interactive flash not loading data database
    Are you embedding the fonts? Do you have the fonts shared in the library?

    Dynamic text and fonts is a big deal in Flash 8, I'm still experimenting with all the aliasing features....
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Mouse Wheel ZOOM???
    Well done for getting it working. I can see you weren't impressed by my suggestion of checking the mc size against a limit.

    Opting for a scale limit instead....
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Flash Mp3 Player
    I haven't started AS3.0 yet... Still finishing off 2.0 projects, but if I see something I'll send you a post....
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to interactive flash not loading data database
    I thought this was urgent?!

    Attachments can also be added if you click edit/delete on your post....
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Double Click MC???
    Try this;


    Code:
    on(release){
    	if(lastclick - (lastclick=getTimer()) + 500 > 0){
    			//do doubleclick action
    		 trace("double");
    	} else {
    			//do singleclick action
    		 trace("single");
    	}
    }
    Not my code, but works for me:)
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Flash Mp3 Player
    Which Flash version?...
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to preloader not working with my animation
    Ok third time!!!



    How annoying! I posted a lenghty response and then the post froze on submit and the post was lost.

    So, in brief.

    Publish settings->Flash-> settings button

    Export in frame (2)

    This will load all the external classes, script and objects in frame 2

    So Flash will initialise your preloader in frame 1 before it loads all the other content....
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Mouse Wheel ZOOM???
    You have a checkBounds function so if you getBounds in the checkBounds and then switch a Boolean to false to stop the enlargement.

    Example;

    Code:
     mouseWheelListener = new Object(); 
    var scale:Boolean = true;
    mouseWheelListener.onMouseWheel = function(delta) { 
    if(delta > 0){ 
    ROOT.onEnterFrame = function(){ 
    if(scale){
    zoom._xscale*=0.9; 
    zoom._yscale*=0.9;
    } 
    scale =
    ...
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to interactive flash not loading data database
    To add screenshots you zip a file and post it somewhere then add a link.

    But don't worry about that because the problem is probably embedded fonts. This is one of the hardest things to get right in a Flash CMS. Can you give me a description of how you are dealing with the dynamic textfield fonts in Flash?...
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Programmically calling a button action
    There are many different ways to wire an event to a button. So without seeing the code I wouldn't know which to suggest!...
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Programmically calling a button action
    Have you tried writing any code? If so, post here and I'll take a look!...
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to rollOver rollOut and movement animation
    It was difficult to understand your question.

    I think you're saying that when you release and then rollout you don't want to go3?!

    So;

    Code:
    this.selected = false;
    on(rollOver){
    if(!this.selected)
    gotoAndPlay("go2")
    }
    on(rollOut){
    if(!this.selected)
    gotoAndPlay("go3")
    }
    on (release) {
    this.selected = true;
    ...
    See more | Go to post

    Leave a comment:


  • Adobe recommend using this in Javascript;

    Code:
    <form>
        <input type="button" onclick="callExternalInterface(id)" value="Call ExternalInterface" />
    </form>
    <script>
    function callExternalInterface(id) {
        thisMovie("externalInterfaceExample").callAS(id);
    }
    
    function thisMovie(movieName) {
        if (navigator.appName.indexOf("Microsoft")
    ...
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Help Actionscript
    try this;

    Code:
    stop() ;
    mask_mc._height = 1;
    this.onEnterFrame = function():Void  {
    	var loadedData:Number = this.getBytesLoaded();
    	var allData:Number = this.getBytesTotal();
    	var percent:Number = Math.round (loadedData/allData*100);
    	mask_mc._yscale = percent;
    	if (loadedData>=allData) {
    		gotoAndStop (10);
    		delete this.onEnterFrame;
    	}
    };
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to interactive flash not loading data database
    Works fine for me! Can you explain or attach screen grabs of what happens when it doesn't work?

    Whenever I connect to a DB using PHP and Flash I serialize the data when parsing into Flash. Then I don't get any problems with html tags or special characters '&' '$' etc.

    There are some great serializing classes with tutorials out there, just google.

    Having said that it might not be the cause of your problem....
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Breaking glass effect...
    Here's an after effects tutorial to get you started and a plug in 3D lighting effect. I imagine you're trying to get an effect similar to Lost World were the vehicle goes over the edge and the glass is cracking?!

    So before you use the shatter effect, you might want to animate some cracks in Flash and import them into AE. Then use a glow effect first on the cracks to make the light start appearing. Then when it shatters fire up your...
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Breaking glass effect...
    Then to get the kind of impact you're looking for I would use a package like SWIFT 3D, After Effects or 3D Studio Max. All these programmes import into flash and will create the kind of complex lighting effects you want....
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Breaking glass effect...
    Are you looking for a dynamic effect that you can apply to loaded images at runtime?

    Or a one off transition?
    See more | Go to post
    Last edited by NeoPa; Jan 11 '08, 07:11 PM. Reason: Removed sig (included a link)

    Leave a comment:


  • rsdev
    replied to can actionscript retrieve navigator.userAgent
    Try this;

    import com.macromedia. javascript.*;

    var proxy:JavaScrip tProxy = new JavaScriptProxy (_root.lcId, this);

    function getBrowserInfo( ):Void
    {
    proxy.call("get BrowserInfo");
    }

    function getBrowserInfoR eturn(browser:O bject):Void
    {
    //can get more info from System.capabili ties
    for(var x:String in browser)
    {
    trace(x...
    See more | Go to post

    Leave a comment:


  • rsdev
    replied to Only one Answer
    Hope it helps!!!

    Let me know.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...