Does BLOB Support in Reports really work? As referenced in the doco..

I am referring to chapter 15 of the application builder user guide.
http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/advnc.htm#BCGBCHBD
Oracle Application Express includes BLOB support for both classic and interactive reports. If you use a wizard to create a report and include a column of type BLOB, basic support will be included. Additional information should be added after generation to make the download capability more user friendly.
Consider the following example:IMAGE:EMP:RESUME:EMPNO::RESUME_MIMETYPE:RESUME_FILENAME:RESUME_LAST_UPDATE::attachment:Resume
If you have a report column with a format mask that begins with 'IMAGE:', you will see a link below the format 'BLOB Download Format Mask'. This popup assists in entering all the parameters necessary for the IMAGE format.>
So, I have just done the following.
CREATE TABLE "IMAGE"
    "IMAGE_ID" NUMBER NOT NULL ENABLE,
    "BINARY" BLOB,
    CONSTRAINT "IMAGE_PK" PRIMARY KEY ("IMAGE_ID")
  create sequence seq_image start with 1 increment by 1;
  CREATE OR REPLACE TRIGGER "BI_IMAGE" BEFORE
  INSERT ON IMAGE FOR EACH ROW BEGIN
  SELECT seq_image.nextval INTO :NEW.image_id FROM dual;
END;
/Then create a form to upload images. That's successful.
Then create a page with report to display the images.
select image_id, binary
from imagePreview report, just get '[unsupported data type]' displayed for the binary column - which is fine.
So then I go to into the column attributes to specify the BLOB format mask, giving me:
DOWNLOAD:IMAGE:BINARY:IMAGE_ID::MIME_TYPE::::inline:Download
I have tried both the format mask for providing a download link, and displaying the image, both to no avail.
All I get is:
ORA-06502: PL/SQL: numeric or value error: character to number conversion errorAm I missing something?
nb: Yes, I do know about the APEX_UTIL.GET_BLOB_FILE_SRC function, but since the above method is in the documentation, you would think it would work, right?

Hi,
Yes, mime type is in the table, and is referenced in the format mask.
OK - I didn't have a filename column, and since it is not a required field for the format mask, I figured I wouldn't need it - Although I gave the example of using the link, I actually just want the image to display, using the technique that is documented - which also produces the same error. Both should work, no?
Even so, i just gave it a try with filename referenced in the format mask, same issue.
Ta,
Trent

