Looping, Clickable FLV Preview - Click Event not being recognized

I have tried the following code to create a thumbnail preview that loops and is clickable to go to a new page with a video gallery... The video plays anbd loops, but, it does not seem to recognize the mouse click -- i have a trace that isn't being triggered an nothing happens... code is below. any help appreciated...
import fl.video.VideoEvent;
import flash.events.MouseEvent;
player.fullScreenTakeOver = false;
player.source =
"YadWebPreview.flv";
player.autoRewind = true;
player.autoPlay = true;
function Loop(event:VideoEvent):void
player.play();
function Link(event:MouseEvent):void
trace("Clicked");
navigateToURL(
new URLRequest(
"http://yad.nyckatz.com/index.php/about-us/meet-our-people"),
"_blank");
player.addEventListener(VideoEvent.AUTO_REWOUND, Loop);
player.addEventListener(MouseEvent.CLICK, Link);

I added a button on top of the video and made it transparent.  added the  following code to the button:
import flash.events.MouseEvent;
function Link(event:MouseEvent):void
trace("Clicked");
navigateToURL(
new URLRequest(
"http://yad.nyckatz.com/index.php/about-us/meet-our-people"),
"_blank");
myButton.addEventListener(MouseEvent.CLICK,Link);
getting the following compler errors:
5000: The class 'fl.controls.Button' must subclass 'flash.display.SimpleButton' since it is linked to a library symbol of that type.
and the following in the output tab
ReferenceError: Error #1065: Variable Icon is not defined.
ReferenceError: Error #1065: Variable FLVPlayback is not defined.
ReferenceError: Error #1065: Variable ComponentShim is not defined.
have the following code on the video:
import fl.video.VideoEvent;
player.fullScreenTakeOver = false;
player.source =
"YadWebPreview.flv";
player.autoRewind = true;
player.autoPlay = true;
function Loop(event:VideoEvent):void
player.play();
player.addEventListener(VideoEvent.AUTO_REWOUND, Loop);
Can't find anything to help figure out how to correct these...  Any help much appreciated.

