How to resume the storyboard in a especific time without user control in blend 4

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sword117
    New Member
    • Jun 2010
    • 35

    How to resume the storyboard in a especific time without user control in blend 4

    I have a wpf project in microsoft expression blend 4, and i need to pause the storyboard at a especific time, and resume it later. without any user control button or something like that =)
  • sword117
    New Member
    • Jun 2010
    • 35

    #2
    please i really need this, i thinked of a timer but i couldnt find one. the languages that can be used in my project is c# and xaml. thanks

    Comment

    • jhardman
      Recognized Expert Specialist
      • Jan 2007
      • 3405

      #3
      so completely timed? after say 5 seconds the storyboard pauses, the resumes after another 5 seconds?

      Jared
      Last edited by jhardman; Sep 20 '10, 12:12 PM. Reason: typo

      Comment

      • sword117
        New Member
        • Jun 2010
        • 35

        #4
        yes lets say i have a text. and when its there it pause, and after a music file with a voice reads that text it resumes, so like 0:02.100 pause, 0:12.100 resumes. how can i control this?

        im doing my presentation in expression blend lol i dont want to use powerpoint. ive done everything right but i cant control this.. =(

        Comment

        • sword117
          New Member
          • Jun 2010
          • 35

          #5
          okay it doesnt has to be that way, if i can just pause it on a certain time like 0:02.100, i will create a button that resumes.. but i dont know how to pause.. lool

          Comment

          • sword117
            New Member
            • Jun 2010
            • 35

            #6
            after searching the code in the XAML i found this.
            Code:
            <EventTrigger RoutedEvent="UIElement.MouseLeftButtonDown" SourceName="textBlock_CopyControl1">
            			<PauseStoryboard BeginStoryboardName="OnLoaded1_BeginStoryboard"/>
            			<ResumeStoryboard BeginStoryboardName="OnLoaded1_BeginStoryboard"/>
            		</EventTrigger>
            its an event trigger if somebody knows what is necessary to stop the storyboard at 0:12.100 please help =)

            Comment

            Working...