Create an external file

Is it possible to build a flash programme that will create
new files that can be accessed or edited. I would like to know all
the possible ways.

This is a multi-part message in MIME format.
------=_NextPart_000_0019_01C68ADA.8B87E340
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
1. You could place the XML or raw data in the Flash movie or
in external =
Flash movies. In the latter case the main Flash movie would
then load =
the=20
external Flash movie and use the data. Again only a skilled
ambitious =
person=20
would attempt the decompiling and analysis process. If the
external =
movie is=20
played they would see nothing since it only has code.
For desktop Flash implemented application you could deliver
new quizzes =
via=20
updated external Flash movies containing the quiz data.
2. You could use a server side script that gets an XML
structure from =
Flash=20
that has a unlock value and then the script returns the XML.
If the =
script=20
does not get the correct lock value it returns a blank web
page or a web =
page with whatever. You Flash movie XML would then use
sendAndLoad to=20
connect to the script and other than the send XML value(s)
your =
Actionscript=20
would be the same.
Still a real ambitious person could get the unlock code from
decompiling =
the=20
Flash movie with third party tools. If that is an issue, then
you could=20
request the unlock code in your Flash movie and change it
from time to =
time=20
in the server side script.
--=20
Lon Hosford
www.lonhosford.com
Flash, Actionscript and Flash Media Server examples: =
http://flashexamples.hosfordusa.com
May many happy bits flow your way!
"Flash Dhana" <[email protected]> wrote in
message =
news:[email protected]...
Hi all,
I have one issue. I have many xml files with my lesson, when
i am =
delivering=20
to the client, i use to give all the files. But the xml file
contains =
questions=20
and answers, so user can open the xml file and know the
answer. is there =
anyway=20
to protect the xml file? also i need to get the content to
flash from =
the same=20
file.
(I am not writing anything in the xml file, just reading
content from =
xml file)
Please suggest.
------=_NextPart_000_0019_01C68ADA.8B87E340
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252">
<META content=3D"MSHTML 6.00.2900.2873"
name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT color=3D#008000 size=3D2><FONT
color=3D#000000 size=3D3>1. =
You could place=20
the XML or raw data in the Flash movie or in external
<BR>Flash movies. =
In the=20
latter case the main Flash movie would then load the
<BR>external Flash =
movie=20
and use the data. Again only a skilled ambitious person
<BR>would =
attempt the=20
decompiling and analysis process. If the external movie is
<BR>played =
they would=20
see nothing since it only has code.<BR><BR>For
desktop Flash implemented =
application you could deliver new quizzes via
<BR>updated external Flash =
movies=20
containing the quiz data.<BR><BR><BR>2. You
could use a server side =
script that=20
gets an XML structure from Flash <BR>that has a unlock
value and then =
the script=20
returns the XML. If the script <BR>does not get the
correct lock value =
it=20
returns a blank web page or a web <BR>page with
whatever. You Flash =
movie XML=20
would then use sendAndLoad to <BR>connect to the script
and other than =
the send=20
XML value(s) your Actionscript <BR>would be the
same.<BR><BR>Still a =
real=20
ambitious person could get the unlock code from decompiling
the =
<BR>Flash movie=20
with third party tools. If that is an issue, then you could
<BR>request =
the=20
unlock code in your Flash movie and change it from time to
time <BR>in =
the=20
server side
script.</FONT><BR><BR></FONT></DIV>
<DIV><BR>-- <BR>Lon
Hosford<BR><A=20
href=3D"
http://www.lonhosford.com">www.lonhosford.com</A><BR>Flash,
=
Actionscript=20
and Flash Media Server examples: <A=20
href=3D"
usa.com</A><BR>May=20
many happy bits flow your way!</DIV>
<DIV>"Flash Dhana" &lt;<A=20
href=3D"mailto:[email protected]">[email protected]=
</A>&gt;=20
wrote in message <A=20
href=3D"news:[email protected]">news:e689nv$fvn$1@forums=
.macromedia.com</A>...</DIV>Hi=20
all,<BR><BR> I have one issue. I have
many xml files with my =
lesson, when i=20
am delivering <BR>to the client, i use to give all the
files. But the =
xml file=20
contains questions <BR>and answers, so user can open
the xml file and =
know the=20
answer. is there anyway <BR>to protect the xml file?
also i need to get =
the=20
content to flash from the same
<BR>file.<BR><BR> (I am not writing =
anything=20
in the xml file, just reading content from xml
file)<BR><BR> Please =
suggest.<BR></BODY></HTML>
------=_NextPart_000_0019_01C68ADA.8B87E340--

