New issues with 1.5 FlashOnly and more

Hi,
I have a project that creates a SWC library, which I reference from several flash projects.   This all works great when I used the 1.4 lccsFlash library - compile in Flash Builder 4.5.  If I simply replace the 1.4 library with the 1.5 lccsFlash library.  It seems to build OK, but when I use the resulting library it generates the following error:
[Player: WIN 10.2.153.2]
VerifyError: Error #1053: Illegal override of recordMessages in com.adobe.rtc.session.managers.SessionManagerFMS.
I am not using the recordMessages - the LCCS related code simply creates an P2P audio.
That's issue #1.  Issue 2 relates to my reasons for switching to the LCCS 1.5 API.  I have a couple applications - different code bases that worked a couple weeks ago when that used the UserEvent.USER_CREATE and UserEvent.USER_REMOVE events to detect user's entering and leaving P2P audio conversations handled in rooms.  This all worked fine.  Today, in testing the same applications, I am not receiving these events consistently.  Sometimes I do, sometimes I don't.  There have been no changes to the LCCS code in the past two weeks - so I'm stumped.
My thought is that maybe some server-side changes occurred to suport version 1.5 of the API, so that's what led me down the upgrade path.  Unfortunately, that's when I ran into the VerifyError.
Any help would be greatly appreciated - I don't need to upgrade as much as I need to get the UserEvents working properly.
Thanks!

I've tested the following code in Flash CS5 and Flash CS5.5 with both the Flash 10 and Flash 10.1 swcs from version 1.4 with publish settings for Flash 10 and 10.2.  In this case, the code resides right in the FLA timeline frame 1.  I see similar results from my swc library.  In this case, I connect to an LCCS room, subscribe and publish.  Then I start a timer for 15 seconds - at the end of 15 seconds, I disconnect (stop the subscriber, publisher, etc.).  I've highlighted the trouble area in red, i.e. I stop the publisher, but the STREAM DELETE event is never received and the user is still publishing to the room after the stop call.  In the original post, I mentioned the USER_CREATE and USER_REMOVE not working, but I believe the real issue is that the publisher is not stopping properly and issues compound when trying to log into a different LCCS room.
I've also included the debug output from code execution in Flash below the code.  This shows Flash Player version 10.1.52.14, but I've tried it with FP 10.1, 10.2 and 10.3 - still the same results.
FLA Frame 1 Actionscript
import com.adobe.rtc.archive.*;
import com.adobe.rtc.authentication.*;
import com.adobe.rtc.clientManagers.*;
import com.adobe.rtc.collaboration.*;
import com.adobe.rtc.events.*;
import com.adobe.rtc.messaging.*;
import com.adobe.rtc.session.*;
import com.adobe.rtc.session.managers.*;
import com.adobe.rtc.session.sessionClasses.*;
import com.adobe.rtc.sharedManagers.*;
import com.adobe.rtc.sharedManagers.descriptors.*;
import com.adobe.rtc.util.*;
import flash.utils.Timer;
import flash.events.TimerEvent;
var _session:ConnectSession;
var _audioSubscriber:AudioSubscriber;
var _audioPublisher:AudioPublisher;
var _microphoneManager:MicrophoneManager;
var _callTimer:Timer = new Timer(15000, 1);
connect("testuser");
function connect(user:String):void
var auth:AdobeHSAuthenticator = new AdobeHSAuthenticator();
auth.requireRTMFP = true;
auth.userName= user;
try
  if ( _session == null )
   _session = new ConnectSession();
  _session.roomURL="https://collaboration.adobelivecycle.com/********/room01";
  _session.authenticator=auth;
  _session.addEventListener(SessionEvent.SYNCHRONIZATION_CHANGE, connectHandler);
  _session.addEventListener(SessionEvent.ERROR, connectHandler);
  _session.login();   
catch(e:Error)
  trace("Login Failed");
function disconnectCall():void
if ( _audioSubscriber != null )
  _audioSubscriber.close();
