F:facet ignores EL expression

Hi, I use this expression within my jsf page
<h:column>
<f:facet name="#{bean.someValue > 2 ? 'header' : 'x'}">
and bean method getSomeValue() is never called. I need use some expression to decide if table header will be rendered or not. Do you know some workaround?
Radim

well, this works good as I want. I don't know yet I can use this jstl c: tags within jsf pages. You have helped me to open new abilities for jsf. :)
thanks Henri
I try second workaround - I implemented EL value binding within javax.faces.webapp.FacetTag for "name" attribute and use tag as first
<f:facet name="#{bean.someValue==1 ? 'header' : 'x'}"> - it works fine too, but I will use your suggestion with c:if - it is more suitable.
Thanks Radim

Similar Messages

  • HT4259 I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets block somehow when the Express looks like it's set up and 'green' - no in

    I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets blocked somehow when the Express is online and looks like it's set up perfect and 'green' - but no internet connection for anything even though the Extreme is green and the modem is good.  Once I disconnect the Express, everything is good again.
    I've tried LAN, WAN, though a switch, direct connect, Extreme set to Extend the network, the Express set to be an extension.  Most of the time I get an error trying to update the Express.  But when it seems to be set up perfect, the entire house can't get to the internet.  Just when it looks right, it is so wrong.
    If anyone can give me exact steps (e.g., "...from the Base Station menu, select the Restore Default Setting option" vice "...just restore the defaults..."), I would greatly appreciate it.  I'm left to the conclusion that the Express is faulty.  I've been using Airport Utility 6.2 from Mountain Lion on one computer and Airport Utility 5.6.1 from Snow Leopard on another computer (the latter give more control while the former just want you to 'forget' the Express).

    I finally got it working.  I was trying to set it up ethernet.  My biggest mistake was when the new Express came on, I did not select 'Continue' - I went straight to manual thinking that I would get the most setup options in manual mode.  So everything I initially tried always resulted in 'wireless'.  Even when I would update or restore default settings, the Express would not completely restart. Or sometimes I would get an error. So most of the time I had to unplug it.  So when it came back up, none of my changes were retained. But there were a lot of times when everything was green and appeared to be fine. But anytime the ethernet cable was plugged in, no more internet.
    So here's the weird part.  When I finally tried 'continue' (vice manual), I would get 4 options.  One would be 'ethernet' extended.  So I would select it, it gave me green lights, all looked good, and still the same problem.  This is when I got frustrated.  I thought I had exhausted all possible combinations.
    But somehow when trying continue again after another restore, I only got 3 options.  One was the same ethernet extended option (can't remember what the missing 4th one was).  And this time it worked - it gave me the big green circle with the checkmark saying it was successful.  I don't know what I did different, but I know now that it won't work if 4 options come up to choose from.  It will work if only 3 options come up.  And success if only verified by the big checkmark.  Had anyone anywhere said the checkmark declaring success is validation, then maybe I wouldn't have gone down so many rabbit holes thinking it should have been successful.
    As for which Airport Utility I prefer, 6.2 looks nice, but it would just ignore the Express and would want me to 'forget' it and would not let me edit it.  Airport Utility 5.6.1 was the one that I ended up using the most and finally had success with.  It still strikes me as odd that there is no manually way to pick ethernet, it can only be choosen following a 'restore defaults', and only from the 3-option list (the 4-option list had the same ethernet choice, but it no worky).
    Thanks for the response.  I really do appreciate it.
    Aiport Extreme Gen5 - internet access and router
    Airport Express Gen2 - connected via ethernet, extending my wireless
    - configured while connect directly to the Extreme, but now on a switch (16-port hub)
    Using Airport 5.6.1
    1) Restore Defaults from Base Station menu
    2) Following restart, Select Continue
    3) Of the 3 option presented, select 'ethernet.... extend network...'
      - if 4 options are present, may not work
    4) Wait for the green circle with the big white checkmark.
    5) Connected Express to the switch where a cable went to other end of house - works.
    Dead-zone went from 2mbps to 24mbps.
    I probably spent 4 hours chasing my tail in anger.  The correct way took about 5 minutes total.
    Thanks again.

  • OWB10GR2 - Error when try to use 'MOD' function in an Expression

    Hi
    I'm trying to use the MOD function in an expression, e.g. mod(44,12), however, when I validate I get the error:-
    Line 2, Col 18:
    PLS-00201: identifier 'MOD' must be declared
    Line 0, Col 1:
    PL/SQL: Statement ignored
    Has anyone else come across this problem, and can anyone please suggest a solution?
    Thanks
    GB

    Not yet, thanks for the suggestion.
    If you use MOD in an expression or Constant, the expression does not validate but the mapping itself does validate, deploy and runs ok. So
    This issue has been reported as a bug therefore for the time being we can just ignore the expression validation message.

  • ORDER BY clause with expression

    Considering that all the column names and table name is valid, what happens internally when the following query is run?
    SQL> SELECT STU_ID, STU_NAME FROM STUDENT ORDER BY 2+3, STU_ID;
    What i found out was the rows get ordered in ascending order of STU_ID. It's quite clear that it is ignoring the expressing 2+3, so my doubts are:
    (a) Is it appending any pseudo-column to the table with 2+3 getting evaluated to 5?
    (b) If there exist a 5th column in the table student and we specify it in the select statement's select list (5 column names) then why its not considering it as 5 and sorting the data according that?
    (c) Is it true that, any expression we write is getting evaluated to NULL? Then is it that ORDER BY NULL evaluates to no ordering and the parser searches for next column-name or position (if specified) ?
    (d) if neither then, what's the reason of the ignorance?

    Hi,
    Welcome to the forum!
    987236 wrote:
    Considering that all the column names and table name is valid, what happens internally when the following query is run?
    SQL> SELECT STU_ID, STU_NAME FROM STUDENT ORDER BY 2+3, STU_ID;
    What i found out was the rows get ordered in ascending order of STU_ID. It's quite clear that it is ignoring the expressing 2+3, so my doubts are:
    (a) Is it appending any pseudo-column to the table with 2+3 getting evaluated to 5There's no pseduo-column involved. (Pseudo-columns are something that Oracle provides for you, without you having to spell out what you want. ROWID and LEVEL are examples of pseudo-columns. In this example, 2+3 is an Expression . Like pseudo-columns, expressions can usually appear in the ORDER BY clause, even though they are not actually stored in the table.)
    It's sorting first by the NUMBER 5 (= 2 + 3), not the 5th column. Since the NUMBER 5 has the same value on every row, every row ties for first place. The result of sorting by any constant is the same; the results are the same as not including that exrpression in the ORDER BY clause. That is the ORDER BY clause you posted is equivalent to
    ORDER BY  2 + 3
    ,         'foo'
    ,         SYSDATE
    ,         NULL
    ,         stu_idand it's also equivalent to
    ORDER BY  stu_idNone of the expressions except stu_id vary from row to row, so none of them affect the sorting.
    (b) If there exist a 5th column in the table student and we specify it in the select statement's select list (5 column names) then why its not considering it as 5 and sorting the data according that?As Solomon said, only number literals are taken to mean a column. 5 is a number literal, so
    ORDER BY  5means "sort by the 5th column", but 2 + 3 is not a literal (it's an expression that happens to include a couple of literals), so
    ORDER BY  2 + 3does not refer to the 5th colunmn.
    (c) Is it true that, any expression we write is getting evaluated to NULL? Then is it that ORDER BY NULL evaluates to no ordering and the parser searches for next column-name or position (if specified) ?No, when you way "ORDER BY x", the rows with lower values of x come first, followed by rows with higher values of x. Rows with the same value of x will be together, in no particular order with respect to each other (unless there is a tie-breaker expression later in the ORDER BY clause.
    That's exactly what happens when you say "ORDER BY NULL". NULL has the same value (actually, the same lack of any value) on all rows, so all the rows have the same value of x, and they will appear in no particular order.
    (d) if neither then, what's the reason of the ignorance?

  • Why won't my airport express work with iPad and iPhone?

    I have my internet line coming into the basement. Its been hardwired from the basement modem to an airport extreme upstairs, but we sleep in the basement and the wifi is bad. I have a 1st gen airport express. So my idea was to put the extreme down with the modem, and run the hardwire to the express upstairs. I did this and my laptops and iMac got the same signal as when the extreme was upstairs, but my iPad mini and iPhone only have two bars unless you stand 5 feet from the express. Macs get about 48mbps, iDevices about 20mbps. 15 feet away on the porch the iPad won't even pick up the signal. The apple store advised I put the extreme back upstairs, and the express downstairs wirelessly. They said the iDevices may have been ignoring the express and trying to get the signal from the extreme in the basement.
    Is there any way to use the express and the extreme to get solid signals up and downstairs? My fear is apple once again boned me and wants me to buy a new express.

    If it's the original b/g only model its model number will be A1084 or A1088. It appears in the red box as shown below:
    To configure one of them requires an older version of AirPort Utility. Check its model number.
    It should not be necessary to connect it to your Mac with an Ethernet cable. Connect it directly to the Extreme, "hard reset" it again if necessary, then launch AirPort Utility.
    It should appear in your Mac's Wi-Fi menu as "New AirPort Express...". Select that and proceed to answer the questions.
    The AirPort Utility setup page with the words "using Ethernet" is as shown:
    Its appearance in AirPort Utility will show it connected to the Extreme with a solid (not dashed) line.

  • Connecting to an xbox 360

    I've been driving myself crazy this afternoon, trying to get my xbox 360 to connect to the internet via my Airport Express.
    I know it can be done, at least with an Extreme (in b/g only mode), because I used to have it hooked up to my old roommates setup like that.
    My xbox and its wireless adaptor "sees" my wireless network, but fails to connect to it.
    Can someone determine once and for all, whether or not the auto settings on the 360 do in fact work. And if not, just what I should be doing?
    I note that a lot of the proposed solutions on the net precede the changes that the last update to the Airport Admin utility brought.
    I should note, that my connection is as follows:
    DSL to Airport Express via PPPoE - sharing out the net to my devices.
    My Wii has no problem connecting.
    Big help needed here, and will be much appreciatd.

    Yeah, the xbotch only supports 802.11b. I have my extreme configured to be n/b/g compatible, and it seems to work fine. Problem is that I have another xbotch in my bedroom which is on the other side of the house. I picked up an express to use to boost the signal from my extreme to that side of the house. The express comes online and connects to my airport extreme, but it doesn't extend the signal at all, my xbotch seems to ignore the express which is basically right next to it, and connects to the extreme on the other side of the house, thus only getting one bar of connection. If the express configuration software actually worked, I might be able to troubleshoot the problem to get it to actually boost the signal, but it doesn't even let me configure it all so basically I'm screwed.

  • Fixed REIN issue myself - now how do I stop the en...

    Hi
    I (and my neighbours) have been suffering from slow (ie: 160k sync) or total loss of sync for a week.  We've all tried contacting our ISPs (BT for me), with varying degrees of success.  The whole saga of trying to get the point across that if it's six houses having the same problem at the same time, it's not going to be my router, and if upon changing my filter the line syncs at exactly the same rate as before, then "monitoring" the line for another 24 hours isn't going to achieve anything, etc, etc, is worthy of a 10-page rant in itself that I'll resist inflicting on you all.
    Anyway - on my third call, finally talked to someone who eventually conceded it might be a REIN issue and booked an engineer (sorry, Broadband Boost) visit (although I almost got shunted down the further 48 hour "monitoring" period route).
    Engineer visit is booked for between 8am-1pm tomorrow.
    This evening, I happened to have the right combination of neighbours to do some investigations of our own, and sure enough, we have tracked down the problem to a single piece of electronic equipment in a house about 100 metres from my own.  The moment it was turned off, everyone's broadband jumped back into life, and I've gone from 160k sync back to my usual 1M (yes, it's blisteringly fast round here).
    So problem solved - everyone happy.  Except I've still got an engineer visit booked for tomorrow morning.
    I see the fault in MyBT, but there's no option to close it or to cancel the visit.  I've got a separate order number for the visit, but the order tracker says it can't track it.
    I've tried calling the number on the confirmation e-mail (0800 800150) but I've been sat listening to the lady apologising for the delay for 40 minutes now, and there doesn't seem to be any hope of my call ever being answered - I suspect everyone's gone home (in which case I'd wish they'd say so).
    So how on earth can I cancel the engineer visit?  What I don't want is the engineer turning up, declaring there's no fault, and BT deciding to bill me for the visit.
    Any suggestions (other than getting the offending equipment turned back on again and letting the engineer find it for himself)?
    Ta

    So what's the "correct" (ie: as honest as possible but with no risk of getting a £129.99 bill) course of action now?
    Do I ring and close the fault first thing tomorrow?  Do I explain to the engineer when he turns up?  Do I feign ignorance and express surprise the fault has "gone away"?  Do I go get my neighbour to turn the noisy kit back on again?

  • Only right and left channels work with external sound card

    Just got the USB Sound blaster xfi surround 5.. connected it to my laptop and connected to my home theather in a box using optical connection.
    downloaded and installed latest software but when I do a channel check I only get sound out of the right and left and even then it does not sound right.
    I have verified that my home theater in the box will play 5. with optical input and have verified with the built in test tones of the home theater that all speakers are working and correctly hooked up.
    The laptop is ruiing windows xp 3.
    Any suggestions.
    Thank you.

    Which S&V vi's do you mean to be dedicated to NI hardware?
    A quick peek into the addon show me waveforms as input and the sound vis have a waveform output.
    OK I didn't look at the examples and by habbit ignore the express vis .   But maybe you just want to use a program instead of programming your application?
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'

  • UTL_SMTP.vrfy()

    I have written a procedure that uses UTL_SMTP to send the emails. I want to verify the recipient address and am using the verfy() as below:
    v_destination :=utl_smtp.vrfy(mail_conn, recipient);
    I have given v_destination as VARCHAR2(500).
    It shows errors "statement ignored, wrong expression".
    Does anybody know how to use this function or is there an alternative way to check the status of emails?
    Thanks
    Amit
    null

    when you execute the program it would error out if the sender\recipient address is not available in the server.
    Regards,
    Bhagat

  • Help needed for function

    Hi All,
    Display     Setting setval display1 display2
    D1     0 0 d1 d2
    D1 1 0 d1_1 null
    D1 1 1 null d2_1
    D1 1 2 null d2_2
    Based on settting and setval values we will get the
    above rows,(Here setting =0 setval=0 combination is the default).
    display1:-
    Let say for settting=1,setval=1 first check for display1 value
    if it is null then check for setting=1,setting=0 if this is also null
    then we need to return display1 value for setting=0,setval=0.
    For setting=1,setval=1 the output is d1_1, and similarly
    for setting=1,setval=1 the output for display2 is d2_1.
    Please suggest how to implement this logic through functions,
    because the output of display1,display2----display-n we need to
    use in SQL queries.
    Thanks,
    Arvind

    As I said above, the first_value function with ignore nulls expression won't work in 9.2.
    So, you need to add some modification to achieve what do you want :
    SQL> with tbl as
      2  (select 'D1' Display,  0 Setting , 0 setval , 'd1' display1,  'd2' display2 from dual
      3   union all
      4   select 'D1' , 1, 0, 'd1_1', null from dual
      5   union all
      6   select 'D1' , 1, 1, null, 'd2_1' from dual
      7   union all
      8   select 'D1' , 1, 2, null, 'd2_2' from dual)
      9  select display, max(fv_d1) display1, max(fv_d2) display2
    10  from
    11  (select display,
    12          first_value(display1)
    13                over (partition by display order by decode(display1,null,0,1) desc, setting desc, setval desc) fv_d1,
    14          first_value(display2)
    15                over (partition by display order by decode(display2,null,0,1) desc, setting desc, setval desc) fv_d2
    16   from   tbl
    17   where  (setting=1 and setval=1)
    18   or     (setting=1 and setval=0)
    19   or     (setting=0 and setval=0))
    20  group by display;
    DI DISP DISP
    D1 d1_1 d2_1
    SQL> select * from v$version where rownum=1;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
    SQL> Nicolas.

  • Sound and Vibration Measurement Suite with PC Sound card?

    Hi all,
    I'm new to LabVIEW, so please bear with me.
    I would like to take some basic network measurements of a single channel hardware audio device. I have a PCI sound card which I was able to play sound files and receive input with using the sound2 Simultaneous_Sound_IO.vi. I'm wondering if it's possible and how difficult it would be to integrate this VI with the VIs associated with the Sound and Vibration Measurement Suite? I've downloaded the trial version of the Measurement Suite and it appears to include all of the measurements I need (frequency response, THD, dynamic range), however they're all designed to work with NI DAQ hardware.
    If it is possible, could someone point me in the right direction as far as integrating the two, or even post or direct me towards existing VIs if there are any?
    Thanks so much

    Which S&V vi's do you mean to be dedicated to NI hardware?
    A quick peek into the addon show me waveforms as input and the sound vis have a waveform output.
    OK I didn't look at the examples and by habbit ignore the express vis .   But maybe you just want to use a program instead of programming your application?
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'

  • New AP Express working but "ignored"

    hi,
    Here's the basic problem - I've replaced an old Express with a new latest spec one on my existing network. The new one shows up in Airport Utility ok, and the green light on the top of the Express is on.
    But when the two computers that are supposed to be using it access the 'net, the green light doesn't flash. So I'm guessing that these 2 computers are using the base station Express at the other end of the house, rather than the new one just a few feet away. (A quick trip downstairs shows the light on the downstairs Airport is flashing)
    I can't see any settings in the setup utility as to which Airport any particular computer is supposed to access - I assume that it should just be the nearest one ???
    Incidentally - is there some kind of update that I have to apply to the Airport Extreme cards in the mini and macbook to be able to use the faster speeds of the new Express?
    And a bit more detail ...
    All 3 Macs are on the latest OSX, and all recent updates.
    Downstairs I have a G5 iMac and an older Airport Express (v6.3).
    Upstairs I have a MacBook Pro and a single core Mac mini (1.5GHz), both of which used to connect to an older Express.
    Both are set to participate in a WDS network.
    Both are on Channel 1
    I've replaced the upstairs Express as the first part of a move to a faster network - I'm probably going to replace the downstairs Express with a Time Capsule.
    I _was just using MAC codes as a way of restricting access to my network. I've now deleted all of those and turned Local Control off, and set up a WPA/WPA2 Personal password system.
    Anyone have any ideas why the new Express is being ignored?
    thanks
    David

    Hi:
    I just got mine working after cruising the forum and here is a summary of what I did.
    The hardware: Linksys WRT54G router running dd-wrt, MacBook Pro, Airport Express 'n' firmware version 7.3.1 (originally, see below).
    Setup: Airport Express plugged into the wall beside my stereo so I can use my laptop to wirelessly play sound through the stereo. Macbook talks to the router wirelessly, router talks to the AE wirelessly.
    History: All of the same problems mentioned; loss of connection, doesn't seem to work etc. However, I always get reset to work. With it plugged in, use something to press and hold the reset button until it starts blinking amber (about 5 sec). This results in it coming up wirelessly with a default SSID.
    Solutions: Connect to the unit to your network with an Ethernet cable and reset the unit. Launch the Airport Utility. Manually downgrade to 7.3 (not sure if necessary but it is working now and it wasn't before). To do this, hover the cursor over the version label on the summary page and open the window. It downloads and updates via the Ethernet cable.
    Now go back to the Airport Utility (I find it needs to be closed and relaunched) and configure it as desired. In my case, I configured it to use WDS to connect to the Linksys Router (dd-wrt has this feature). To do this, you will need to set up the router first to get the MAC address for the link. On the Airport Utility, use manual configuration (you may need to reset the unit to get to default mode) and set it up for WDS and choose WDS remote in the WDS tab and enter the MAC address from the router WDS setup. I use MAC address control on my network and I don't want anybody sneaking in on the AE so I disabled 'allow wireless clients'. Also, it seems important that the router and AE be on the same channel (perhaps this is the ignore issue in itself). Update the configuration on the AE. Go back to the router and enter the MAC address of the AE in the WDS setup, save and poof, it works.
    Hope this helps.

  • Ignoring whitespace in regular expression

    Dear all,
    could anyone advice me how Oracle evaluate the following query:
    SQL> select regexp_substr('Baba black','b[a-z]+ [a-z]+',1,1,'x') from dual;
    REGEX
    blackI thought it would return 'ba', but instead it returns 'black'. How come 'ba' in the first word isn't detected by the pattern?
    Best regards,
    Val

    Hi, Val,
    Valerie Debonair wrote:
    Dear all,
    could anyone advice me how Oracle evaluate the following query:
    SQL> select regexp_substr('Baba black','b[a-z]+ [a-z]+',1,1,'x') from dual;
    REGEX
    blackI thought it would return 'ba', but instead it returns 'black'. How come 'ba' in the first word isn't detected by the pattern?Aside from case-sensitivity, that expression would never return a 2-character string, because you're looking for at least 3 characacters:
    'b[a-z]+ [a-z]+'
    1 2      3(1) the letter b
    (2) any letter(s)
    (3) any letter(s) again
    If you want Non-Greedy searching (where the + sign matches as little as possible, not as much as possible) us +? instead of +
    SELECT      REGEXP_SUBSTR ( 'Baba black'
                    , 'b[a-z]+? [a-z]+?'
                    , 1
                    , 1
                    , 'xi'
    FROM      dual;Ouptut:
    REG
    BabYou could get the same results by explicitly saying you want exactly 2 characters after the 'b', like this:
    SELECT      REGEXP_SUBSTR ( 'Baba black'
                    , 'b[a-z]{2}'
                    , 1
                    , 1
                    , 'xi'
    FROM      dual;

  • Yet Another Expressing anger and dissatisfaction over the Cyan situation. How can you ignore so many and not answer a single question about this?

    When I bought my Icon it was advertised as being "8.1 ready." Soon, I was led to believe, I would have Cortana. I was told that there were improvements to the camera that were in the Cyan firmware. As this phone had high spec hardware and was being called the Windows "flagship phone" on Verizon, I had no reason to doubt the update would arrive.
    Not only did it not, as we are all aware, but as months went by and people took to this forum, other Windows forums and Twitter to complain and question, Verizon has never put out a simple clear statement to their customers about what their intentions are and when they might take action. I feel deceived and ignored.
    To not address this in any way when so many are so vocally asking is rude. Quite simply rude.
    Even today the Icon is available online at the Microsoft store and the copy there says that this phone is "Windows Phone 8.1 ready" with an asterisk that leads to the disclaimer that "update availability and timing varies by carrier." It has been four months since this update began rolling out.
    What has led me to post this and lend my voice to the chorus is the articles published in the last day or two saying that Verizon has now changed the status of the update to "under development." Once again, without a single word of explanation or apology. Without a single message to all of their customers who have been asking for information for months. Again, just rude.
    These articles suggest the reason for the delay is Verizon's dissatisfaction with how their apps are working with 8.1. Of course there is no way for me to know if this is true since Verizon will not say anything at all about it. So I might as well believe what the reports say I guess. This of course makes the whole thing so much worse.
    Verizon, are you seriously holding up this thing that all of your customers want so as to make sure the horrible bloatware that no one wants will "work"?! You can't put out the update and then fix your terrible apps yourself like every other app maker? Only so that we can then uninstall them anyway? This is ridiculous and insulting.
    Verizon is always trying to disable phone features to customer's detriment and their profit. I don't doubt that is what this delay is about. Now it is difficult to tether my phone without paying an extra fee even though the feature is built into Windows Phone. Just a way to keep me from using the data that I payed for and that is allotted to me. In the old days you couldn't move pictures off of your phone through the usb cable you had. You had to send them over the network and use data.
    Why not try providing services instead of taking them away and delaying them? Why not treat customers well instead of ignoring their questions? Why not do what is right and allow Microsoft to update their hardware, hardware that we bought after being told that it was 8.1 ready?

    Hi Danny-CoolKID,
    AIM for Mac is not at version 5.9
    It is here http://www.aim.com/getaim/mac/latestmacosx.adp?aolp=0
    It is still at version 4.7 and the pages style has not been changed along with the other AIM pages.
    It does NOT do Audio or Video Chats.
    If you are looking at text only then also consider
    1) Proteus (Site being revamped at present)
    2) AdiumX
    Both these are third party software that can connect to multiple services.
    As iVmichael says there are other crossplatform solutions as well.
    YakforFree
    Paltalk
    9:22 PM Tuesday; June 13, 2006

  • Final Cut Express ignoring my camera!

    Hello folks. I've been using a Canon Vixia HF10 for the last 7 months with my Final Cut Express. I just plug the camera in, set it to "Video Play," turn it on, and Final Cut Express recognizes it and begins filling up the clip queue.
    Earlier this week I did some organizing of my desktop and decided to install a few updates I'd been lagging behind on. I don't even know if one of them was a FCE update or not, but now all of a sudden Final Cut Express just will not recognize the camera at all. Neither will iMovie. It's particularly frustrating because I can see that the camera is plugged in on the desktop, and can even play the files that are still on the camera via my VLC media player. I am fairly certain it's not the hardware causing the issue, but I can't figure out how to get FCE to pick it up via log and transfer!
    I tried clearing the cache and setting the preferences to Plain Stereo as per the suggestions of some other threads, but like I said the program is just not picking it up at all.

    Well, when I click Add Folder in the Log and Transfer pane, this is what I see:
    http://loonybob.homestead.com/files/Picture_1.png
    I can see the Canon drive, its several subfolders, and even the raw .MTS format video clips waiting to be edited. When I try to click "Open" on the drive, any of its subfolders, or a clip itself it says ""STREAM" contains unsupported media or has an invalid directory structure. Please choose a folder whose directory structure matches supported media." Thus leaving me with no way to import my clips.
    This is really boggling my mind considering it has worked just fine for the past 7 months.

Maybe you are looking for

  • JMS Client disconnects often randomly in Weblogic10.3 cluster setup

    Hi, It would be very helpful for us if someone can suggest the way to overcome the below jms issue. Our application recently migrated to Weblogic 10.3 from Weblogic8.1, It is a clustered set up with two managed servers each on different solaris machi

  • SQL Error on MBAM ISS server while MBAM client encryption

    Hi While I am starting the encryption through MBAM client getting below error.. unable to connect to the MBAM recovery and hardware service An error occurred while sending encryption status data for resolve this issue I have done the http://support.m

  • How to preserve the case of a text(upper/lower) in the transparent table

    Hi Experts,   I've created a Z table. Whenever I'm maintaing some text in this table via SM30, the whole text is being stored in UPPER case.    But I want to store the text as it is i.e. a combination of lower/upper/numbers etc.. Please advise. Thank

  • M4v to 4th gen ipod?

    Sorry if this is the wrong forum for this, please redirect as appropriate. I just purchased the new Bob Dylan ("Modern Times"), which contains five video tracks in m4v format. I naively assumed that, since I was not warned about compatibility issues,

  • Flash CS6 constantly crashing

    Anyone else having this problem? It seems like any time I get into detailed work with the pen tools Flash just explodes. I'm seeing it with other tools as well, but it really seems to hate the drawing tools. Is this the curse of the even number?