Similar Messages

  • "SQL Server 2008 Reporting Services does not support map report items"

    Hi,
    I am trying some new feature that are introduced in SQL Server 2008 R2 version. While I try to use "Map" control within it, it threw the following error:-
    "Error 1 The map, Map1, was removed from the report. SQL Server 2008 Reporting Services does not support map report items. "
    -Also, similar kind of error I am getting for "Indicator" control.

    Hi Tej,
    I think you get this error message when you are deploying a report to report server using BIDS, correct?  If not, please provide more details on your scenario :-)
    If I guessed correctly, then this message is a result of trying to deploy a map report (a SSRS 2008 R2 feature) to a non-R2 2008 report server.  When deploying a report of RDL2010 format to a non-R2 report server, BIDS will downgrade the file to RDL2008 format, so that the non-R2 report server can process it.  Any report elements using features not supported in RDL2008 will be dropped during this downgrade process.
    BIDS gets the server version from a report project property called TargetServerVersion:
    http://technet.microsoft.com/en-us/library/ee635898(SQL.105).aspx
    If your report server is indeed the 2008 R2 version, then the TargetServerVersion property should be set to "SQL Server 2008 R2 Reporting Services."  The project property page also has a "Auto Detect..." option if you are uncertain about the version of your report server.
    Hope this helps!
    Cheers,
    LawrenceThis posting is provided "AS IS" with no warranties, and confers no rights.

  • Does anyone have Forms & Reports 10G working properly on Macs?!

    In our work enviroment we have about a third of our company working on Macs - currently we have client server forms and reports 6 running on a citrix server for the Mac users. I am in the process of upgrading our systems to 10G (10.1.2) in the hope of being able to get rid of the citrix servers and have everyone running straight through a browser. However looking at the supported versions:
    http://www.oracle.com/technology/software/products/ias/files/as_certification_r2_101202.html#BABDECDG
    it seems that only Safari 1.2 is supported on Macs. Now I find it very difficult to believe that many/any working enviroments are running Safari 1.2 as it is updated via security updates OS updates etc and they are currently upto 2.0.3. As a result within our company Firefox is the browser we use as we have direct control over updates. Testing through firefox 1.5 is giving me font issues and you cannot click into a specific record on a multi-row block, having problems trying to get reports running, logging on etc. I would like to know whether anyone is running forms and reports 10G on Macs in a production enviroment and what browser / java versions are used and does everything work as it should. Thankyou

    Hi, perhaps I haven't been clear enough yet I'm getting the same errors that I have listed twice thus far on safari! - and here is why we don't use safari
    "As the standard Mac desktop here is set up as a Windows peer in what is technically a "Windows-only" environment, we get some issues where some parts of OS X doesn't play nice with the infrastructure. The way our build is tailored, most of our users don't see the integration "joins" and their Macs operate as they'd expect, which is how we like it too.
    That doesn't mean we don't get occasional problems with OS updates and our infrastructure. For example... Apple will often put a bunch of security patches, application fixes and system revisions into their Software Updates.
    On a standalone system, or "vanilla" networked Macs, this is great, as you get a bunch of timely updates in one easy-to-install bundle. Unfortunately, our Mac OS X build is NOT a standard one and some parts of Apple's updates can cause us problems.
    Safari, while being the best browser experience on the Macintosh for most people, suffers a lot from our environment's strictures. You may know that Safari was already drawing heat from end users over its apparent lack of support for some websites (particularly personal banking), so the switch to Firefox was happening anyway. We pushed it on once we got hit with the most recent problems with Safari and proxy authentication. When we stripped away our general blind fanaticism for Apple-made software, we realised that the Volvo alternative (Firefox) was actually a more solid performer.
    Finally, as the browser is a pretty important piece of software for us (aside from browsing it's a method of deploying apps), we think it makes good sense to decouple it from the OS. With Safari we don't have the same control over versioning as we do with Firefox, while Firefox has most of the Safari features that our 10.3 userbase can access."
    So can anyone help with the specific errors I listed above thanks.

  • BLOB Support in Reports - Download Text

    I have included a BLOB database column within my report. Now I would like to use the name of the file that was uploaded into the BLOB database field as my download text instead of the default download text "Download".
    According the APEX User's Guide 4.0 substitution strings are permitted in the 11th position of the DOWNLOAD format:
    11 Download Text String used for the download link. If nothing provided, Download is used. Note that this will support substitutions (useful for translated applications).
    I have tried the following DOWNLOAD format but the file name is not substituted as the download text.
    DOWNLOAD:PIBDOCS:PIBDOCS_FILE:PIBDOCS_ID::PIBDOCS_MIME_TYPE::PIBDOCS_BLOB_DATE:PIBDOCS_CHAR_SET:attachment:#PIBDOCS_FILE_NAME#
    Is there any way to use a database column (PIBDOCS_FILE_NAME), instead of a page item, within the substitution string?

    create another column for file name, then you can use jquery to change text, title of td "download". here is sample code you can use.
    <script type="text/javascript">
    $(document).ready(function ()
    $(".apexir_WORKSHEET_DATA tr").each(function() {
      $this = $(this)
      var fileName= $this.find("td:nth-child(9)").text();
      $this.find("td:nth-child(7) a").prop('title', fileName);
    $('.apexir_WORKSHEET_DATA td:nth-child(9),th:nth-child(9)').hide();
    </script>

  • Does BOXI support crystal reports with parameter references in formulas?

    I am designing a report in Crystal Reports XI Developer that contains parameters, which are passed to a stored procedure and are also used within formulas ( in Crystal Syntax ie. {?FORMAT_ID} ) in the report itself.
    I can run the report successfully in CRXI Developer.  The formulas use the correct values from the parameters entered during execution and everything looks good.
    I then deploy the report to Business Objects Enterprise XI.  I do all of the things necessary to manage the report including setting up the proper database connection information and default parameter values.
    When I run the report using the Crystal Report Viewer, I get the following error message:
    Error in File Forecasting.rpt:
    Error in formula <Report Format>.
    'if (not isNull({?FORMAT_ID} ) ) then
    This field name is not known.
    Details: errorKind
    This happens when I press the "Preview" button in the Manage Object dialog from Crystal or when I run the report using InfoView.
    I have changed the formulas and it doesn't seem to matter what the specific content of the formula is; other than the existence of a parameter reference in the formula.  If I comment out the parameter and replace it with a hard-coded value, it gets through the formula fine.
    Does Business Objects Enterprise XI support crystal reports with parameter references in the formulas?
    Thanks,
    Tim H.

    Hi,
       In Crystal Reports under File -> Report Options >check convert Null Values to default > Verify on first refresh > Verify stored procedures on first refresh.
    This corrected the issue by allowing the query engine time to locate those columns and map them to the query being sent by the report.
    The convert null values was added because those field were being used in the record selection and grouping.
    Regards,
    Vinay

  • Does Illustrator on Windows 7 really work like it does on a Mac?  If so, how much is it and where should I buy it.

    I am about to try the Windows 7 version of Illustrator.  Does it really work properly or do I have to have a Mac.

    Cloud Plans https://creative.adobe.com/plans
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html

  • BLOB download via WPG_DOCLOAD not working: what's with the document table?

    Hi,
    We upgrade our APEX application to 4.2 on RDBMS 11.2.0.1.0, and now our file downloads are failing with 404-not found errors.
    Documents are stored as BLOBs in a dedicated table TICKETDOC. Uploading works fine via APEX, I can query the docs in the table and all is looking fine so far.
    I have a report column formatted as HTML, making it a clickable thumbnail which should open the file in a separate browser window when clicked.
    HTML format for column:
    +*
    <img src="#OWNER#.DOWNLOAD_FILE?p_id=#THUMBNAIL#" height=40">
    </a>
    *+
    This is supposed to call our own procedure TICKET.DOWNLOAD_FILE, which calls WPG_DOCLOAD:
    +*
    create or replace
    PROCEDURE "DOWNLOAD_FILE" (p_id in number) AS
    l_mime varchar2(255);
    l_length number;
    l_file_name varchar2(2000);
    lob_loc BLOB;
    v_found BOOLEAN := FALSE;
    CURSOR c_doc IS
    SELECT doctype, doc, naam, DBMS_LOB.GETLENGTH(doc)
    FROM ticketdoc
    WHERE ticketdocid = p_id;
    CURSOR c_mail IS
    SELECT mimetype, content_attachment, filenaam, DBMS_LOB.GETLENGTH(content_attachment)
    FROM mailattachment
    WHERE mailattachmentid = p_id;
    param_val owa.vc_arr;
    p_table Varchar2(200);
    l_errm varchar2(2000);
    BEGIN
    p_table := 'TICKETDOC';
    IF p_table = 'TICKETDOC' THEN
    OPEN c_doc;
    FETCH c_doc INTO l_mime, lob_loc, l_file_name, l_length;
    IF c_doc%FOUND THEN
    v_found := TRUE;
    else
    END IF;
    CLOSE c_doc;
    ELSIF p_table = 'MAILATTACHEMENT' THEN
    OPEN c_mail;
    FETCH c_mail INTO l_mime, lob_loc, l_file_name, l_length;
    IF c_mail%FOUND THEN
    v_found := TRUE;
    END IF;
    CLOSE c_mail;
    END IF;
    IF v_found THEN
    --initialise owa with some environment variable
    param_val (1) := 1;
    owa.init_cgi_env(param_val) ;
    -- Set up HTTP header
    -- Use an NVL around the mime type and if it is a null, set it to
    -- application/octect - which may launch a download window from windows
    owa_util.mime_header(nvl(l_mime,'application/octet-stream'), FALSE );
    -- Set the size so the browser knows how much to download
    htp.p('Content-length: ' || l_length);
    -- The filename will be used by the browser if the users does a "Save as"
    htp.p('Content-Disposition: attachment; filename="' || l_file_name || '"');
    -- Close the headers
    owa_util.http_header_close;
    -- Download the BLOB
    wpg_docload.download_file( Lob_loc );
    END IF;
    exception
    when others then
    l_errm := sqlerrm;
    raise;
    END;
    *+
    The idea is to display a thumbnail image which, when clicked, will open the document (image, pdf, whatever) in a new browser window.
    Executing the procedure in SQLDeveloper works fine and I can query the downloaded BLOB (getlength etc).
    However, when I click the thumbnail in the APEX application I get a 404.
    Enabling debug via exec dbms_epg.set_dad_attribute('APEX', 'error-style', 'DebugStyle') yields the following:
    +*
    Fri, 31 May 2013 09:41:35 GMT
    Error retrieving document.
    Please verify that the document you requested exists in the document table
    DAD name: apex
    PROCEDURE : TICKET.DOWNLOAD_FILE
    URL : http://XDB HTTP Server:8080/apex/TICKET.DOWNLOAD_FILE?p_id=1091
    PARAMETERS :
    ===========
    p_id:
    1091
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle Embedded PL/SQL Gateway/11.2.0.1.0
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=8080
    SERVER_NAME=XDB HTTP Server
    REQUEST_METHOD=GET
    QUERY_STRING=p_id=1091
    PATH_INFO=/TICKET.DOWNLOAD_FILE
    SCRIPT_NAME=/apex
    REMOTE_HOST=
    REMOTE_ADDR=127.0.0.1
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=ANONYMOUS
    ORACLE_SSO_USER=
    OSSO_IDLE_TIMEOUT_EXCEEDED=
    OSSO_USER_GUID=
    HTTP_CONTENT_LENGTH=0
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
    HTTP_HOST=localhost:8080
    HTTP_ACCEPT=text/html,application/xhtml+xml,*/*
    HTTP_ACCEPT_ENCODING=gzip,deflate
    HTTP_ACCEPT_LANGUAGE=nl-BE,en-US;q=0.5
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=__utmc=31852350; __utmz=31852350.1366364489.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utma=31852350.974780296.1366364489.1366364489.1369990367.2; ORA_WWV_USER_61804796552973=930EBD5017F98F039F659148EAE74140; ORA_WWV_REMEMBER_UN=JO:ticket; ORA_WWV_F4000_P4150_TREE=RenderingTree%3A3727930518286945_columns%3A3729417793306453; SHARED_SESSION=87D7D96BC5A457924CB86A817315D30E; [email protected]
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=http://10.0.25.1/apex/f?p=101:40:7036965658754:::::
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=
    HTTP_ORACLE_CACHE_VERSION=
    HTTP_AUTHORIZATION=
    WEB_AUTHENT_PREFIX=
    DAD_NAME=apex
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wwv_flow_file_objects$
    PATH_ALIAS=
    REQUEST_CHARSET=AL32UTF8
    REQUEST_IANA_CHARSET=UTF-8
    SCRIPT_PREFIX=
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=
    *+
    I made minor adjustments to the original (pre-4.2) code:
    * initialised owa with some environment variable
    * registered DOWNLOAD_FILE in wwv_flow_epg_include_mod_local
    but still no success.
    Any ideas on how to fix this?
    Greetz
    Jo

    As I understand:
    The procedure works.
    The link 'appears' to work. (ie you saw the procedure run a 2nd at the database level)
    But it doesn't actually work (because you get a 404)
    I think I ran into an issue, on a completely different page type, that produced an 'error 404'. (I can't seem to reproduce it, though)
    The only way I discovered what was really going on was with an HTTP sniffer. (eg HTTPFox for FireFox)
    Through that, I noticed that the browser was (for some reason) calling a completely non-sensible APEX page. (hence the PAGE NOT FOUND error)
    My solution was to add a "submit to self" branch point.
    If that doesn't work, I'm at a loss.
    MK

  • HELP ~ Does disputing credit reports really work?? Nervous!!

    Hi Guys,I'm working on my husband's and my credit.  I'm drafting a dispute letter found on the MY Fico site and well, I'm a bit nervous!   I'm hoping to get all the collections removed because of errors and the misrepresentation of reporting as Factoring companies and they are in fact Junk Debt Collectors! Debt was purchased after the charge off happened!
    I could use a bit of help with what I've found.  I'm stuck on how to dispute or if it's worth the time to do so.  Thanks for any help. One Collections is with Calvary (has 1 Cap One account) because the DOFD is wrong and the last time they updated on his report was in May 2015.  I don't really want to get them to report again! LOL  The other Collector PRA has 2 Cap One accounts and doesn't include a DOFD!  Also I noticed on the Cap One charge offs they have the last DOFD wrong on all 3! Last Payment made 12/15/2011 on payment history box it's Jan 2012 OK Feb 2012 30days late. 2 other CAP ONE Accounts have the Last Payment on 6/28/2012 and in payment history box it's July 2012 OK Augst 2012 30days late,
    Plus for Fingerhut, the Date of last payment is July 12, 2012 and in pay history it has 9/12/12 OK 30 day late October 2012 then Nov and Dec with N/R and Jan 2013 120 days late then FEB N/R then Charge off in March 2013.   

    Hello lookn_glas_shrd,
    I think the majority of us have been in the position you're in, and I would like to help you with your situation. The amount of information I am able to see depends on how long it has been since the service was disconnected. I would have to access your account information. I assure you that I am an employee of Verizon Wireless. Please send me a DM (Direct Message) with your name and your mobile number, as well as the zip code of your billing address. If I cannot view the necessary information, I can assist by pointing you in the right direction. Once I see the account, I will be able to gather the necessary data and provide you with 100% information. More importantly, you will be provided with peace of mind in knowing exactly what's going on and how we can resolve this together.
    I look forward to hearing from you!
    Best regards,
    Christina B
    VZW Support
    Follow us on Twitter @VZWSupport

  • Safari does not support community toolbar ive searched my computer for the following like people have said in similar posts but none seem to work /Library/Application Support/Conduit /Library/InputManagers/CTLoader /Library/Receipts/ctloa

    hey all i know that there have been many post about this community toolbar thing that pops up when opening Safari
    i have searched my computer for the things that have been posted in the other posts to delete
    /Library/Application Support/Conduit     (no conduit in folder)
    /Library/InputManagers/CTLoader         (i dont have input managers i have input methods but still no CTLoader)
    /Library/Receipts/ctloader.pkg                (no ctloader.pkg)
    /Library/Receipts/<Toolbar name>.pkg      (nothing in this one either)
    /Library/Application Support/SIMBL/Plugins/CT2285220.bundle         (NADA)
    /Users/<User name>/Library/Application Support/Conduit           (NOTHING EITHER)
    where / is the root library on your Hard Disk.
    If you are running Snow Leopard you should also look here:
    Library/launchAgents/com.conduit.loader.agent.plist
    Library/Application support/conduit plugins
    i have pretty much looked everywhere i dont even know where this thing came from
    can anyone lend some advise i really do not want to take the 2 hour ride to apple to get this off my computer
    thanks so much

    When you see this path:   /Library   That is your root Library.
    Open a Finder window.
    Select MacintoshHD in the Sidebar on the left then open the LIbrary folder then the Application Support folder, then InputManagers folder, the Receipts folder.
    For this path:  ~/Library/Application Support  (your Home library)
    The Tilde character ~ represents your Home folder.
    From that same Finder window select your Home folder in the Sidebar. It has a small house icon. Open the Library folder then the Application Support folder.
    Move all the Conduit/CT associated files you posted above to the Trash.
    Try Safari.
    I've yet to find the launchAgents.plist file in any Safari crash report in years. I don't think that's a problem.
    Another way to find files on your hard drive is to go to your Finder.
    From the menu bar at the top of your screen click Go / Go to Folder.
    Example. Type in:  /Library/ApplicationSupport   click Go
    Or type in:  ~/Library/Application Support   click Go

  • Gapless Album -- Does anyone notice it doesnt really work ?

    Sound Familiar?
    I have the same problems with "Sound Check" and i just posted a Topic.
    I have a bunch of quotes and 1-liners from movies -- and they almost always blend into eachother.
    i know that the track playing has to be marked as "Gapless" -- i also know that the track following it has to be marked "Gapless" also.
    so that isnt the problem
    It barely ever works -- so i always get overlap -- and thus the spoken words are totally ruined.
    anyone else have the same experience?
    thoughts / feedback ?
    thanks!

    no. you're missing the point.
    Gapless Album is supposed to allow you to have Crossfade set any way you want -- and by Marking a Track or group of Tracks as "Gapless" they will be immune to Crossfade settings.
    But my point is that it doesnt work very well.
    Maybe its that the tracks are short -- but i dont see how that should matter.
    So anyhow...
    anyone else?
    Message was edited by: nysepete

  • I downloaded the newest version and there is a Circle with a slash through it over the firefox icon. When I click on it the message is the system does not support this version. How do I reinstall the previous version?

    I updated firefox. When I did there was a circle with a slash (as in No!) across the firefox icon. I clicked on it to open the browser and the error message reads: the application firefox cannot be launched - 10661
    How do I go to the previous version that worked just fine?

    Firefox 3.6.x is the last available from Mozilla for PPC Macs. <br />
    http://www.mozilla.com/en-US/firefox/all-older.html
    For older Macs that aren't supported in Firefox 4+ versions, try TenFourFox for PowerPC's running Mac 10.4.11 & 10.5.8 . <br />
    http://www.floodgap.com/software/tenfourfox/<br />
    http://tenfourfox.blogspot.com/ <br />
    https://code.google.com/p/tenfourfox/wiki/PluginsNoLongerSupported

  • I want to know if ios 7 gives tv out support to third party apps and does it support viewing office documents in a tv through the tv out cable without any other software

    I have an iphone 4s and i use it to display pictures,videos in a tv or a projector using the tv out cable, i want to see if ios 7 still support this feature and does it give this support to third party applications too. I does io7 need any third party applications to view microsoft office documents in a tv using cable??

    It seems they deleted my post from discussions. Thanks.

  • Does CS4 support AVC-Intra.   Smoke and mirrors on the Adobe site

    Just wondering if CS4 does support P2 AVC-Intra format? On the supported codec Adobe page it's no...
    Quote: Panasonic P2 import with browsing and metadata support
    Enjoy support for native editing of content from Panasonic P2 cameras in DVCPRO, DVCPRO HD, and across multiple P2 cards.
    http://www.adobe.com/uk/products/premiere/supportedformats.html
    but on the Google cached site it says yes...
    Quote Panasonic P2 import with browsing and metadata support
    Enjoy support for native editing of content from Panasonic P2 cameras in DVCPRO, DVCPRO HD, and AVC-Intra formats, and across multiple P2 cards.
    http://209.85.173.104/search?q=cache:HEb3cZ9XKwQJ:www.adobe.com/uk/products/premiere/suppo rtedformats.html+premiere+pro+cs4+avc-intra&hl=en&ct=clnk&cd=1&gl=au
    What gives?
    Peter

    I too am VERY interested in this support.  We shoot quite a bit in AVC-Intra 100 and I was counting the days until the 4.1 update because from what I understood from NAB that codec would be supported in the update.
    Adobe gurus...any update or timeframe?? As this is an important part of our workflow I would appreciate any feedback possible.

  • Does Yosemite support Blu-Ray disc and 4K playback on the iMac with a 4K player?

    If I plug a Blu-Ray or 4K player into an iMac, will Yosemite support playback?  What additional software is needed and available?

    It's hard to say considering Apple hasn't supported Blu-ray yet and the downloaded Blu-ray resources are really not what we exactly want. The most directly way is to install Mac Blu-ray player and Blu-ray drive. Macgo is the best now to support 4K Blu-ray and Yosemite.

  • I am getting a pop up window that says "The Calendar calendar does not support events" You can't add events to the Calendar calendar

    I recently did some HD clean up and I'm plagued by this window. I can get it to go away briefly if I restart the computer but it always comes back.
    Weird!

    Hi wcb82,
    If you keep getting these messages, you may need to delete the subscription to that calendar. You may find the following article useful:
    Cal 5.x: Delete a calendar or reminder list
    http://support.apple.com/kb/PH4720
    Regards,
    - Brenden

Maybe you are looking for