Similar Messages

  • Create XML external file through BIP

    Hi All,
    I'm trying to create an XML document to send to a printing company.
    I've created the XSL template file and uploaded into BIP as an XSL Stylesheet.
    The problem I'm having is how to call the stylesheet from within an RTF file, so I can create an XML formatted file to send to the printing company.
    Can anyone point me in the right direction?
    Thanks, Rod.

    Marcus
    i'd recommend you create an empty project file in FCP and export it to XML.
    use the exported file as resource data, as it provides you with the basic XML project file container.
    then you can just add the additional <parent> and <child> elements as required
    also highly recommended would be the free XMLLib osax from Satimage, although it would be better if you learn how to do it with the built in libraries
    for basic aplescript info, visit http://applescriptsourcebook.com/
    cheers
    Andy

  • Create external file ........

    my system config: windows 7 and Oracle sql developer 11g.......
    I can not create any kind of external file ........
    pls help me with an example ,with below complete steps
    1.create directory
    2.grant directory
    3.create with external file location

    923746 wrote:
    my system config: windows 7 and Oracle sql developer 11g.......Are you describing the configuration of the client machine? The server machine? Or are you running both the client and the database server on one machine?
    1.create directory To create a directory object in Oracle
    CREATE DIRECTORY directory_name
        AS '<<path on server to a directory that exists on the server>>'That assumes that the path you specify in the DDL already exists on the database server
    2.grant directory
    GRANT read ON directory_name TO user_name;
    GRANT write ON directory_name TO user_name;
    3.create with external file location
    DECLARE
      l_file utl_file.file_type;
    BEGIN
      l_file := utl_file.fopen( directory_name, file_name, 'w', 32767 );
      utl_file.put_line( l_file, 'Some text' );
      utl_file.fclose( l_file );
    END;Justin

  • Images in the folders of an external file system KM

    Hello,
    We are facing a problem in our KM, the thing is We have created a external file system in our KM, it is green and almost everythings is working fine... In the CM repository we have assigned the "properties" as a repository services, but in the setting of our folders we can not see the tab of rendering within the properties.
    This is our problem without this tab of rendering We can not assign a image for this folder .. And We need to assign imaged to the folders.
    Does anyone know whether we need to add new repository sevices to our file system ? or it is impossible to assign an image to a folder in a external file system within the knowledge management.
    Thanks in advance.
    OLAF

    We have found the reason why we did not have the rendering option for assign images to the folder in a external repository.
    Our guess was good, We should have added a new "repository services" called "layout service".
    Thanks for reading this.

  • Error in creating an external table referring to a XML file

    I've got an XML file and I've tried to create an external table referring to it in this way:
    CREATE TABLE mytable
        XML_DATA_COLUMN XMLType
      ORGANIZATION EXTERNAL
        TYPE ORACLE_LOADER DEFAULT DIRECTORY TEST_DIR
        ACCESS PARAMETERS ( records delimited BY newline
        (XML_DATA_COLUMN LOB) ) LOCATION ( 'myfile.xml' )
    where TEST_DIR is the directory where myfile.xml is stored,
    but I get this message:
    Error at Command Line:3 Column:4
    Error report:
    SQL Error: ORA-30656: column type not supported on external organized table
    30656.0000 -  "column type not supported on external organized table"
    *Cause:    Attempt to create an external organized table with a column
               of type LONG, LOB, BFILE, ADT, or VARRAY.
    *Action:   These column types are not supported, change the DDL.
    I want to have in the XML_DATA_COLUMN the content of myfile.xml so as to handle it by using extract and extractvalue functions.
    My oracle version is 10gR2 Express Edition
    Thanks!

    The examples in the following thread include an insert, but you could also use the select statement alone without the insert.
    http://www.orafaq.com/forum/mv/msg/172162/511897/0/#msg_511897

  • Create an external table based on an XML file

    Hi ,
    I am trying to create an external table based on XML file .Is it possible to do in OWB ?If Yes .Can someone please let me know the same .
    I was successfully able to create an external table based on a flat file which is of the extension *.txt.
    I was even able to load an XML file to a normal
    table .How do we do it to an external table?
    Thanks,
    Manjula

    Hello Manjula,
    Is it possible for you to spare sometime to list down the steps to be followed for creating External Table using flat file *.txt?
    I am trying to do it but not getting through it.
    Thanks in Advance,
    Ripesh

  • Creating Target Group from External File

    Hello Experts
    We need to create target group from external file. (That is to say we will have let's say txt file containing BP that belongs to specific target group and we need to assign these BPs to to specific target group in SAP CRM)
    I have searched for it on sdn and found something benefical. I have found BAPI_TARGETGROUP_CREATE, I have checked it but I don't understand how should we use it becuase as far as we understand it just creates target group, we cannot see anything related with Business Partner. How can we relate BPs with the target group we create by this BAPI.
    What should we do, is anyone have previous experience about it? or is there a way to do it without using BAPI.
    thanks it advance
    M.
    Edited by: Mehmet Ergul on Jan 22, 2009 11:19 AM

    Hi,
    You can do this from within the standard Web UI. It's straight out of the box.
    Create a profile set and in there create a target group in the target group assignment block just by entering the description of the target group. Then enter edit mode of this target group and click the button "Import Members". Remeber to mark "Change selected target group" unless you want to create a new target group.
    /Anders

  • How do I link external files (.pdf's) in the flash content please?  I'm creating a CD interface

    Hello
    I'm new to Adobe CS software and would like some advice please.
    My company uses a CD with a flash interface that opens via an .exe or .app file.  The original designer is on maternity leave at the moment but we need some content updates before she gets back and I’m deciding whether to redo the CD myself or to source a new designer.
    So far I've been able to replicate most of the CD in Catalyst using the trial version but there is one thing stopping me from buying the software.  I can't find a way to link external files (specifically pdf's) via the flash content.  The CD is for instruction manuals so once the interface has been navigated the user needs to click on a button to open the desired pdf manual.
    Is this possible in Catalyst or am I looking at the wrong software?
    I can't write code and my experience is limited so I would appreciate help from someone who knows what they're talking about please and any software recommendation would also be great
    If I need to outsource please tell me but bear in mind that I have been able to do all the design work and it's just linking the pdf's that I'm struggling with
    Thanks in advance and for any help

    Hi Bear,
    Thanks for your quick answer.
    Flash Catalyst currently prefixes all links with "http://", so you would need to save your FXP in Catalyst, open the FXP in builder, and remove the "http" so that you're just loading the local pdfs.
    I tried your suggestion but couldn't get it working so I'm probably doing something wrong since I'm not very familiar with Flash Builder.
    I created the button > on click > go to url interaction in Catalyst and saved the project (tried it using a PDF saved on our server and also my PC).
    I imported the FXP and opened to "project name / src / (default package) / main.mxml / button name"
    After deleting "http" I selected "export release build" and opened the new SWF and also tried the HTML; the new button just opened to my homepage instead of the PDF
    I also tried deleting "http:" and "http://" which deactivated the button completely (I expect some coders will laugh at that but I am a noob )
    Unfortunately linking to online files isn't an option for me so do you see what I'm doing wrong please?
    Thanks for your help

  • Create a cursor from a PL/SQL variable or an external file

    Dear friends,
    is there a way for me to make Oracle Forms read a cursor from a PL/SQL variable, or an external file? Let's suppose we have the code below:
    DECLARE
    cursor c_values is select * from my_table;
    r_values c_values%ROWTYPE;
    BEGIN
    for r_values in c_values loop
    do_something;
    end loop;
    END;
    In the situation described above, could I create "select * from my_table" from a PL/SQL variable (it could be something like p_cursor = 'select * from my_table'), or an external file - for example, make my form read the contents of c:\my_select.sql , where we see the "select * from my table" text?
    My question comes because I need to export data from select instructions that were dinamically created inside the form - that is, via PL/SQL -, and I don't want to rewrite it, but I'll have to do it if I have no choice. Your help will be greatly appreciated.
    Best regards,
    Franklin
    Edited by: franklinbrasil on 12/03/2009 11:33
    Edited by: franklinbrasil on 12/03/2009 11:35

    Dear friends,
    I am using DBMS_SQL package, which solved my problem. Please let me explain it better, if it's not clear.
    I have some PL/SQL blocks inside my form, which creates SQL queries dinamically, and a dinamically created SQL is stored into a VARCHAR2 variable. These SQL queries are exported for use in Oracle Graphics, but since OG is not being developed by Oracle anymore then I am trying to find a substitute for it.
    So I thought about creating an option for the final user: he/she can choose exporting data into Microsoft Excel, and user does what he/she wants, creating a customized graphic. Exporting into Excel works finely, with no problems at all - I could find a routine by searching on the web.
    My goal was to use the same queries created above to export data dinamically to Microsoft Excel, and I absolutely don't want to rewrite all these dinamically created queries - one which works dinamically, other with no flexibility inside my form. Worse than it, I have many other dinamically created queries, and I obviously don't want to rewrite them all - any maintenance in this form would be terrible, with each SQL instruction written twice.
    Since all dinamically created SQL instructions are stored inside a VARCHAR2 variable, I thought about reusing the same SQL, as explained above - and here we have your suggestions about using a ref cursor, execute immediate, and so on. And (answering Andreas) query structure is always based on the same table, but its structure changes a lot, depending on what the final user chooses in a drop-down list (it's a list of graphics options, where final user chooses one option, and form must mount SQL dinamically, based on user's choice).
    By using your explanations, I could find DBMS_SQL solution here: http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96590/adg09dyn.htm#26799
    . Please notice that I had to change DBMS_SQL.native into 1 for it to work in my form. I'll mark all your answers as helpful because I can use them both for database and form purposes.
    If my message was not clear enough, please tell me and I'll try to make it more clear.
    Best regards,
    Franklin

  • Create multiple external tables from same flat file ?

    using oracle 10g
    currently create many external tables like so..
    CREATE TABLE "XT_UNITS"
    "Q1_2012" VARCHAR2(25 BYTE),
    "Q2_2012" VARCHAR2(25 BYTE),
    "Q3_2012" VARCHAR2(25 BYTE),
    "Q4_2012" VARCHAR2(25 BYTE)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER DEFAULT DIRECTORY "XE_FILES" ACCESS PARAMETERS ( records delimited BY newline
    skip 1 fields terminated BY ',' OPTIONALLY ENCLOSED BY '"' MISSING FIELD VALUES
    ARE NULL ) LOCATION ( 'xtunits.csv' ))
    is there any way I can use 1 flat file (csv) to populate many external tables ?
    maybe by section ?

    Jay wrote:
    using oracle 10g
    currently create many external tables like so..
    CREATE TABLE "XT_UNITS"
    "Q1_2012" VARCHAR2(25 BYTE),
    "Q2_2012" VARCHAR2(25 BYTE),
    "Q3_2012" VARCHAR2(25 BYTE),
    "Q4_2012" VARCHAR2(25 BYTE)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER DEFAULT DIRECTORY "XE_FILES" ACCESS PARAMETERS ( records delimited BY newline
    skip 1 fields terminated BY ',' OPTIONALLY ENCLOSED BY '"' MISSING FIELD VALUES
    ARE NULL ) LOCATION ( 'xtunits.csv' ))
    is there any way I can use 1 flat file (csv) to populate many external tables ?
    maybe by section ?Not a logical question.
    An external table definition relates to one or more files.
    You could probably create multiple externable table definitions to access the same file(s), but you may end up with some operating system file locking issues if you're not careful, and to be honest why would you need to do that?

  • Creating external files (.txt, .json, etc)

    Hello everyone,
    I'm currently trying to find out how to create external files from a SWF/exe/app file created in Flash. Essentially I'm building a program to create templates for levels in a game. The SWF will be run locally (e.g. not online) and will allow the user to add/remove objects to a level of their design. They then need to be able to save the level template (ideally I need to be able to save as a JSON* file, but I'm sure I could get away with just a simple txt file) somewhere on their computer. These templates will them be imported by the game itself (not written in Flash, hence why I need to save the data as a json or txt file), which will then re-create the levels from the data contained in the save file.
    I had assumed this would be something that was really simple to do, but I cannot seem to find any tutorials or information on how to create external files. I can find plenty on reading from existing external files, but nothing about actually writing a new file entirely. I have read a few people complaining that non-local Flash SWFs cannot access the user's hard drive for security reasons, but cannot find any information on local SWFs.
    If anyone could tell me even roughly what I'm looking for, it would be greatly appreciated. I'm a bit stuck just now haha
    *I have downloaded the corelib files which allow me to work with JSON files

    Flash is not able to write any type of text file on user system.
    U have to use air or zinc to intract with file system.
    Yes u can use shared objects also. Which stores value to user computer and browser stores cookies on user system

  • Can we create single External Table for multiple files?

    HI,
    Can we create External table for multiple files? Could anyone please explain it.
    Thanks and regards
    Gowtham Sen.

    to merge 16 files having same structureWell, if files have the same structure, as per the reading of the example from the following documentation, you can create one external table for all your files :
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14231/tables.htm#i1007480
    Nicolas.

  • Create Recovery Disc Files on External Hard Drive? IdeaCentre K 330B (Desktop)

    Is it possible to create recovery disc files on an external hard drive?  I tried using the Lenovo Recovery System from the Start menu (Windows 7) but it says it requires 30 DVDs.  My external hard drive is connected, but it doesn't display in the drive drop-down.  (I'm not a hard drive person...)
    Thanks.

    I don't recall if the original OKR that came with my K330B could back up to the external drives, but I did a clean install Win 7, and download the OneKey Recoery 7 from Lenono.  The 'new' OKR 7 does allow the external had drifve back up.

  • Reading the Blob and writing it to an external file in an xml tree format

    Hi,
    We have a table by name clarity_response_log and content of the column(Response_file) is BLOB and we have xml file or xml content in that column. Most probably the column or table may be having more than 5 records and hence we need to read the corresponding blob content and write to an external file.
    CREATE TABLE CLARITY_RESPONSE_LOG
      REQUEST_CODE   NUMBER,
      RESPONSE_FILE  BLOB,
      DATE_CRATED    DATE                           NOT NULL,
      CREATED_BY     NUMBER                         NOT NULL,
      UPDATED_BY     NUMBER                         DEFAULT 1,
      DATE_UPDATED   VARCHAR2(20 BYTE)              DEFAULT SYSDATE
    )The xml content in the insert statement is very small because of some reason and cannot be made public and indeed we have a very big xml file stored in the BLOB column or Response_File column
    Insert into CLARITY_RESPONSE_LOG
       (REQUEST_CODE, RESPONSE_FILE, DATE_CRATED, CREATED_BY, UPDATED_BY, DATE_UPDATED)
    Values
       (5, '<?xml version="1.0" encoding="UTF-8"?><xml-response><phone-number>1212121212</tracking-number></xml-response>', TO_DATE('09/23/2010 09:01:34', 'MM/DD/YYYY HH24:MI:SS'), 1, 1, '23-SEP-10');
    Insert into CLARITY_RESPONSE_LOG
       (REQUEST_CODE, RESPONSE_FILE, DATE_CRATED, CREATED_BY, UPDATED_BY, DATE_UPDATED)
    Values
       (6, '<?xml version="1.0" encoding="UTF-8"?><xml-response><phone-number>1212121212</tracking-number></xml-response>', TO_DATE('09/23/2010 09:01:34', 'MM/DD/YYYY HH24:MI:SS'), 1, 1, '23-SEP-10');
    Insert into CLARITY_RESPONSE_LOG
       (REQUEST_CODE, RESPONSE_FILE, DATE_CRATED, CREATED_BY, UPDATED_BY, DATE_UPDATED)
    Values
       (7, '<?xml version="1.0" encoding="UTF-8"?><xml-response><phone-number>1212121212</tracking-number></xml-response>', TO_DATE('09/23/2010 09:01:34', 'MM/DD/YYYY HH24:MI:SS'), 1, 1, '23-SEP-10');
    Insert into CLARITY_RESPONSE_LOG
       (REQUEST_CODE, RESPONSE_FILE, DATE_CRATED, CREATED_BY, UPDATED_BY, DATE_UPDATED)
    Values
       (8, '<?xml version="1.0" encoding="UTF-8"?><xml-response><phone-number>1212121212</tracking-number></xml-response>', TO_DATE('09/23/2010 09:01:34', 'MM/DD/YYYY HH24:MI:SS'), 1, 1, '23-SEP-10');
    Insert into CLARITY_RESPONSE_LOG
       (REQUEST_CODE, RESPONSE_FILE, DATE_CRATED, CREATED_BY, UPDATED_BY, DATE_UPDATED)
    Values
       (9, '<?xml version="1.0" encoding="UTF-8"?><xml-response><phone-number>1212121212</tracking-number></xml-response>', TO_DATE('09/23/2010 09:01:34', 'MM/DD/YYYY HH24:MI:SS'), 1, 1, '23-SEP-10');THe corresponding proc for reading the data and writing the data to an external file goes something like this
    SET serveroutput ON
    DECLARE
       vstart     NUMBER             := 1;
       bytelen    NUMBER             := 32000;
       len        NUMBER;
       my_vr      RAW (32000);
       x          NUMBER;
       l_output   UTL_FILE.FILE_TYPE;
    BEGIN
    -- define output directory
       l_output :=
          UTL_FILE.FOPEN ('CWFSTORE_RESPONCE_XML', 'extract500.txt', 'wb', 32760);
       vstart := 1;
       bytelen := 32000;
    ---get the Blob locator
       FOR rec IN (SELECT response_file vblob
                     FROM clarity_response_log
                    WHERE TRUNC (date_crated) = TRUNC (SYSDATE - 1))
       LOOP
    --get length of the blob
    len := DBMS_LOB.getlength (rec.vblob);
          DBMS_OUTPUT.PUT_LINE (len);
          x := len;
    ---- If small enough for a single write
    IF len < 32760
          THEN
             UTL_FILE.put_raw (l_output, rec.vblob);
             UTL_FILE.FFLUSH (l_output);
          ELSE  
    -------- write in pieces
             vstart := 1;
             WHILE vstart < len AND bytelen > 0
             LOOP
                DBMS_LOB.READ (rec.vblob, bytelen, vstart, my_vr);
                UTL_FILE.put_raw (l_output, my_vr);
                UTL_FILE.FFLUSH (l_output);
    ---------------- set the start position for the next cut
                vstart := vstart + bytelen;
    ---------- set the end position if less than 32000 bytes
                x := x - bytelen;
                IF x < 32000
                THEN
                   bytelen := x;
                END IF;
                UTL_FILE.NEW_LINE (l_output);
             END LOOP;
    ----------------- --- UTL_FILE.NEW_LINE(l_output);
          END IF;
       END LOOP;
       UTL_FILE.FCLOSE (l_output);
    END;The above code works well and all the records or xml contents are being written simultaneously adjacent to each other but we each records must be written to a new line or there must be a line gap or a blank line between any two records
    the code which I get is as follow all all xml data comes on a single line
    <?xml version="1.0" encoding="ISO-8859-1"?><emp><empno>7369</empno><ename>James</ename><job>Manager</job><salary>1000</salary></emp><?xml version="1.0" encoding="ISO-8859-1"?><emp><empno>7370</empno><ename>charles</ename><job>President</job><salary>500</salary></emp>But the code written to an external file has to be something like this.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <emp>
      <empno>7369</empno>
      <ename>James</ename>
      <job>Manager</job>
      <salary>1000</salary>
    </emp>
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <emp>
    <empno>7370</empno>
    <ename>charles</ename>
    <job>President</job>
    <salary>500</salary>
    </emp>Please advice

    What was wrong with the previous answers given on your other thread:
    Export Blob data to text file(-29285-ORA-29285: file write error)
    If there's a continuing issue, stay with the same thread, don't just ask the same question again and again, it's really Pi**es people off and causes confusion as not everyone will be familiar with what answers you've already had. You're just wasting people's time by doing that.
    As already mentioned before, convert your BLOB to a CLOB and then to XMLTYPE where it can be treated as XML and written out to file in a variety of ways including the way I showed you on the other thread.
    You really seem to be struggling to get the worst possible way to work.

  • Help creating an external array for a scoreboard

    I'm trying to create an array in an external file that will recieve and arrange scores sent from Quiz.fla upon clicking the submit score button.  I also want another fla file to be able to reference this external array and pull the top 15 scores from it, and then display those scores on a scrolling banner.  I want the banner to be able to update dynamically (I assume reloading the banner fla each time it reaches the end of its cycle, having the first frame load the external array on an onClipEvent action would accomplish this), that way it will update while remaining open.  The main reason I need two separate files for the quiz and the score banner is they will be displayed on two different monitors.  What would be the most efficient way of accomplishing this?  I know a little about actionscript but I don't have much experience with calling data and functions from external fla or as files (the array and the function designating how the data will be arranged within said array are going to be in a separate .as file).
    I'm currently working in AS2, since I've had almost no experience with AS3.

    So if I wanted to avoid using a server, I'd basically have to set up the
    array storing the high scores in an external .as or .swf file which would
    then be called into the quiz game to store the scores, and then called by
    the banner each time it hits frame 1 to refresh the numbers?  But then that
    would run into the problem of a shared object being used by two different
    clients I guess?  Servers setup and accessing confuses the hell out of me
    right now, so I'm trying not to make things to hellish for myself...
    Would there be a way to create 2 external database files within the folder
    holding the .swf files to somehow get around the issue of one sharedobject
    being accessed by two clients?

