Please help creating tool palette

Hi,
is there a tutorial somewhere or  can anyone point me in the right direction to create a tools palette as well as document rulers and guides in Flex Builder 4.5?
Thanks a lot for your help

Okay, I spent more time researching. Do I need to use an .scc file for the closed captions? Right now, they have been imported to Encore in .txt format. If they need to be .scc, how can I convert my .txt files to .scc?

Similar Messages

  • Please help create this matrix report

    Hi,
    I'm using Reports6i.
    I want to create a matrix report like below.
    Country            JUN2008       JUL2008
                      Teu    Feu     Teu   Feu
    INDIA             13        9       1     10  .....
    .With the query i've written, i get the data like
    Country      Dt       Cnt       Typ
    IN     JUN2008           9             Feu
    IN     JUN2008           13     Teu
    IN     JUN2008           10             Feu
    IN     JUN2008           1     TeuPlease Help
    Edited by: Divya on Jun 21, 2011 5:55 AM

    Which tool are you using to create the report Divya?
    You may use PIVOT to create the matrix like report.
    For Ex;
    SELECT *
    FROM (SELECT product_code, quantity
    FROM pivot_test)
    PIVOT (SUM(quantity) AS sum_quantity FOR (product_code) IN ('A' AS a, 'B' AS b, 'C' AS c));
    A_SUM_QUANTITY B_SUM_QUANTITY C_SUM_QUANTITY
    210 90 160

  • Please help- creating rollover sound

    Hi everyone, I really hope you can help me.
    What I want to create is a group of 13 images and upon rollover each image would make a different sound. I don't want the sound to stop once you move the mouse though because I want a few different sounds playing at the same time. At this point I don't really care whether they play for their whole duration or just for another 15 seconds! I'm doing this for Uni and the guy said it wasn't that hard.
    I have some basic knowledge in HTML code, but I am a complete newbie to flash. I've downloaded Flash C5 and that's about as far as I've got! I'm not entirely sure which template if any I would need to use.
    If some kind soul out there will help me with my Uni work I'll be ever grateful! I can't pay back in knowledge since I don't know anything, but I could bake you cookies?!

    Break the project down into sections and learn to get each section working before you try to put it all together.
    So first, learn to convert an image into a movie clip...
    Second, apply an action to that movie clip.... and since movie clips can behave like buttons, the action would be an on RollOver.... so on rollover....do this.....
    separately learn to create a movie clip that simply plays a sound..... that's all it does.
    Only after each section is working separately , combine them...
    Image which is a movie clip... that then has a rollover action applied to it, and that rollover plays a sound.
    Exact actionscript will depend on if you are using AS2 or AS3, but by breaking it down, tons of stuff on Google about each topic.
    Best of luck,
    Adninjastrator

  • Please help creating data model where query has & in select

    Below is the actual code of the part of select having a problem.
    When I had '&' instead of chr(36), a window opens up saying 'Please enter values for lexical references in sql then has *&' and empty box and check box then flex field.
    So I replaced '&' with chr(36) below
    After I put the code in, it is asking me the question ====>
    'Do you want to create a bind parameter? : //wwwapps.ups.com/WebTracking/processInputRequest?sort_by
    ,'=HYPERLINK("http://wwwapps.ups.com/WebTracking/processInputRequest?sort_by=status'||CHR(36)||'tracknums_displayed=1'||CHR(36)||'TypeOfInquiryNumber=T'||CHR(36)||'loc=en_US'||CHR(36)||'InquiryNumber1='||mbl.tracking_number||CHR(36)
    ||
    'track.x=0'||CHR(36)||'track.y=0","'||mbl.tracking_number||'")' "Tracking Link (Click to Track)",

    Hi,
    Looks like no more problems creating data models after replacing the '&' and ':' with their chr(x) counterparts. But when they I run the report, it shows the hyperlink code below instead of the hyperlink tracking number they can just click on. Also when I try the query in toad, it works.
    =HYPERLINK("http://wwwapps.ups.com/WebTracking/processInputRequest?sort_by=status&tracknums_displayed=1&TypeOfInquiryNumber=T&loc=en_US&InquiryNumber1=&track.x=0&track.y=0","")

  • Please help create folder to remove .htm from URL

    I wanted to remove the .htm from a specific URL on my site. I
    created a new folder named 'careers' and placed my original
    dreamweaver page in the folder. I can now access that page / url by
    typing www.nameofmysite.com/careers but a page comes up first that
    lists 'parent directory' in addition to the actual page that I want
    to direct the traffic to. How do I remove this unecessary page that
    contains the parent directory and have traffic go directly to
    carrers page without having to type in .htm? Any help would be
    appreciated.

    Place your careers.htm page inside a Folder called Careers.
    Rename your careers.htm page index.htm. The server will look
    for the index
    page. If it doesn't find one, it will list the folder's
    contents.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "below average" <[email protected]> wrote in
    message
    news:ffl7ba$8dm$[email protected]..
    > I wanted to remove the .htm from a specific URL on my
    site. I created a
    new
    > folder named 'careers' and placed my original
    dreamweaver page in the
    folder.
    > I can now access that page / url by typing
    www.nameofmysite.com/careers
    but a
    > page comes up first that lists 'parent directory' in
    addition to the
    actual
    > page that I want to direct the traffic to. How do I
    remove this
    unecessary
    > page that contains the parent directory and have traffic
    go directly to
    carrers
    > page without having to type in .htm? Any help would be
    appreciated.
    >

  • Please Help: create a procedure that needs a sys view

    Hi gurus,
    I am trying to create a stored procedure that opens a cursor for a select on a view owned by sys, but the errors says table or view does not exist. I can select * from the view (sys.mgw_gateway) from SQL*Plus or any other tool. Anyone have an idea why I get the ORA-00942: table or view does not exist error when I try to create a procedure? Here is the simple SQL statement for the procedure (I just want the users to see if the messaging gateway is running) and that's all in it.
    open p_MGWStatus for
         select AGENT_STATUS, AGENT_PING, to_char(LAST_ERROR_DATE, 'mm/dd/yyyy hh24:mi') as LastErrorDate,
         LAST_ERROR_MSG
         from sys.mgw_gateway;
    Thanks a lot.
    Ben

    Hi
    To allow the view owned by sys in a procedure, you have to grant select on that particular view to the owner of that procedure.
    Suggestion: may or may not be acceptable: create your own view in system schema (if it has the privilege to select that view else in sys schema) with the required column of the sys view and grant this newly created view to the owner of the procedure.
    Regards
    Opps! Very late reply
    Message was edited by:
    Anurag Tibrewal

  • PLEASE HELP CREATE 3 LETTER DIAMOND SHAPED MONOGRAM in Illustrator!!!

    I have been able to fill a shape with text by using Object>Envelope Distort>Make with Top Object...
    HOWEVER, when I fill something like a diamond shape, it looks VERY odd. Does anyone know a different way to fill a shape with THREE LETTERS? I want to make a block diamond shape monogram.
    Thanks!!!!

    You'll need to draw something like that with the Pen tool. I think I've seen fonts that can help, with three version of each letter, one for each position. JFGI.

  • Someone please help creating comparable objects

    I have been given a second part to an assignement that wants me to create a program for comparing student obejects. The assignment description and code are below. I can' t see how the find to method interlocks with the findsmallest because find smallest is already finding the smallest value. I also don't see where the new diffinitions for UMUC_Comparable goes.
    In the second part of this project, you will also find the smallest element in the array, but now the array will be of UMUC_Comparable objects. It will use the compareTo method to compare objects to find the smallest one. This method will also have the name findSmallest, but will take an array of UMUC_Comparable objects. This findSmallest method will have a definition as follows:
    UMUC_Comparable findSmallest(UMUC_Comparable[] array);
    The findSmallest method will use the compareTo method in the UMUC_Comparable interface. You will be using it with the Student objects from module V, section III, so you do not have to rewrite the compareTo method; you can simply use the one defined in the Student object in module V.
    For the second part of this project, you should:
    Create a main that creates an array of Student objects, as in section III of module V. You can use the same array as defined module V. You do not have to read these objects in from a file.
    Call the findSmallest method to find the smallest Student object.
    Use the getName and getAverage methods in the Student object to print out the smallest object.
    Note that the return from the method is a UMUC_Comparable object, not a Student object, so you must cast the returned object to a Student object before printing it out. You can do so as follows:
    Student[] students ....; // Fill in the declaration // of the student array.
    Student s = (Student)findSmallest(UMUC_Comparable[] array);
    /* File: Student.java
    * Author: Darrell Clark
    * Date: December 3, 2006
    * Purpose: Shows how to find the smallest Int value in an array
    import java.util.*;
    import java.io.*;
    public class Student {
    private int average;
    private String name;
    /* public constructor. Note that because no default
    * constructor exists, Student objects will always
    * be constructed with a name and an average.
    public Student(String name, int average) {
    this.average = average;
    this.name = name;
    } // end method
    * return name
    public String getName() {
    return name;
    } // end method
    * return average
    public int getAverage() {
    return average;
    } // end method
    * compare to method for locating smallest value
         public static int findSmallest(int[] array) {
              int min = Integer.MAX_VALUE;
              for (int i = 1; i < (array.length); i++) {
                   if (array[i] < min)
                        min = array;
              return min;
    * compare student value
    public int compareTo(Student student) {
    return (this.average - student.average);
    } // end method
         public static void main(String[] args) {
    Student[] studentArray = { new Student("Tom", 87),
    new Student("Cindy", 100),
    new Student("Pat", 75),
    new Student("Anne", 92),
    new Student("Matt", 82)};
    for (int i = 0; i < studentArray.length; i++) {
    System.out.println(studentArray[i].name + " " +
    studentArray[i].average);
    } // end for
    } // end method
    } // end class

    Were you given the UMUC_Comparable interface, or do you have to write it?
    (1) In the latter case, that is where to start. It includes the method
    compareTo(UMUC_Comparable). This will almost certainly return an
    int - check out the API documentatuon for the Comparable interface.
    (2) What I think the assignment is asking you to do is rewrite the Student
    class so that it implements UMUC_Comparable.
    Then you write the findSmallest(UMUC_Comparable[]) method. There is
    already a static method like this in the (existing) Student class. It's anybody's
    guess where this method is supposed to go - perhaps you could ask
    whoever gave you the assignment. The problem is that it can't go in
    UMUC_Comparable because that's an interface. And it doesn't really belong
    in Student because it is a sort of utility function that deals with any
    UNUC_Comparable array.
    (3) Let's assume that findSmallest(UMUC_Comparable[]) goes in the
    Student class. So you replace the existing findSmallest() with the new one.
    The new one goes through the array using the UMUC_Comparable's
    compareTo() method to find the smallest UMUC_Comparable.
    (4) Finally in main() you create a test array, use the newly rewritten
    findSmallest() to find the smallest Student, and print their name and
    average.

  • Please help create the query

    I have table which has 4 columns (A,B,C,D)
    Table t1
    A B C D
    1 - - -
    - 2 - -
    - - 3 -
    - - - 4
    5 - - -
    - 6 - -
    - - 7 -
    - - - 8
    the required output is
    Table T2
    A B C D
    1 2 3 4
    5 6 7 8
    How can i come up with this output

    like this
    with t
    as
    select 1 c1, null c2, null c3, null c4 from dual union all
    select null, 2, null, null from dual union all
    select null, null, 3, null from dual union all
    select null, null, null, 4 from dual union all
    select 5, null, null, null from dual union all
    select null, 6, null, null from dual union all
    select null, null, 7, null from dual union all
    select null, null, null, 8 from dual
    select max(c1), max(c2), max(c3), max(c4)
      from (
             select t.*,
                    last_value(c1 ignore nulls) over(order by nvl(c1,0)+nvl(c2,0)+nvl(c3,0)+nvl(c4,0)) gval
               from t
    group by gval

  • Create a table from another table and add constraint statement. Please help

    Previously, I post a question and it works as below:
    create table my_table
    PCTFREE 10 PCTUSED 0 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE
    INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT
    TABLESPACE TAB_DATA
    as select t1, t5, t2, t3, t4 from orig_table;
    I have been trying to use the same strategy as I post earlier, but it doesn't work.
    CONSTRAINT "MY_TEMP" UNIQUE ("ID", "SNAME", "CNAME", "TIME", "SYSTEM_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TAB_DATA" ENABLE
    CLUSTER MY_CLUSTER
    "CNAME"
    Below iis my SQL statement, but it doesn't work. Please help.
    create table my_table
    CONSTRAINT "MY_TEMP" UNIQUE ("ID", "SNAME", "CNAME", "TIME", "SYSTEM_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TAB_DATA" ENABLE
    CLUSTER MY_CLUSTER
    "CNAME"
    as (select t1, t5, t2, t3, t4 from orig_table;

    Hi,
    Why do you need to combine the two action togather. You can get the things done in two steps.
    Create table tab1 as select * from tab2;
    Then you create any contraint that you want to create on tab2 using 'alter table add constraint'.
    Regards

  • Firefox crashed suddenly and now it won't open at all. Please help

    Firefox crashed suddenly and now it wont open at all. When I click the icon all I get is the spinning pinwheel and have to force quit the program. I've tried rebooting the computer, uninstalling and reinstalling firefox, it won't open in safe mode....it wont do anything at all. Please help.

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    * https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See:
    * http://kb.mozillazine.org/Firefox_crashes
    * https://support.mozilla.org/kb/Firefox+crashes
    * https://support.mozilla.org/en-US/kb/latest-firefox-issues
    If you have submitted Breakpad crash reports then post the IDs of one or more Breakpad crash reports (bp-xxxxxxxx-xxxxxxxxx-xxxx-xxxxxxxxxxxx). You can find the IDs of the submitted crash reports on the about:crashes page. You can open the about:crashes page via the location bar, like you open a website.
    See:
    * http://kb.mozillazine.org/Breakpad (Mozilla Crash Reporter)
    * https://support.mozilla.org/kb/Mozilla+Crash+Reporter
    * https://developer.mozilla.org/en/How_to_get_a_stacktrace_for_a_bug_report

  • PROBLEM WITH HIERARCHICAL QUERY - PLEASE HELP

    I have got three tables :
    CREATE TABLE FIRM
    (FID INTEGER NOT NULL PRIMARY KEY,
    FNAME VARCHAR(40),
    FTYPE VARCHAR(3),
    MASTERID INTEGER );
    CREATE TABLE FACULTY
    (FAID INTEGER NOT NULL PRIMARY KEY,
    FANAME VARCHAR(40),
    FATYPE VARCHAR(3),
    MASTERID INTEGER );
    CREATE TABLE EMPLOYEE
         (EID INTEGER NOT NULL PRIMARY KEY,
    ENAME VARCHAR(20),
    ESURNAME VARCHAR(20),
         EJOB VARCHAR(3),
         MASTERID INTEGER );
    This is a hierarchical tree(or is ment to be, I,m complete rookie ) . Firm can be the root or can be slave to another firm. Faculty can be slave to firm, or to another faculty. Employee can be slave to faculty or to another employee(e.g. boss). This connections are specified by MASTERIDs.
    I need to write a procedure, which parameter would be node ID. It is meant to create a VIEW from this node as if it was a root (view of a subtree).
    I tried CONNECT BY clause but it works only on one table at a time and I have here three tables.
    I completely don,t know how to write it. Please help.

    create view hierarchy as
    select id, master_id, name from table1
    union all
    select id, master_id, name from table2
    union all
    select id, master_id, name from table3
    Then do your connect by query against hierarchy.
    It will not work in 8i (connect by on views not allowed), so you will need to materialize the view.
    Kirill

  • I have dowloaded Photoshop + Lightroom (subscription) but no serial number have been provided for Photoshop CC so I cannot access the product. Please help

    I have dowloaded Photoshop + Lightroom (subscription) but no serial number have been provided for Photoshop CC so I cannot access the product. Please help

    Thank you Steve. Will do it straight away.
    We can can continue talking this evening, no prob.
    Rgds
    Marco
    Il giorno 16/mag/2014, alle ore 19:12, SG... <[email protected]> ha scritto:
    I have dowloaded Photoshop + Lightroom (subscription) but no serial number have been provided for Photoshop CC so I cannot access the product. Please help
    created by SG... in Photoshop General Discussion - View the full discussion
    Hi,
    When did you make the purchase? Can you try signing out of the CC desktop app, and then signing back in?
    I'll see if I can get direct support sent your way as well. How much longer are you available for this evening? We can communicate directly as well if you prefer.
    regards,
    steve
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6385161#6385161
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop General Discussion by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Please help : small error

    I have this piece of code . I am getting error that
    use of loop variable 'i' is invalid.
    Please help
    CREATE OR REPLACE procedure A
    is
    v_commit_count number(10);
    v_wf_id number(8):= 20001;
    v_atlanta_operator number(8);
    cursor c1 is
    select * from customer_query_progress;
    type temp_c1 is table of customer_query_progress@slpmig1%rowtype
    index by binary_integer;
    t2 temp_c1;
    procedure do_bulk_insert is
    begin
    forall j in 1..t2.count
    insert into customer_query_progress@slpmig1 values t2(j);
    commit;
    t2.delete;
    k:=0;
    end do_bulk_insert;
    begin
    select value into v_commit_count from t2_system_parameter where name='batch_size';
    select value into v_atlanta_operator from t2_system_parameter where name='atlanta_operator';
    for i in c1 loop
    k:=K+1;
    t2(k).customer_query_id:=i.CUSTOMER_QUERY_ID;
    t2(k).last_modified:= i.LAST_MODIFIED;
    t2(k).PROGRESS_SEQNR := i.progress_seqnr;
    t2(k).OPEN_QUERY_IND_CODE:=i.OPEN_QUERY_IND_CODE;
    t2(k).WORK_FORCE_ID:=v_wf_id;
    t2(k).OPEN_DATE:=i.open_date;
    t2(k).RESPONSE_DUE_DATE:=i.RESPONSE_DUE_DATE;
    t2(k).PROGRESS_TEXT:=i.progress_text;
    t2(k).ACTION_DATE:=i.action_date;
    t2(k).ACTION_TEXT:=i.action_text;
    t2(k).ATLANTA_OPERATOR_ID:=v_atlanta_operator;
    t2(k).RESOLUTION_TEXT:=i.resolution_text;
    if mod(k,v_commit_count)=0 then
    do_bulk_insert;
    end if;
    end loop;
    do_bulk_insert;
    end;

    You have to declare and initialize k (to zero, I think):
    CREATE OR REPLACE procedure A
    is
    k pls_integer := 0;
    Regards,
    Gerd

  • Hi, I am having trouble using the smooth tool on a logo that I created. I have watched tutorials and something isn't working for me. When trace with the smooth the line just disappears and doesn't smooth anything out. Please help.

    Hi, I am having trouble using the smooth tool on a logo that I created. I have watched tutorials and something isn't working for me. When trace with the smooth the line just disappears and doesn't smooth anything out. Please help.

    Sorry, that's Monika with a k
    On Tue, Nov 18, 2014 at 2:26 PM, Monika Gause <[email protected]>

Maybe you are looking for

  • Pages 5.5.1: fit width view doesn't adjust

    Other than the answer 'keep using Pages 09 until I absolutely have to switch to something else', is there any way to get the fit width view in latest Pages to adjust as you resize the window?  In 09 the page is responsive, and if I change the window

  • Error exporting to Flickr from Lightroom 5

    I have granted permission for Lightroom 5 to upload to my Flickr account. However, even though permission was granted and I am signed in, I have been receiving the error message: "Can't save changes. You haven't logged in to Flickr yet." Has this hap

  • Message for Itunes and quicktime support personnell...

    why won't you fix this bug?? your support personnel don't know wat is going on with these registry errors and quicktime. give us an email address or something so we can contact you! you have a serious error and this has been going on for too long...

  • ZFS mount point - problem

    Hi, We are using ZFS to take the sanpshots in our solaris 10 servers. I have the problem when using ZFS mount options. The solaris server we are used as, SunOS emch-mp89-sunfire 5.10 Generic_127127-11 sun4u sparc SUNW,Sun-Fire-V440Sys tem = SunOS Ste

  • Cannot View Crystal Report Outside Company (Red X)

    I just publsihed a website to the web and when I try to run the crystal report from the net I get a red x. Internally it works fine. I copied the Virtual directories from the default website to my extranet site. E.G. Crystalreportsviewer115 and busin