Results 1 to 1 of 1
  1. Justam's Avatar
    CrackBerry Abuser

    Posts
    320 Posts
    PIN
    hrm...
    Thread AuthorThread Author   #1  

    Default Issue with hiding calendar today items

    OK now I had this working and changed a couple things and don't know what I did as I didn't save a separate file :s so this is my issue:

    When hiding the calendar today items everything hides fine, except if I have 3 out of 5 calendar entries filled when the today calendar is hidden, the cursor will disappear but in reality its on those items. So if i have icons below the today area and buttons above the today area, when the calendar today is hidden I litterally have to scroll through those 3 items. I tested it in the simulator and confirmed I need to go up 3 spots and also activated those items while "hidden"

    Here is my code:

    Code:
    	<!-- Hide Messages/Calendar -->
    	<animate xlink:href="#hs0" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)" />	
    	<animate xlink:href="#messages1hotspot" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)"/>
    	<animate xlink:href="#messages2hotspot" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)"/>
    	<animate xlink:href="#messages3hotspot" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)"/>
    	<animate xlink:href="#hs1" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)" />
    	<set xlink:href="#hs0" attributeName="display" to="none" begin="accessKey(ESCAPE)" />
    	<animate xlink:href="#calendar1hotspot" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)"/>
    	<animate xlink:href="#calendar2hotspot" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)"/>
    	<animate xlink:href="#calendar3hotspot" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)"/>
    	<animate xlink:href="#calendar4hotspot" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)"/>
    	<animate xlink:href="#calendar5hotspot" attributeName="visibility" values="hidden;hidden" keyTimes="0;1" dur="0.45s" fill="freeze" begin="accessKey(ESCAPE)"/>
    	<set xlink:href="#hs1" attributeName="display" to="none" begin="accessKey(ESCAPE)" />
    
    	<!--Show Messages/Calendar-->
    	<animate xlink:href="#hs0" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s" />
    	<animate xlink:href="#messages1hotspot" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s"/>
    	<animate xlink:href="#messages2hotspot" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s"/>
    	<animate xlink:href="#messages3hotspot" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s"/>
    	<animate xlink:href="#hs1" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s" />
    	<set xlink:href="#hs0" attributeName="display" to="inline" begin="Button11.activate +0.2s" />
    	<animate xlink:href="#calendar1hotspot" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s"/>
    	<animate xlink:href="#calendar2hotspot" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s"/>
    	<animate xlink:href="#calendar3hotspot" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s"/>
    	<animate xlink:href="#calendar4hotspot" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s"/>
    	<animate xlink:href="#calendar5hotspot" attributeName="visibility" values="visible;visible" keyTimes="0;1" dur="0.45s" fill="freeze" begin="Button11.activate +0.2s"/>
    	<set xlink:href="#hs1" attributeName="display" to="inline" begin="Button11.activate +0.2s" />
    Now I also tried to set the display to none, then inline on the hotspot items with this code:
    Code:
    <set xlink:href="#calendar1hotspot" attributeName="display" to="none" begin="accessKey(ESCAPE)" />
    
    <set xlink:href="#calendar1hotspot" attributeName="display" to="inline" begin="Button11.activate +0.2s" />
    That works when scrolling over them hidden, HOWEVER it will also scroll over entries which dont exist(the other 2 entries).

    This is soo annoying!! I had it working before, got sidetracked from being busy with work, made a few changes here and there and now its not working!!!

    BAHH and its so unlike me to save over the same file when I am making significant changes as well!

    Insight would be appreciated as I can't accept the way it is currently!

    Thanks

Posting Permissions