Smart Shapes only appears if placed at the beginning of timeline or no more than 1.5 sec.?

Why is my Smart Shapes (Callout shape) only appears when published if placed at the beginning of the timeline or Timing > Appear After is set to no more than 1.5 sec in Captivate 6?

Welcome to the forum,
It helps if you mention the exact version, smart shapes are available in 6.0.0.199, 6.0.1.240, 6.1.319 and 7.
Try to post a screenshot of the timeline of the slide, using the small still camera icon available in the editor (browser version of the forums). With Elakat I suspect that you have a pausing point, caused by an interactive object, at 1.5sec.
Lilybiri

Similar Messages

  • Safari status bar disappears.  I have tried clicking on show status bar and it will only appear when I move the cursor to the top of the screen.  I can not minimize the open page only full screen or close the browser.  Any idea how the rectify this

    Safari status bar disappears. I have tried clicking on show status bar, under the View tab and it will only appear when I move the cursor to the top of the screen. I can not minimize the open page, only full screen or close the browser. Any idea how the rectify this issue?

    One enters and exits full-screen with control+command+F keys. This is on the View menu in Safari. Optionally, the green traffic light in your browser title bar, if you roll over it, has the full-screen control it it. While in full-screen mode with Safari, moving your mouse pointer virtually up, and off-screen reveals the Safari title bar again, and you can click the green traffic light to exit full-screen mode.
    You can hide/show the status bar by simply typing command+/. This too, is on the Safari View menu. and in 10.10.1 — it works reliably for me.

  • I accidently closed my window with all my app tabs, now the only window that opens was a 2nd one I had open. How do I get back all my app tabs from the previous window, and why didn't it give me the usual warning you are closing more than one tab?

    I accidently closed the window with all my frequently used app tabs, now the only window that opens was an extra one I had opened. How do I get back all my app tabs from the previous window, and why didn't it give me the usual warning you are closing more than one tab? edit
    Details

    Then the (App) tabs from that window are lost unless you can restore an older copy of the sessionstore.js file (Time Machine?) that has that lost window.
    *http://kb.mozillazine.org/sessionstore.js

  • I don't load music, only audio books.  When I have a book that is more than 1 disk, the tracks are named different, (eg track 01 etc., on disk 1, then disk 2  are named 1a, 1b, etc.) , so  when synced it is all jumbled 01, 1a, 02, 2a ect. Help?

    I don't load music, only audio books.  When I have a book that is more than 1 disk, the tracks are named different, (eg track 01 etc., on disk 1, then disk 2  are named 1a, 1b, etc.) , so  when synced it is all jumbled 01, 1a, 02, 2a ect. Help?

    See this page from another forum member turingtest2. He might even chime in here if he sees it to offer any additional advice.
    Audiobooks on iPods
    B-rock

  • Bug? My events on the iPad iCal app aren't shown in the year view if they are more than two years in the future.

    My events on the iPad iCal app aren't shown in the year view if they are more than two years in the future even though I can see them on the month, week and day view. Any suggestions on how to fix it? I've tried it all. I called the apple support and they checked on their iPads. They all did the same and they couldn't help me. They suggested trying this way. I'd like to be able to plan a few years ahead and the year view would make thing so easy!
    Is this a bug?

    Go to the Home screen and double click the Home button. That will reveal the row of recently used apps at the bottom of the screen. Tap and hold on the app in question until it wiggles and displays a minus sign. Tap the minus sign to actually quit the app. Then tap anywhere on the screen above that bottom row to return the screen to normal. Then restart the app and see if it works normally.
    Then reboot your iPad. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appears. Let go of the buttons and let the iPad restart. See if that fixes your problem.

  • How do you get the integer of a number with more than 10 digits

    I can't seem to be able to get the integer of a number with more than 10 digits.
    ex:
    integer(12345678901.3) returns -539222987 when it should really return 12345678901
    Thanks for the help
    (I'm on director 11 at the moment)

    You can write a Parent script to represent Big Integers. I wrote some code to get you started. It consist of two classes - "BigInt" and "Digit".  At this point you can only add two "BigInts" and print out the value with a toString() function. Note that you pass a String to the "BigInt" constructor.
    In the message window you could enter something like:
    x = script("BigInt").new("999999999999")
    y = script("BigInt").new("100000000000000000004")
    z = x.add(y)
    put z.toString()
    And the output window will show:
    -- "100000001000000000003"
    Here are the two Parent scripts / Classes
    -- Digit
    property  val
    property  next
    on new me, anInt
      val = anInt
      next = 0
      return me
    end new
    -- BigInt
    property  Num
    property  StringRep
    on new me, aString
      Num =  script("Digit").new(Integer(aString.char[aString.length]))
      curNum = Num
      repeat with pos = aString.length - 1 down to 1
        curNum.next = script("Digit").new(Integer(aString.char[pos]))
        curNum = curNum.next
      end repeat
      return me
    end new
    on add me ,  Num2
      curNum = Num
      curNum2 = Num2.Num
      result = curNum.val + curNum2.val
      if result > 9 then
        carry = 1
      else
        carry = 0
      end if
      result = result mod 10
      sum = script("Digit").new(result)
      curSum = sum
      curNum = curNum.next
      curNum2 = curNum2.next
      repeat while curNum.ObjectP AND curNum2.ObjectP
        result = curNum.val + curNum2.val + carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum = curNum.next
        curNum2 = curNum2.next
      end repeat
      repeat while curNum.ObjectP
        result = curNum.val +  carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum = curNum.next
      end repeat
      repeat while curNum2.ObjectP
        result = curNum2.val +  carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum2 = curNum2.next
      end repeat
      StringRep = ""
      me.makeString(sum)
      return me.script.new(StringRep)
    end add
    on toString me
      StringRep = ""
      me.makeString(Num)
      return StringRep
    end toString
    on makeString me, digit
      if not digit then
        return
      end if
      me.makeString(digit.next)
      put String(digit.val) after StringRep
    end makeString

  • How do I turn off the feature that allows the duplication of App downloads to more than one phone? As in my wife downloads an app and I get a dulpicate download on my phone.

    How do I turn off the feature that allows the duplication of App downloads to more than one phone? As in my wife downloads an app and I get a dulpicate download on my phone.

    To disable that feature it will depend on whether or not you sync everything in the cloud using Apple's iCloud, OR if you both use the same desktop/laptop computer with iTunes. Here is a link to the Apple support page in regards to the automatic download feature included with your iPhone and corresponding softwares such as iTunes.
    http://support.apple.com/kb/ht4539
    Follow those instructions and it will all be taken care of.

  • How can i use the same front panel graph in more than one events in an event structure?

    i want to display the signals from my sensorDAQ in a graph.but i have more than one event in the event structure to acquire the signal and display it in the graph.the first event is to acquire the threshold signals and its displayed in the graph as a feedback.after the first event is executed, i will call the second event,where the further signals are acuired and compared with the threshold signals from the event 1.my question is how can i use the same front panel control in more than two events in the event structure?please answer me i'm stuck.
    Solved!
    Go to Solution.

    Hi,
    I have attached here an example of doing the same using shift registers and local variables. Take a look. Shift register is always a better option than local variables.
    Regards,
    Nitzz
    (Give kudos to good answers, Mark it as a solution if your problem is Solved) 
    Attachments:
    Graph and shift registers.vi ‏12 KB
    graph and local variables.vi ‏12 KB

  • When i try to activate iMessage i could see the comment "waiting for activation" for more than 24hrs.Is this because of mobile device problem or someother issue ? My mobile is just 20 days old

    When i try to activate iMessage i could see the comment "waiting for activation" for more than 24hrs.
    Is this because of mobile device problem or someother issue ?
    My mobile is just 20 days old

    The following discusses that error message and may help: iOS: Troubleshooting FaceTime and iMessage activation

  • Select the same attribute in a query more than once

    Hi Experts,
    My requirement is to select the same attribute in a query more than once.
    How can I acheive this?
    Expecting an early solution..
    Pilliga

    Hi,
    Create a calculated attribute that just displays the "same attribute".
    (Note: you will need to uniquely name this object).
    For example, if you wish to display Emp Name twice in the same query, then create a calculated attribute called Emp Name2 and select it and Emp Name in your query and the same info will be displayed twice in your results set.
    Cheers,
    Tanish

  • Displaying the records records which are coming more than once

    hi
    create table temp(comp_id int,branch_id int);
    comp_id | branch_id
    ---------+-----------
    1000 | 1
    1000 | 1
    1000 | 2
    1000 | 2
    1000 | 3
    2000 | 1
    2000 | 1
    2000 | 2
    2000 | 3
    how can i write a query which displays the records records which are coming more than once on the basis of fields comp_id and branch_id. e.g. 1000 | 1 should be displayed because it is coming more than once. 1000 | 3 should not be, because it has a single entry.

    select comp_id, branch_id, count(*)
    from temp
    group by comp_id, branch_id
    having count(*)>1
    Please note this forum is not a SQL class and it is not the place to have your homework done.
    Sybrand Bakker
    Senior Oracle DBA

  • The Moutain Lion upgrade to cost more than $ 20 to me!

    The Moutain Lion upgrade to cost more than $ 20 to me! I'll have to change printer. I have a Samsung ML-1610 that worked with Snow Leopard. With Mac OS 10.8 I tried everything, but there are no drivers for this printer. Even the newer printers from Samsung has no drivers for the Moutain Lion. I'm feeling using Linux in its infancy!

    Does everything include this?
    http://guigo.us/mac/splix/
    Worked on Lion, at least.

  • Can the sony handycam dcr-hc30 support more than the original 512mb memory? Thanks.

    Can the sony handycam dcr-hc30 support more than the original 512mb memory? Thanks.

    According to this compatibility chart: http://esupport.sony.com/perl/support-info.pl?&info_id=11 the DCR-HC30 can use the following cards:Memory Stick Duo Pro - 1 GB, 2 GB, and 4GBMark 2 Memory Stick Duo Pro - 1 GB, 2 GB, and 4GB.You might want to read the chart to make sure I was reading it correctly.

  • The fiscal year specified differs by more than a year from the fiscal year

    Dear All
    To rectify depreciation posted at development server I run OAGL which reset all depreciation posted (From FY 2008 to 2010), now when I am trying to post depreciation by AFAB for FY 2008 system showing error message
    No posting possible in fiscal year 2008
    Message no. AA688
    Diagnosis
    No posting is possible in the fiscal year 2008 specified. The fiscal year specified differs by more than a year from the fiscal year in which the last postings were performed.
    Procedure
    Correct your fiscal year specifications.
    please advice me what step to be follow
    Regards
    Sekhar

    Hi Sekhar,
    Error AA688 typically occurs in two situations:
    1) A company code did not have any depreciation posted in the previous year. See note 144441.
    2) If in a comany code no depreciation has been posted ever, then it is important to note that the periods of the last depreciation posting  in table TABA and the year and period of the last depreciation posting in table T093D (fields AFBLPE and AFBLGJ) are initial. You can set these fields to 000 / 0000 with the correction report attached in SAP note 26073.
    See if any of this information helps you further.
    Brigitte

  • How do I keep the name tags in Picasa Web Albums from appearing on the images by default? With Explorer, name tags only appear when mousing over the image, but with Firefox, all the tags appear on the picture as soon as it is loaded, which looks messy.

    I use Picasa to create web albums, and I tag people who appear in the pictures. With Explorer, the name tags do not appear on the pictures until I mouse over a specific person, at which point the tag appears. With Firefox, the name tags appear as soon as the picture is loaded, and only disappear when you mouse over the people in the picture. This makes the picture look messy; by default, one would want to see a picture without tags all over people's faces.
    The only way to "fix" this is to disable the name tags completely (or tell people to use Explorer!), but this is not an ideal solution, since I would like to be able to share albums with people's names in them.

    I use Picasa to create web albums, and I tag people who appear in the pictures. With Explorer, the name tags do not appear on the pictures until I mouse over a specific person, at which point the tag appears. With Firefox, the name tags appear as soon as the picture is loaded, and only disappear when you mouse over the people in the picture. This makes the picture look messy; by default, one would want to see a picture without tags all over people's faces.
    The only way to "fix" this is to disable the name tags completely (or tell people to use Explorer!), but this is not an ideal solution, since I would like to be able to share albums with people's names in them.

Maybe you are looking for

  • Can no longer print or scan wirelessly

    Good afternoon! I am having a problem that I am having a difficult time solving.  Up until last week, my Macbook Pro w/ OSX 10.10 my computer would print wirelessly to my printer with no problem.  As of about one week ago, the computer no longer will

  • Recover data from wiped hard drive?

    Hi everyone. I’ve searched through the discussions unable to make any concrete conclusions to resolve my dilemma so I hope someone here can help me out if possible. My Macbook Pro 13 inch (late-2011) running Mavericks had its hard drive recently wipe

  • My apple ID password is not working on my iphone

    I added a new apple ID email to my apple ID account.  I also updated my password.  Now none of my Apple ID passwords work (old or new) on my recently purchased iPhone 5. Please help!

  • Making Changes To Nested Sequences

    I have edited a series of clips into a sequence in FCP. Let's call that sequence Sequence 1, shall we? Later, I had to create a new sequence, based on clips edited from the first sequence. Clips from Sequence 1 have been nested into a new sequence, c

  • Help with string.valueof

    I have the following code which is meant to read in a file into text boxes and let me scroll through all the items in the file. import java.io.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; import bank.*; public class ReadSequen