Similar Messages

  • I created a theme and a slideshow in iDVD. The theme (intro) plays looped in the preview, but does not go on to the slideshow. How do I "un"loop it?

    I created a theme and a slideshow in iDVD. The theme (intro) plays looped in the preview, but does not go on to the slideshow. How do I "un"loop it?

    Perhaps someone on this forum has done what you are asking and would be more help than me. 
    I think it could be done, but you'd have to do some fiddling around. The concept is to make the iDVD theme part of your iDVD or iMovie created slideshow, so that it will play as part of the slideshow.
    I don't know if this will work, but if I were experimenting I would try creating an iDVD project with just the theme in it, and then save that to your desktop as a disc image.  When you click on the icon of the disc image you have just created, you will see a Video_TS folder.  Open that and you will see a file containing the letters VOB.  Open that file. 
    You need to convert that VOB file back to DV or Quicktime Movie which iMovie is designed to handle. For that you need  the free download MPEG Streamclip:
    http://www.apple.com/downloads/macosx/video/mpegstreamclip.html
    but you must also have the Apple mpeg2 plugin :
    http://www.apple.com/quicktime/mpeg2/, which I believe costs about $20.
    Open MPEG Streamclip and drag the VOB file to its window.  Go to the MPEG Streamclip file menu and click on Export to DV. 
    After the export is done, you will have a DV file containing the iDVD theme.  I would try adding that clip as your first entry in your slide show, assuming that you are running iDVD7.  (You can't add a movie to a slideshow in iDVD6.)  When you play your slideshow hopefully it will play the DV clip containing the theme, then seamlessly followed by your slide show.   If it doesn't, try instead exporting the VOB file to a Quicktime Movie, and then try to add the Quicktime movie to your slideshow.
    You might be able to do this easier if you created your slideshow in iMovie instead of iDVD.  You could make an iMovie with the iDVD theme clip as the lead clip, and then share your iMovie project to iDVD. 
    Good luck with this.  As I said, perhaps someone else has an easier way to do this and will chime in. 

  • All day calendar events not being displayed in the notification centre for iphone 5 post ios 7 upgrade. Please help. Is it a bug?

    All day calendar events not being displayed in the notification centre for iphone 5 post ios 7 upgrade. Please help. Is it a bug?
    With iOS 6, the all day events showed up in the notification centre but it lacks in the upgrade iOS 7.

    Same problem here. Some people pointed out that all-day events do show up in their notification center, but that seems only to be the case for birthdays (and only as text like the weather). I've tried it myself on my iPhone and iPad and it did work for birthdays but not for any other all-day events. I already sent this to Apple as a product feedback as well, as should everyone of you. The more people mention it, the faster Apple's going to fix this issue. In its current state, notification center is not a very helpful feature in my opinion. There's absolutely no point in not showing all-day events in the 'today' calendar overview.
    Here's a link to the product feedback page: http://www.apple.com/feedback/
    I posted my message in the iPhone section since I couldn't find a page specifically dedicated to iOS 7.
    I really love the look & feel of iOS 7 but it's kinda sad to see notification center not tapping its full potential.
    Cheers!

  • The apexafterrefresh event not being fired in Chart IR's

    Hi all,
    I am adding additional functionality to IR reports using the plug-in architecture in Apex 4.1.1. A Dynamic action has been added to the "After Refresh" event for the #apexir_WORKSHEET_REGION jQuery selector.
    This works fine in all cases except when no data is found in the report. This has been fixed in 4.2 so I can live with this until the upgrade. However, it also does not work when a chart is created in the report, the apexafterrefresh event does not get raised. Therefore my dynamic action will not fire. Looking at the apex_interactive_reports_4_1.js this event gets raised for the table element with an ID stored in apexir_WORKSHEET_ID ie:
    apex.jQuery('#' + $v("apexir_WORKSHEET_ID")).trigger('apexafterrefresh', that.report_id);However this table element does not get rendered when a Chart is displayed and therefore the apexafterrefresh will not get raised.
    In apex 4.2 the widget.interactiveReport.js has been modified to handle the no data found but not charts:
    var lTriggeringElement$, lWorksheetId;
                            lWorksheetId = $v( "apexir_WORKSHEET_ID" );
                            if ( $x( lWorksheetId ) ) {
                                // If the table element containing data exists (ie when the report returns rows),
                                // use that to trigger the event.
                                lTriggeringElement$ = apex.jQuery( '#' + lWorksheetId );
                            } else {
                                // Otherwise, use the span holding the no data found message.
                                lTriggeringElement$ = apex.jQuery( '#apexir_NO_DATA_FOUND_MSG' );
                            lTriggeringElement$.trigger( 'apexafterrefresh', that.report_id );I have created a test case on apex.oracle.com - http://apex.oracle.com/pls/apex/f?p=41357:1 In this example I simply display an alert from a Dynamic action with the following attributes:
    Event - After Refresh
    Selection Type - Region
    Region - Interactive Report
    As can be seen when the user navigates to the report the alert displays, however when you navigate to the Chart the alert does not display.
    In my mind this is a bug and the IR reports JavaScript should be modified to raise the event apexir_WORKSHEET DIV Element instead. This would fix both issues.
    Any ideas on how to overcome this issue?
    Thanks
    Chris.

    For everyone's information Bug 16029272 - ALERT (APEXAFTERREFRESH EVENT) NOT BEING FIRED IN CHART OF INTERACTIVE REPORTS has been raised regarding this issue.

  • Double Click Event not fired for IE 11 with compatibility mode for HTML elemnt table

    Hi,
    I am facing an issue with Double click event(not getting fired on double click of mouse) for IE 11 with compatibility mode on HTML element "table" for Windows 7 64 bit machine.It runs fine on IE 10 with compatible mode with Windws 7 64  bit
    machine -- double click event.
    Can you please help to resolve the issue?
    Thanks and Regards,
    Yogesh

    Hi,
    f12>Debug tab, click the 'start' button.....(select break on all exceptions from the dropdown on the Debug tab)
    click your table and correct any errors that are listed in the Console of the developer tool.... probably you are using attachEvent I/o addEventListener. You should be using addEventListener for IE9 and higher and other web browsers.(it the w3c standard
    (recommendation).
    Post questions about html, css and scripting for website developers to the MSDN IE Web Development forum. Include with your question a link to your website or a mashup that shows the issue.
    Rob^_^

  • URLs are not being recognized inside PDF

    URL links inside a PDF that I've created in InDesign CS5 are not being recognized.
    I have email and website URLs embedded inside a PDF that was created in InDesign. These links are being recognized and I can click on them in Chrome, Opera, IE or Safari on the Mac. Eg, hovering over the mailto or http URLs the cursor turns to a hand and the links are clickable. Firefox is the only browser that does not recognize ANY links in the PDF. The cursor doesn't change to a hand instead it just remains as the standard text insertion cursor. The links are not clickable.
    Firefox 26.0
    Adobe Reader plugin 11.0.4.63 (latest as of today)

    Current Firefox versions have enabled a built-in PDF Viewer that doesn't have all features that other PDF readers like the Adobe Reader have or may not function properly otherwise.
    You can change the action for Portable Document Format (PDF) from Preview in Firefox to use another application like the Adobe Reader or set to Always Ask in "Firefox > Options/Preferences > Applications".
    You can set the pdfjs.disabled pref to true on the <b>about:config</b> page to disable the build-in PDF viewer.
    *http://kb.mozillazine.org/about:config
    You can check the value of the plugin.disable_full_page_plugin_for_types pref on the about:config page and remove the application/pdf part if present or reset the pref to the default via the right-click context menu if you want to display PDF documents in Firefox with another application (i.e. not the built-in PDF Viewer).
    See also:
    *https://support.mozilla.org/kb/view-pdf-files-firefox-without-downloading-them
    *https://bugzilla.mozilla.org/buglist.cgi?component=PDF%20Viewer&product=Firefox&query_format=advanced&order=bug_id%20DESC&limit=300
    <i>Please do not comment in bug reports: https://bugzilla.mozilla.org/page.cgi?id=etiquette.html</i>

  • IPod Shuffle not being recognized by my PC

    Hi, I just bought 2 Apple iPod Shuffles from eBay. I have a slight problem. When I plug them into my USB port, iTunes does not recognize them. They show up in My Computer though. When I try to re-install/reset the factory settings it says "Plug in a device" or something like that. My guess is that I bought them from a Mac user.
    My question is: How might I go about converting it from Mac to Windows?
    :: I am not sure this is the problem though, this is just a guess ::
    -Thanks
    HP Pavilion Laptop   Windows XP  

    I have a similar problem, my iPod Shuffle is being read in my Windows 2000 but in the iTunes it's not being recognized.
    When I try to play the iPod, the green and orange lights blink simultaneously.
    When I try and double-click on the icon for it in My Computer, it's saying that it can't be accessed because of an I/O device error.
    Finally, I come to the site and get the latest update and when I try to update, it's saying that there's an iPod service error.
    Hope that generalizes everything of what I'm saying and similar to Niko's problem as well.

  • 10.7 update and now my iphones/ipod is not being recognized.

    10.7 update and now my iphones/ipod is not being recognized in windows 7 service pack 1. I have 2 iphones and an ipod 3G. I have to go into services and stop the apple mobile device and start it up again to get my devices recognized. Anyone else having the same issue? One of the iphones is not upgraded to the new iOS, the other phone and the ipod are updated.

    Hi,
    You probably need to update to Snow Leopard10.6.8
    Click Apple icon top left and click Software Update and keep doing that until it says software is up to date.
    That should bring your itunes to the correct version.
    Hope this helps,
    Alan

  • HP office jet 8600, wireless not working, IP address not being recognized

    Purchased new HP office jet pro 8600 N911a.  Inserted CD software on relatively new Toshiba laptop using Windows 7, but problem is that printer IP address is not being recognized.  Wireless router is Apple airport extreme.  Have checked various potential solutions, including the following:  deleting software and re-inserting CD, turning off router, computer, printer and resetting, running a wirless network test (no problems found, wireless on and working and connected), ensuring that laptop and printer are on the same wirless network (yes), ensuring that printer IP address is entered correctly, and ensuring that firewall issues are not a problem.  Airport extreme settings show this printer's MAC address as a "wireless client" and its IP address as a "DHCP client"; however, when clicking on the "printers" heading in Airport extreme printers, no printers are listed (this is the pane that shows the USB printers connected to your Airport wirless device). Any suggestions would be appreciated

    Hi,
    Why don't you connect the printer wirelessly to your Airport Extreme?
    You may do so by clicking the Wireless icon on the printer screen, click Settings and follow the Wireless Setup Wizard to connect the device, then it should recieve its own IP by using the printer capabilities..
    If you prefer to use such a Print Server configuration, you may try using a different USB and check if that may help, otherwise I would suggest you to contact Apple as they know their accessories the best..
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Ipod touch not being recognized by itunes now

    i have a friend who has an ipod touch....everything had been going fine for him and then all of a sudden it was not being recognized any more....what caused this? he did say that he had done an update but i'm not sure what version he has....could this possibly be the problem.....does anyone an a fix for this?

    I think Apple is having a problem at the moment, my Ipod touch was always fine syncing until the new update! (Even on older itunes version, I could'nt sync since new update came out) It just isnt recognizing the device...
    Ive done all that Apple says to do, none of which helps at all, I reckon its thier own side of the problem they need to fix...

  • IPod touch not being recognized by iTunes on my MacBook, and on 2 other PCs

    Hello,
    After scouring the web and these discussion forums to no avail, I've decided to post my problem. I downloaded iTunes 8.0 yesterday, and updated the firmware on my iPod Touch to 1.1.5. I tried connecting my iPod, and nothing happened. It is not being recognized by my MacBook. So, I tried using another USB iPod connector, and nothing happened. I tried using a firewire connector, and nothing happened. Frustrated, I tried connecting to my one roommate's HP laptop and see if it would get recognized there - no. I then tried on my other roommate's laptop. The device was recognized to be USB, but iTunes wouldn't go ahead and try and reformat it. I'm starting to lose my mind! I've tried resetting the iPod touch itself loads of times to no success. I've tried restarting while having the iPod connected to the computer, and still nothing.
    What should I do now?

    Sorry about not getting to you on the quick-fast, but we aren't Apple employees.
    What ended up being the solution you needed, as you said, you couldn't find any information already posted on this problem, so documenting your fix may help someone in the future.

  • Why isn't my iPod 6th generation not being recognized by iTunes?

    Why isn't my iPod 6th generation not being recognized by iTunes?

    Did you alresady try these suggestions? iPod not recognized in iTunes and Mac desktop and iPod not appearing in iTunes

  • TS3716 ipod nano is not being recognized by iTunes.

    My ipod nano 2nd generation (and working perfectly) is not being recognized by iTunes.
    Any suggestions?

    Does the iPod work OK?
    Have you tied resetting the iPod? Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    Next would be to place the iPod in recovery mode and then restore via iTunes.  If iTunes does not see the iPod then the iPod is not usable. For recovery mode:
    iPhone and iPod touch: Unable to update or restore

  • Ipod not being recognized on the system, not getting reset,retry,restore,..

    hi all
    my ipod is not being recognized on the system..
    i dont know wat is the problem
    i tried the 5 Rs thing and i didn't get any king of result..
    i dont know wat to do
    please someone who could find a solution for this please reply and send me the solutions
    thanks..
    bye.

    See this...
    Windows Does Not Recognize iPod
    btabz

  • The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

Maybe you are looking for