Maybe you are looking for

  • Camera no longer recognized

    I have been using Isight with Ichat for over 3 years with no problem. Suddenly my computer no longer 'sees' my camera in either Ichat or Skype. It also does not see my buddies cameras although they are connected and we can even do a oneway video chat

  • Smart media card reader

    I cannot get my new imac to recognize my Olympus smart media card reader nor read the card what could be the problem I can read other cards in my other card reader, compact flash, SD etc

  • Error on executing See Also search - no authorization for resource

    Hi there, i have installed TREX 6.1 SP 13. It searching fine but only two bugs - 1)when i'm clicking on "See also" link in search result page - i'm getting error: "Search Failure Error on executing See Also search - no authorization for resource An u

  • Warp Stabilizer crops bottom of video if videos layers are beneath it for no reason.  Why???

    Warp Stabilizer crops bottom of video if videos layers are beneath it for no reason.  Why??? remove the layers beneath and it's fine.  Hopefully adobe addresses this issue asap to save all of us a good amount of time.

  • Creating a infotype 0014 automatically in the background when 0008 changes

    Hello All- We have a wagetype on Infotype 0014 and when we create a record with this wagetype then it is having a balance wagetype in IT0015 so IT0015 with balance wagetype will automatically popup when we create a record in IT0014 and this is becaus