if ( _audioPublisher != null )
  if ( _audioPublisher.isPublishing )
   trace("Stop the publisher >>>>> THIS TRACE STATEMENT DISPLAYS")
   _audioPublisher.addEventListener(StreamEvent.STREAM_DELETE, stoppedHandler);
   _audioPublisher.stop();
function connectHandler(e:Event):void
if ( e.type == SessionEvent.SYNCHRONIZATION_CHANGE)
  if ( _session.isSynchronized )
//   _session.userManager.addEventListener(UserEvent.USER_CREATE, userHandler);
//   _session.userManager.addEventListener(UserEvent.USER_REMOVE, userHandler);
   _microphoneManager = MicrophoneManager.getInstance();
   _audioSubscriber = new AudioSubscriber();
   _audioSubscriber.subscribe();
   _audioPublisher = new AudioPublisher();
   _audioPublisher.subscribe();
   _audioPublisher.publish();
   _audioSubscriber.setLocalVolume(.8);
   _callTimer.addEventListener(TimerEvent.TIMER, endCall);
   _callTimer.start();
else
  trace("Not Synchronized");
function userHandler(e:UserEvent):void
switch(e.type)
  case UserEvent.USER_CREATE:
   trace("User Joined Room");
   break;
  case UserEvent.USER_REMOVE:
   trace("User Left Room");
   break;
function endCall(e:TimerEvent)
disconnectCall();
function stoppedHandler(e:StreamEvent):void
trace("Publisher Stopped >>>>>  THIS TRACE STATEMENT NEVER FIRES");
_audioPublisher.removeEventListener(StreamEvent.STREAM_DELETE, stoppedHandler);
_audioPublisher.close();
_session.logout();
Flash Output
Wed Jun 8 21:44:33 GMT-0400 2011    LCCS SDK Version : 1.4.0    Player Version : WIN 10,1,52,14
21:44:33 GMT-0400    requestInfo https://collaboration.adobelivecycle.com/*******/room01?uk=Zzp0ZXN0dXNlcjo=&mode=xml&x=0.7 039433768950403
21:44:33 GMT-0400    #TicketService# ticket received: yv02i0c04c6o
21:44:33 GMT-0400    Getting FMS at https://na2.collaboration.adobelivecycle.com/fms?ticket=yv02i0c04c6o&proto=rtmfp, attempt #1/3
21:44:34 GMT-0400    result: <fms>
  <origin>fms1.acrobat.com</origin>
  <proto_ports>rtmfp:1935,rtmps:443</proto_ports>
  <retry_attempts>2</retry_attempts>
</fms>
21:44:34 GMT-0400    protocols: [object ProtocolPortPair]
21:44:34 GMT-0400    [attempt 1 of 2] Connecting to 0/0: rtmfp://fms1.acrobat.com/cocomo/na2-sdk-d2039e98-9464-49e6-a616-ccd8befa7917/room01 #startProtosConnect#
21:44:34 GMT-0400    tempNetStatusHandler 0/1,NetConnection.Connect.Success
21:44:34 GMT-0400    isTunneling? false
21:44:34 GMT-0400    is using RTMPS? false
21:44:34 GMT-0400    RECEIVED LOGIN AT SESSION
21:44:34 GMT-0400      .user descriptor from server [object]
21:44:34 GMT-0400        \\
21:44:34 GMT-0400        .displayName [string]= testuser
21:44:34 GMT-0400        .role [number]= 50
21:44:34 GMT-0400        .userID [string]= GUEST-E953F98B-CFF0-4377-B455-481F770AE5D2
21:44:34 GMT-0400        .affiliation [number]= 5
21:44:34 GMT-0400    RECEIVENODES UserManager
21:44:34 GMT-0400    receiveAllSynchData UserManager
21:44:34 GMT-0400    RECEIVENODES FileManager
21:44:34 GMT-0400    receiveAllSynchData FileManager
21:44:34 GMT-0400    checkManagerSync:[object FileManager]
21:44:34 GMT-0400    RECEIVENODES AVManager
21:44:34 GMT-0400    receiveAllSynchData AVManager
21:44:34 GMT-0400    checkManagerSync:[object StreamManager]
21:44:34 GMT-0400    RECEIVENODES RoomManager
21:44:34 GMT-0400    receiveAllSynchData RoomManager
21:44:34 GMT-0400    checkManagerSync:[object RoomManager]
21:44:34 GMT-0400    checkManagerSync:[object UserManager]
21:44:34 GMT-0400    mainNetStatusHandler: NetStream.Connect.Success
Stop the publisher >>>>> THIS TRACE STATEMENT DISPLAYS
NOTHING TRACES BEYOND THIS POINT AND LCCS ROOM CONSOLE SHOWS USER IS STILL PUBLISHING

