Jump to content
Search Community

DG13

Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by DG13

  1. I've been trying to use the panelscrollexample from the throwprops page (here) in an air for ios app.

     

    I've used it in the past with no issues, what's different this time is I need to trigger code from one of the loaded swfs so I require air sdk 4 or higher. problem is in anything over 3.4 I'm not seeing any of the external content at all in the demo.

     

    I'm working directly with the demo files (that don't have any as3 in them), only changing the target to air 4.0 or higher (tested up to 13)

     

    xcode posts the following in console

     

    May 29 15:23:58 ww-Ipad-03 backboardd[28] <Error>: HID: The 'Passive' connection 'PanelScrollExamp' access to protected services is denied.

     

     

    Has anyone had any experience with this?  

    Thanks.

  2. Good evening,

     

    I'm trying to achieve an effect where several "dots" are interconnected with 3px lines, I want the "dots" to have some random wiggle to them, and have the lines always connected form one center to the next dots.

     

    anyone have experience with this, that could point me towards the right direction?

     

    Thanks!

  3. Jack,

     

    Thanks for responding, I'll clean up the transform origin, I had it in there from the sample I found showing the y rotation transform.

     

    This will be running in a flash projector on a kiosk, and It happens on each frame unfortunately not the first one.

     

    Is there a way to send you the .fla file directly? I'm not comfortable posting it publicly even though its not confidential, I don't think my client would appreciate it.

  4. Big thank you to everyone that makes this forum such a huge asset.

     

    I'm having an issue with a Kiosk I'm working on. Basically i've built it with each "slide" on its own flash timeline frame. For each flash timeline frame I have a GS timelineMax to make everything awesome.

     

    My issue is that when jumping to the next flash frame I get a momentary "flash" or blink of the content that is set to animate .from. it quickly goes away but is really unsightly.

     

     

    here's an excerpt. any help would be greatly appreciated.

     

    var timeline1:TimelineLite = new TimelineMax({ onComplete:goToTwo});
    
    timeline1.append( TweenMax.from(FR1.MFPS, 2, {autoAlpha:0, rotationX:90, transformOrigin:"left top", ease:Elastic.easeOut, delay: 1}));
    timeline1.append( TweenMax.from(FR1.p1, .5,  {autoAlpha:0, rotationY:90, transformOrigin:"left top", ease:Quint.easeIn, delay: .5}));
    timeline1.append( TweenMax.from(FR1.Ba, 2,  {autoAlpha:0, rotationX:90, transformOrigin:"left top", ease:Elastic.easeOut, delay: -.05}));
    timeline1.append( TweenMax.from(FR1.p2, .5, {autoAlpha:0, rotationY:90, transformOrigin:"left top", ease:Quint.easeIn, delay: .5}));
    timeline1.append( TweenMax.from(FR1.ser, 2,  {autoAlpha:0, rotationX:90, transformOrigin:"left top", ease:Elastic.easeOut, delay: -.05}));
    
    timeline1.append( TweenMax.from(FR1.equals, 1,{scrollRect:{x:0, y:0, width:0, height:140}, ease:Expo.easeInOut, delay: 0 })); 
    
    
    function goToTwo(){
        this.gotoAndStop(2);
    }
    stop();
    

     

     

     

×
×
  • Create New...