Similar Messages

  • Font issues with Snow Leopard, Adobe and more

    Since purchasing my new 27" iMac with Snow Leopard and instlaling Adobe Creative Suites 4, I have had numerous font issues. Apple has created huge problems for designers and printers that must use postscript type 1 fonts for helvetica and helvetica neue. Read more about this issue and some creative solutions (workarounds) go to http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers&discussionID=1090421 4&gid=75556&commentID=9732351&trk=view_disc

    Such font issues have also been discussed at some length in these forums, you can find it all by searching, e.g.
    http://discussions.apple.com/thread.jspa?threadID=2136944&tstart=0
    http://discussions.apple.com/thread.jspa?threadID=2154431&tstart=0
    A basic reference used here that you may find of value is:
    http://www.jklstudios.com/misc/osxfonts.html

  • HP ENVY 6t has many issues with USB headphone, Bluetooth and more serious issue

    HP ENVY 6t doesn't work with USB headphone, unfortunately. could u let me know how to fix it?
    Bluetooth mouse has been working for a day, it suddenly stopped working. Having checked the PC bluetooth connection, which said "Working properly".   Could you let me know how to re-connect, or re-work?
    "Not complete shut-down" blue screen issue right after receiving the HP PC when I closed display to be in sleep mode.
    I see the "Safe mode" "...." or "Normal mode" screen always.
    The HP PC is not stable UNFORTUNATELY.
    Even if just brand new HP PC, there seems to be many issues.

    I would recommend using this document for your mouse: http://goo.gl/XDRRy
    And using this document to troubleshoot your headphones issue: http://goo.gl/hV9fu
    Most of the time with USB headphones, you have to download the driver from the manufacturer before they will work properly.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Issue with Characters (tilde, accent and more)

    Hello all,
    Im triyng to do and export / import
    Export system:
    AIX 4.x, Oracle, 8.1.7
    Import system
    RedHat 5, Oracle 10.0.2
    After trying a lot with different character sets, setting and unsetting nls_lang in the target system i still having problems.
    The point is that an accent lleter (á) for example once imported is translated to a box (FFFD) or ascii code 191.
    We have tried changing NLS_CHARACTERSET and NLS_NCHAR_CHARACTERSET and setting NLS_LANG as environment variable.
    The source system has:
    env | grep -i nls
    NLS_LANG=american_america.US7ASCII
    LOCPATH=/usr/lib/nls/loc
    NLS_DATE_FORMAT=DD-MON-RR
    ORA_NLS33=/u01/app/oracle/product/8.1.7/ocommon/nls/admin/data
    NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
    SQL> select name,value$ from sys.props$;
    NAME VALUE$
    DICT.BASE 2
    DBTIMEZONE 0:00
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET US7ASCII
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZH:TZM
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZH:TZM
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_NCHAR_CHARACTERSET US7ASCII
    NLS_RDBMS_VERSION 8.1.7.4.0
    GLOBAL_DB_NAME PUB.xxx.yyy
    EXPORT_VIEWS_VERSION 8
    The target:
    env | grep -i nls
    NLS_LANG=american_america.US7ASCII
    NAME VALUE$
    DICT.BASE 2
    DEFAULT_TEMP_TABLESPACE TEMP
    DEFAULT_PERMANENT_TABLESPACE SYSTEM
    DBTIMEZONE -03:00
    DEFAULT_TBS_TYPE SMALLFILE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET US7ASCII
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET US7ASCII
    NLS_RDBMS_VERSION 10.2.0.1.0
    GLOBAL_DB_NAME SP9
    EXPORT_VIEWS_VERSION 8
    Anybody can give me any clue?
    Thanks in advance.
    Leonardo

    Hi,
    Does your indexed data (which you hope to match) contain "sofá" or "sofa" (no diacritic)? If the latter, and in-general, you may benefit from the dgidx flag --diacritic-folding* as described in documentation "Mapping accented characters to unaccented characters".  If you are running the latest version, this is all that should be required to generate a match.
    Best
    Brett

  • Sync issues with iPhone 6 Plus and iTunes

    I'm having issues with syncing my iPhone and iTunes.
    I am running: Mavericks 10.9.3 | iTunes 11.4 | iOS 8.0.2
    Every time I try to sync my iPhone 6 Plus with iTunes, the sync process gets stuck on step 5 of 5 (waiting for changes to be applied).  The longest this has occurred for is 2hrs.  After this time I have stopped the sync and ejected my iPhone.
    I had another issue with my phone when playing music.  When going to play music, I was given the error message saying that the song could not be found.  I connected my iPhone to iTunes and went to the tab in summery page, 'on this iPhone'.  I found the song and could see that next to the song was a small what looked like dotted grey circle.  After Googling this, I found a video saying that if i was to remove all my music and then add it again, this should fix the problem with this song.  I did this and this was when the issue occurred again.
    I unticked the option to remove all music but the sync did not finish. So I cancelled the sync, ejected my iPhone and tried again.  This time, the summery page of my iPhone said there was no music on my iPhone and the 'on this iPhone'  tab, this all so said there was no music however, my music was still on my iPhone including the song that would not play.  All played ok.
    I have read lots in the Apple forums about lost of difference reason this may be happening.  Things like bugs in iOS 8, app updates being transferred during the sync process, the latest iTunes version has bugs and even a dodgy USB cable could cause it.  My iPod running iOS 5 syncs all ok but I get this problem as well on my iPad Air.
    I all so had this issue with my old iPhone 4S.  The problem occurred when running iOS 7 and 8 on the 4S.  When I had it on the 4S, I did a restore of the 4S 4 times and thought I had found the issue down too a dodgy app.  However, now that it has happened on my new iPhone and still not using that app, could this be an issue with my Mac/iTunes?
    I am in contact with Apple Care, but this is such a long process. 
    So if anybody could please offer any advice on this or steps to try to maybe solve the issue, it would be really helpful.   Or if anybody is experiencing the same problem, it would be good to know its not just my devices and Mac producing this sync problem.
    I will update my post with any information provided by Apple Care as and when I get it.
    Thanks for reading and thanks for your time.
    Mark. 

    Hi,
    Just wanted to updated my original post and give some more information on this issue that I'm having with my iOS devices running iOS 8.0.2 and iTunes 11.4.
    Firstly I just want to updated my details about what version of Mavericks I'm running.  I'm running 10.9.5 - I put the wrong version down in my original post.
    So over the last week, I have had a few phone calls with Apple Care an am dealing with a senior technical advisor about this issue.
    I have been given some instructions that I am currently working through to see if it solves the sync issue with iTunes and my iOS devices. 
    The Apple Care advisor has pointed out that a iTunes version issue with music that I have ripped to iTunes and the current iTunes version could be what is causing the problem.  For example, every song that I have purchased from iTunes since having an account, I was told are all exactly the same the same when it comes down the to data/information about that track/album that iTunes stores with the music but when it comes to music that I have added to iTunes myself from a CD,  this was added and encoded with the version of iTunes that was running at the time of adding the music.  So going through all the music that I added to iTunes over the last 10 years, you can imaging that there was lots of mixed version of iTunes linked to lots of different music.
    At the moment, I'm having to go through all my music and find any that I have added and create a new ACC version of that music and delete the old version.  However, due to the amount of music that I have, this is going to take a long time.  When I was on the phone to the Apple Care advisor, we did several albums as a test and they all synced over to my iPhone.  This may just have been luck though at that time.
    Now, I'm not saying that this will solve the problem that I have with the sync issue but I am going to try it and see how I get on.  The only down side to this fix as far as I can see at the moment, is  that when it's all done, I think I will have to fully restore all my iOS devices to get music on to them.
    I will of course updated this topic when I have got through all my music and tried to sync my iOS devices.
    Thank you all for your comments.

  • Lenovo G560 - Issue with won't boot and black screen after HDD upgrade

    Lenovo G560 - Issue with won't boot and black screen after HDD upgrade.
     What happen: My laptop was working fine, no blue screen issue, no funny business at all. I bought a new SSD Intel 120 GB and thought it would be a good idea to replace the HDD. I shutdown and disconnected the power adapter, waited a couple of minutes and removed the battery. I opened up the back case and replaced the HDD. And put all the screws back and put the battery back in.
    Problem: The very first time I turned the power on, nothing happens besides a black screen. I pressed the dvd drive it works and opens up and closes. I waited for about 30 mins and still has blac screen. When I mean black screen, no bios menu, no logo, just a black screen with the fan sound on.
    I have tried these:
    1. Unplugged everything - battery, adapter, and pressed the power on button for about 60 seconds, nothing, the laptop turns on with the LED display on for both on and battery LED's. But nothing but black screen, no sound of windows loading just the fan and black screen.
    2. I tried putting back my old 2.5" and nothing but black screen.
    Thoughts and suggestions?
    Solved!
    Go to Solution.

    Hi Autoexit173,
    Welcome to Lenovo Community!
     As per the query we understood that you are facing issue with system not booting in your Lenovo G560 laptop.
    As you have mentioned that the system not booting, please try to remove the RAM and  turn on the system and check if you can hear any beep sound. Also try to clean the RAM slots and check for the issue.
    Click here for the steps to remove the RAM and refer page number 40.
    Hope this helps. Do post back if issue persists!
    Best regards,       
    Ashwin.S
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Is there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly?

    Greetings everybody,
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    I just launched a new website where I sell products with certain variations, for example please view this link: http://www.finerribbon.com/aegean-single-face-satin-ribbon.html
    On this particular product, the product variants are supposed to work in such a way where:
    If you select the value "1/8" from the "Choose Ribbon Width" field
    THEN
    The only options active and available to choose from in the "Choose Roll Size" field should be: 500 Yds, 20 Yds & Sample Swatch
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem where all the options are available regardless of the values chosen, basically the above functonality does not work.
    I was told that there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly, is this true? Can anyone advise me if there is a solution to this problem? I would sincerely apperciate it.
    Thank you very much for your time and help!

    Hi...
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem
    At the top of this window you'll see the following:
    Apple Support Communities > Mac OS & System Software > Safari > Discussions
    This the Safari forum for the Mac OS X.
    Better that you post your topic here  > Developer Forums: Apple Support Communities
    I do see on my iPad what you are rreferring to. But you shoudl get the feedback you need in the developer forum.

  • I just got tOhe iPhone 4Gs today and had contacts and photos uploaded from another phone synced new phone with iTunes for music and accidentally restored it so all my old iPhone stuff is on the new one is there any way to fix this

    I just got tOhe iPhone 4Gs today and had contacts and photos uploaded from another phone synced new phone with iTunes for music and accidentally restored it so all my old iPhone stuff is on the new one is there any way to fix this ?! Please help !!!!

    Could you be more specific about what exactly do you want to fix now?

  • TS1398 I have the ipad retina display version - I have a BIG issue with this when out and about that on about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!

    I have the ipad retina display version - I have a BIG issue with this when out and about, that only about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!
    The HTC hotspot works fine with everything else I connect to it.
    Also - ipad will not connect to my HTC via bluetooth. Again, I can connect to everything else with my HTC other than my ipad.
    I have to say this is my first venture into Apple products and I have always wanted to get away from my windows based laptop to get a MacBook, the problems I have had (flash player etc) & continue to have (as above) are putting me right off swapping over. I HATE technology that doesn't work and my ipad has been hard work!

    I stated my ipad as being an ipad2, but I now think it is a 3??? It was new Jan this year and is the 64gb retina display version.
    I really would like to get to the bottom on this problem wit mobile hotspots as it is sitting on my desk next to me now and I cannot get it to connect to my HTC mobile hotspot!!!! It might be taking a flying lesson soon at this rate!!! Grrrrrrr...........

  • I have been having issues with not receiving texts and voicemails daily, for a few months now. If I turn the phone completely off, when I turn it back on the messages will flood in from hours before. I can't be continually turning off my phone in case som

    I have been having issues with not receiving texts and voicemails daily, for a few months now. If I turn the phone completely off, when I turn it back on the messages will flood in from hours before. I can't be continually turning off my phone in case someone left me a message. How do I resolve this issue?

    Wifi:  my Cell phone will remember 10 wifi connections.  So delete any you don't use often and your home wifi and try to enter home wifi again.
    if it still won't connect to home wifi, call your internet provider for help.  You may need a newer router or different settings Or upgraded service.   Your phone seeks the best connection and will refuse lesser connections.
    last resort.  Backup the phone.  Do a full reset, then restore as new with the backup.
    if still not fixed, go back to apple and insist on repair or replacement.
    HOWEVER.   voicemail is not a wifi issue, it's a carrier function, which is why the SIM card is a suspect.

  • Why does FF save files to desktop, when I have "downloads" checked in options? This is a new issue with the latest version 3.6.3 Windows XP Thanks.

    Why does FF save files to desktop, when I have "downloads" checked in options? This is a new issue with the latest version 3.6.3 . Using Windows XP Driving me nuttier! Thanks.
    (Is is that MicroNetFrame Asst thing?)
    == This happened ==
    Every time Firefox opened
    == When I installed latest version

    Thanks for your reply. I appreciate your help.
    It was just a hunch that MircoNetFrame was causing the problem. I disabled it as you suggested, and I still have the problem.
    I just changed under Tools>Options> General - had checked "ask me every time" under downloads, so instead of asking me, FF saved the download to I know not where. It no longer saves it to the desktop, leaving a duplicate in "my documents".
    In windows, I have found unless one knows the entire name of the document, one can never find anything. It isn't listed under recent ''''''__. I can't recall the nomenclature, but the
    capability is ridiculous. So, I don't know where that file I just downloaded is!
    I downloaded a PDF file, but this happens with all DL's. It was so easy to have them all stacked in one place and I could recall
    what I had and when I downloaded it easily.
    Do you have any other suggestions other that going back to the old version of FF, which I would rather not do?
    Thanks again for your time, it is very considerate to help a complete stranger, I must say. Sounds like something I might do! Cheers!

  • Are there any known issues with Adobe Edge Animate and Yosemite? Experiencing performance issues since upgrading OS

    Are there any known issues with Adobe Edge Animate and Yosemite? Experiencing performance issues since upgrading OS. Animation I was working on that had been performing in browser fine suddenly stopped working, and was not related to any action I had done at that point. Also was working in it today and program stopped responding to key board short cut commands.

    I am having a whole slew of odd interface problems with a fresh 2014.1.1 on a fresh macbook pro with latest Yosemite. Program locks up, cursor selections don't show, things disappear. I have a mac mini also and the program runs fine on it. Is there possibly something related to the solid state hard drive in new macs?

  • However, we've had issues with other legacy systems and programs for outlook

    I have a user who when she logs into her workstation and tries to access her outlook folders she is denied access. If she removes and then adds them back they work. Only one other person on our network had this problem which I initially thought was connectivity
    related. I replaced their cat five cable and that seemed to solve their problem. I tried this with this user and it cleared up for about a week but happened again today. Any thoughts or experience with this. Outlook doesnt support archives in a network share
    so I cant turn to them. It uses a login batch script to load mapped drives according to department. This all predates me so I did not build them. However, we've had issues with other legacy systems and programs so it is highly possible that this could be an
    issue.

    Will:Hi! Hi!
    I use Firefox and it is now No. 1 on my choice of browsers. I agree it doesn't like the "for IE only" coded sites but then IE is now a non issue as it is dead in the water! So Safari is now really bloated and getting slower by the version. Firefox is quick, good to look at with numerous skins, and what is more has become the browser of choice for web developers on both platforms because it sticks to the WWC3 code. Camino is just another flavour of Netscape which seems to be a bloat AOL IE wannabee product. Do yourself a favour and download Firefox. Give it a few spins around the block and I'm sure you will agree. As for the sites it declines to accept because of bad code, then I would suggest a strong letter of protest to the webmaster! For too long IE has been flouting the rules and trying to be the only game in town. Take some affirmative action and let the webmasters know there are other browsers available to users. If you are still not a believer then check this out:
    http://www.pcworld.com/reviews/article/0,aid,118959,00.asp
    May the force be with you!

  • HT4628 Still having issues with Lion os X and wi-fi

    I am still havign issues with Lion os X and wi-fi.   I have 3 domputers in my house including the new macbook pro that has lion os x installed.    The wifi drops out all the time (every 2 minutes).   I have followed all the instructions on how to fix this but I am still having issues.    The other two computers work fine,  one of the is Lion os X that has been updated but I managed to play with the setting and fix this one.   This computer worked fine on Snow leapard and then a soon as I installed Lion the wifi started having issues.
    When will apple make an update that is going to fix this problem.     You want to buy a new computer that works,  I took it into apple and they told me that it is my router,  but I know it is the software as there are 100's of blogs and threads about this exact issue occuring only when their computer was updated to Lion.
    Is there anything else I can do to fix this issue other then un-installing Lion and buying Snow Leapard?

    Does this problem happen with just your airport base station?  Do you have a 3rd party wireless router?  Can you duplicate the problem using any wifi access point?  Did your computer come with 10.7 preinstalled?  Did you purchase the applecare with your computer?

  • HT1349 I just purchased  new PC with windows 8.1 and downloaded Itunes, but when I try to add my Music Library from the back up dvd's I created off my old computer it doesn't automatically start the back up process like it did before. How can I "restore"

    I just purchased a new PC with windows 8.1 and downloaded new itunes, but when I try to "restore" my music library from the DVDS i made from my old pc it doesn't automatically restore my library as it used to.  How do I restore my music library from DVDS?

    Thanks but I already did read all of the help notes, which aren't very helpful for this.  I did find out the problem- Apple.....they evidently changed one of the major upsides to their old software- being able to back up your entire library onto dvd's- so you can longer do that or restore from the dvds created from older versions of itunes.  I suspect greed is at play in that Apple now wants you to pay $24.95 per year to use a "cloud" service where they back it up for you.  I can buy a lifetime supply of back up dvds for one year's worth of cloud.  So I am now looking into other music software as I am Appled-out.  There is no reason for them to take away the back up portion of the software other than to sell you thrir cloud service.  As we have already given them a ton of money for 5 Ipods and a bunch of music, I think we have contributed enough.  Time to look to solutions outside of the Apple money tree.  But thank you for reading and replying.

Maybe you are looking for