Help with creating an editor with eclipse features.....

Hi....
I want to develop an editor similar to the one in ECLIPSE with all the features in eclipse like syntax auto-fill and help etc.
I have a textarea in which I type my text or code. Then, a panel containing a list item pops up when I type a special control character. The list has several items and if I type something in the textarea, the selected item in list should change to the one that matches the text I have entered in the text field.
Now, If I type something in the textarea, how does the selected value in the list change even if the list doesnot have focus???
Please respond ASAP as it is somewhat urgent for me.
Thanking you in advance.
Sreekar.

UIImageView initWithImage takes a UIImage* as a parameter, not NSString*. So load your image into a UIImage first
UIImage *ballImage = [UIImage imageNamed:@"Ball.png"];
UIImageView *tempStart = [[UIImageView alloc] initWithImage:ballImage];

Similar Messages

  • Need help in creating a view with Encryption for hiding the code used by the multiple users

    Hi,
    Can anyone help me out in creating view with encryption data to hide the stored procedure logic with other users.
    I have create a stored procedure with encryted view but while running this manually temporary views are getting created, therefore the problem is if there are 500 entries then 500 temp views will get created.
    Any solution to aviod creating temporary views, please refer my code below
    USE [etl_validation]
    GO
    /****** Object:  StoredProcedure [dbo].[Pr_DBAccess_mod]    Script Date: 05/23/2014 12:53:22 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[Pr_DBAccess_mod](@ETL_CONFIG_ID INT)
    AS
    BEGIN
    DECLARE @openquery NVARCHAR(MAX),
     @DATABASENAME NVARCHAR(100),
     @HIERNAME NVARCHAR(100),
     @TABLENAME NVARCHAR(100),
     @SERVERTYPE NVARCHAR(100),
     @SERVERNAME NVARCHAR(100),
     @USERNAME NVARCHAR(100),
     @PASSWORD NVARCHAR(100),
     @ETL_CONFIG_IDN NVARCHAR(100);
     SET @ETL_CONFIG_IDN=CAST(@ETL_CONFIG_ID AS NVARCHAR);
     SET @TABLENAME='Department';
     SET @SERVERTYPE='SQL';
     SET @SERVERNAME ='192.168.31.176';
     SET @DATABASENAME='AdventureWorks2008R2';
     SET @HIERNAME = 'HumanResources';
     IF @SERVERTYPE='SQL'
     BEGIN
    /*SET @openquery= 'SELECT * INTO ##TestTable
                     FROM OPENROWSET(''SQLNCLI'',''server=192.168.31.176;Trusted_Connection=yes;'','''+@query+''')'
    SET @openquery=  'CREATE VIEW '+@TABLENAME+@ETL_CONFIG_IDN+
                     ' WITH ENCRYPTION AS SELECT * FROM OPENROWSET(''SQLNCLI'',''SERVER='+@SERVERNAME+';TRUSTED_CONNECTION=YES;'',''SELECT * FROM '+@DATABASENAME+'.'+@HIERNAME+'.'+@TABLENAME+''')'
    SELECT @openquery
    END
    EXECUTE sp_executesql @openquery
    END

    Hi aa_rif,
    According to your description and code message, you execute the sp_executesql statement in your stored procedure, it indeed create many views with a tablename and ETL_CONFIG_ID named. If you need not to use these temporary views, you can delete them when
    it contains the tablename in one view name.  
    In addition, if you want to create view with encryption in SQL Server, you can use directly the ENCRYPTION option to encrypt the T-SQL of a view in create view commands, for more information, see:
    http://learnsqlserver.in/4/Create-View-With-Encryption.aspx. if not, you can descript more detail about requriements, so that more forum members can involve into the thread and help you
    out. 
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Can you please help with creating a spreadsheet with a specific formulas that affect popup menus?

    I am a referee assignor for soccer tournaments. I would like to create a spreadsheet template that I can use that will help me with this. I have a game schedule spreadsheet with the following columns. Date, start time, age group, home team, away team, field #, center referee 1, assistant referee 1 and assistant referee 2. Here is what I would like to do if possible. If a referee has a game at say 10:00am and ends at 11:45am I would like to have a popup menu in the referee columns with referee names  where this particular referee name wouldn't show for any games between 10:00am and 11:45. I should mention that for each different age group the game lengths are different. I can also add a end time column in the spreadsheet if I need to.
    Is this even possible and if so does anyone have any suggestions on how to accomplish? I should also mention I am not very savvy on creating formulas.
    Thanks in advance
    Robert

    Thanks. This is what my schedule looks like.
    As you can see this particular official is scheduled for 10:00am. That particular age group game is 80 minutes long. I would like for his name to not appear in the dropdown until he is available again. I can create another column with the end time if needed or my thought was to sort the games by age group and enter a formula for each age group. It might sound like a lot of trouble but if there is a way to do it it would help tremendously as some of theses tournament have 300-400 games and it is hard to keep track of each referee and not double book them for the same time slot.
    I am not even sure this can be done but trying to have numbers (or excel for that matter) to do the heavy lifting for me.

  • Plz help me create a Procedure with create view cmd

    i want to create a view from the procedure like the following one,
    It creates the proc but while running it show invalid column name please help me;
    create or replace procedure asho2005.mock_pro( fin_fr_dt in date, fin_to_dt in date) is
         ffdt date;
         ftdt date;
    begin
         select to_date(fin_fr_dt,'dd-mm-yyyy') into ffdt from dual;
         select to_date(fin_to_dt,'dd-mm-yyyy') into ftdt from dual;
    execute immediate 'create or replace view mock_vu as select a.amt from cbtran a where chq_dt > ffdt and chq_dt <ftdt';
    end;

    i want to create a view from the procedure like the
    following one,
    It creates the proc but while running it show invalid
    column name please help me;
    create or replace procedure asho2005.mock_pro(
    fin_fr_dt in date, fin_to_dt in date) is
         ffdt date;
         ftdt date;
    begin
    select to_date(fin_fr_dt,'dd-mm-yyyy') into ffdt
    t from dual;
    select to_date(fin_to_dt,'dd-mm-yyyy') into ftdt
    t from dual;
    execute immediate 'create or replace view mock_vu
    vu as select a.amt from cbtran a where chq_dt > ffdt
    and chq_dt <ftdt';
    end;Hallo,
    your problem is , that execute immediate does't recognize ffdt
    You have to concatenate literals
    create or replace procedure asho2005.mock_pro( fin_fr_dt in date, fin_to_dt in date) is
    ffdt date;
    ftdt date;
    begin
    select to_date(fin_fr_dt,'dd-mm-yyyy') into ffdt from dual;
    select to_date(fin_to_dt,'dd-mm-yyyy') into ftdt from dual;
    execute immediate 'create or replace view mock_vu as select a.amt from cbtran a where chq_dt > '''||ffdt||''' and chq_dt <'''||ftd||'''';
    end; BTW, your view doesn't return any rows
    ffdt and < ffdt :-)
    Besides that , it's a very very bad method!
    You must not create views in runtime. Use of literals results in hard parsing .
    The performance will be poor.
    You have to create view in design time, and then simply use select:
    select * from mock_vu where chq_dt > (your_date) and something else
    HTH
    Regards
    Dmytro
    corrected wrong number of quotes (no wonder ) :-)
    Message was edited by:
    Dmytro Dekhtyaryuk

  • [Struts]File upload doesnt work with "Create" but works with "CreateInsert"

    Hello,
    thank you for reading this!
    Im facing serious issue with web application built with JSP, Struts & ADF BC in jdeveloper 10.1.3.1 and jdeveloper 10.1.3.2 (same code works perfectly in older jdev versions)
    File upload to DB only works if CreateInsert is selected in PageDefinition. (Have to change from default "Create" to "CreateInsert")
    If I set "Create" i get this problems:
    - if VO is empty the row cannot be created (no error is returned, i click ОК and row is not commited, its just discarded)
    - if VO is not empty instead to create new row current row is updated.
    This only happens with "multipart/form-data" forms. With plain form row is created without the problem.
    If I change to "CreateInsert" then I can add new rows with "multipart/form-data" but i would prefer "Create" because it avoid the blank row issue...
    Old 10.1.3 works with "Create" and "multipart/form-data".
    Im aware of this problem since the 10.1.3.1 release but I havent posted on the forum because I hoped Oracle is aware of this problem but since the problem remains I decided to react. I do not have the metalink account so only way to address the issue is in this forum.
    Please Help.
    Sanja

    I had some problem with 'Create' earlier with 10.1.2. Then I kept recreateing the pages and then it worked finally. How are you creating the page for 'create' event. Is it like, first displaying the rows from the table with create button, or are you right away creating the page from menu option.

  • Issue with create deployment order with BAPI_POSRVAPS_SAVEMULTI3

    Hi Experts,
      We are trying to create deployment orders with BAPI_POSRVAPS_SAVEMULTI3. The following are the input:
    LOGICAL_SYSTEM                  RR1CLNT010
    ORDER_TYPE                      2
    EXT_NUMBER_ASSIGNMENT
    COMMIT_CONTROL                  E
    PLNG_VERSION                    000
    NO_CREATE
    PLANNING_MODE_USAGE             0
    EVENT_CONTROL                   1
    And for receipts and requirement, we put ATP category as EG and EF.
    But it return error 'Events are supported only for Purchase Requisitions'. For u2018EGu2019 and 'EF', I can see it is category typ '2'.
    Does this BAPI able to create deployment STR or it can only create SNP STR?
    Thanks.
    best regards,
    Wenyan

    Hi Wenyan,
    In the BAPI, the following code should be responsible for the error message:
    * -> check: event_control is only available for purchase requisition
      if event_control = gc_apo_bapi_create_event and order_type <> gc_requisition.
    *   -> error message
        _apo_bapi_message_add_itab0 gc_error gc_apo_bapi_msgclass '342'
        return.
        lv_error = gc_true.
      endif.
    The relevant constants are:
    * -> constants for event control
    CONSTANTS:
      gc_apo_bapi_no_event TYPE bapi10503eventcontrol VALUE space,   "collect but no direct sending
      gc_apo_bapi_create_event TYPE bapi10503eventcontrol VALUE '1',     "collect + send event
      gc_apo_bapi_no_event_collect TYPE bapi10503eventcontrol VALUE '2'. " no collect and no sending
    *--> External Order types
    CONSTANTS:
    *  Bestand
    gc_stock              TYPE /sapapo/r3obj VALUE '0',
    *  Bestellanforderung
    gc_requisition        TYPE /sapapo/r3obj VALUE '1',
    *  Bestellung
    gc_purchase_order     TYPE /sapapo/r3obj VALUE '2',
    As you can see, if you want to create an order other than SNP purchase requistion, you cannot set the control_event as '1'.
    Best Regards,
    Ada

  • Anybody experience with creating timelag function with FOX?

    Dear All,
    As can be seen from my former thread Katie announces that financial functions are not moved to IP. And nowadays these aren't available in BW-BPS either.
    I'm just wondering if anybody has experience with creating financial unctions like timelag, allocation, IRR, accumulated balances etc in FOX?
    And if so, how complicated is this. Any examples would be most appreciated.
    Kind regards, Harjan

    Hi Hatter,
    thanks for the answer.
    But what do you think about the ICY DOCK?
    If you only want to use two drives, OWC has a nice
    $67 dual drive black metal case.
    I don't think that it is fast enough. Check the parameters:
    "Maximum Data Transfer Rate: 1.5Gb/s (or 100MB/sec)"
    Or FirmTek with a
    much better $199 case with 3-speed fan for best
    cooling.
    Yes. This is fine. Here there is:
    "High-performance storage data transfer up to 3.0Gbps (300MB/sec) per drive"
    But what about this ICY DOCK? Although I know that it is not the most important part when we are talking about RAID disks, but this enclosure looks really nice. Will it work as good as it looks like?
    PS: beware of anyone calling a device "hardware RAID"
    when all it does is use an Oxford bridge.
    How do you know that there is used an Oxford bridge, and why it work bad (as I suppose)?
    Marek.

  • Help on creating a ServerSession in Eclipse with XML file

    Hi,
    I am using Toplink in Eclipse with Tomcat/Apache (or at least trying to :)
    I am trying to make the following code work:
    Project myProject = XMLProjectReader.read("myproject.xml");
    Server serverSession = myProject.createServerSession();
    but I get an exception:
    {color:#ff0000} +"7099", "The deployment project xml resource {0} was not found on the resource path. Check that the resource name/path and classloader passed to the XMLProjectReader are correct. The project xml should be included in the root of the application's deployed jar, if the project xml is deployed in a sub-directory in the application's jar ensure that the correct resource path using \"/\" not \"\\" is used."+ {color}
    - I think the project cannot find the xml file in my project - but I was never sure where this should go in any case - I put it in the META-INF folder but made no difference. Where should I put these xml files?
    Any help much appreciated

    Simon,
    Hi, I assume you are deploying a WAR to Tomcat. The following tutorial on running TopLink using the org.eclipse.persistence.jpa.PersistenceProvider is pure JPA but deals with the same deployment issues.
    In particular note that there are two META-INF directories - we want to use only the one off of src.
    "Make sure that your persistence.xml (and optionaly orm.xml) file is placed off of the src/META-INF directory and not the default WebContent/META-INF dir so that it gets picked up by the servlet classloader from the classes directory."
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/Tomcat_Web_Tutorial#persistence.xml
    thank you
    /michael
    http://www.eclipselink.org

  • Need help in Creating DB manually with OFA

    Hi,
    I want to create database in 10g manually and for this purpose
    I need help.
    since we can use OFA for storing Control files, and redolog file
    and datafile by describing them in Create database command but
    how to store any instance related file like spfile, pfile or network
    related file.
    once the oracle 10g database software is installed then if we want
    to create database then how can we separate the database file and
    all other instance files from software binaries because I've noted
    that creating database with DBCA create all instance files along with
    binary files of the software although DBCA give you option of creating
    database related file in some other location/directory.
    kindly help me in this I want to achieve above task in compliance with
    OFA
    Thanks and Regards,
    D.Abbasi

    Abbasi wrote:
    Hi,
    I want to create database in 10g manually and for this purpose
    I need help.
    since we can use OFA for storing Control files, and redolog file
    and datafile by describing them in Create database command but
    how to store any instance related file like spfile, pfile or network
    related file.
    once the oracle 10g database software is installed then if we want
    to create database then how can we separate the database file and
    all other instance files from software binaries because I've noted
    that creating database with DBCA create all instance files along with
    binary files of the software although DBCA give you option of creating
    database related file in some other location/directory.
    kindly help me in this I want to achieve above task in compliance with
    OFA
    Thanks and Regards,
    D.AbbasiTHe OFA spec (as best I recall) states that one of the levels of directory for all of your data files will be the db name. So if you name your database 'orcl', every file system in which you keep any files related to 'orcl' will be in a directory name 'orcl'.
    As for what happend when you created your db. Oracle will default to putting things in the Oracle home structure because that's the only thing he can guarantee will be there. But you had the option (indeed, the obligation) to override these defaults.
    BTW, when using dbca, if you chose any of the pre-canned database types, the database will be created by doing a restore from a pre-canned backup. If you chose 'custom' database, the database will be created by way of a CREATE DATABASE script. It would be instructive time well spent for you to go through dbca and select 'custom database', pay attention to all of the options as you work through, then at then end, deselect "create database" and select "generate scripts". Do the same for one of the pre-defined database types. Then study the scripts generated by each method.
    Edited by: EdStevens on Aug 16, 2009 8:46 PM

  • Need help with creating text anchors with tagged text.

    Can anyone tell me how to determine the correct value for a "Hyperlink Dest Index" value?
    I have a script which creates a tagged text file that specifies about about 280 pages of tables (thank heavens for autoflow) , and would like to add live links between different parts. I can create a text anchor and a hyperlink to it in InDesign. The tagged text definition for the link source is simple and in-line and exports and imports nicely as tagged text. However, I see that all the link destinations, aka  text anchors, are all exported at the very end of the tagged text files as global definitions, and thier location iin the document is specified by the property HyperlinkDestIndex. However, I can't figure out how to set this value progammatically. I've spent over an hour exporting links, and it sure isn't anything as obvious as character index in the story.
    Any advice appreciated,
      Read Roberts

    Read, I'm not sure the following is going to help you. It works for external hyperlinks, but you want internal links, right? Anyway, it might give you some clues.
    A funny thing: I was reviewing some script where I got links to work, and I spotted a tiny coding error. Links seemed to be defined by two separate identifiers: a "link name", which is what appears in Edit Hyperlink dialog, and a "Dest Key", which seems to be a simple increasing number. However, due to aformentioned coding error, the dest keys between the actual link and its definition were off by '1', so there was no way that ought to have matched. But it still worked! So "Dest Key" is a red herring ...
    As far as I understand, it works like this (for hyperlinks): in your text, you have
    HplName -- this is actually the 'title' that appears in the Hyperlink palette
    HplDest -- this is the 'internal name'
    DestKey. Hm. Perhaps you could omit this, per above obsvn.
    CharStyleRef, the name of the auto-applied style
    Hid -- seems to be always '0'
    HplOff: the "offset" from this entire command to the start of the hyperlink, in InDesign characters.
    HplLen: the "length" from the hyperlinked text, in InDesign characters.
    and in the list of 'proper' definitions, those that appear at the very end of your file:
    HplDestDfn -- the internal name again
    DestKey -- see above
    HplDestUrl -- finally! A real URL! (But you must escape lots of characters, such as the forward slash and colon.)
    Hid -- again, always seems to be '0'.
    Some of these items are perhaps optional, but experimenting with what may be left out only lead to frustration The Tagged Text guide is far from complete, as I'm sure you already knew.
    As noted, some (or all) of the named items need a backslash escape for a few characters, but I can't find a definitive way to determine in advance what is 'good' and what is 'not good'.
    The following script creates a Tagged Text file with a couple of working hyperlinks in it -- I don't know if this is of any help for your internal links.
    var hyperlinkDest = [];
    var text = "This is some text with a link [http://www.jongware.com/idjshelp.html] and another one [http://forums.adobe.com/thread/1014617?tstart=0] in it.";
    var tagtext = text.replace (/\[(.+?)\]/g, function (full, match)
                        return makelink (match, 'title:'+match, match, match);
    // When done processing plain text, add the destinations at the end:
    tagtext += hyperlinkDest.join('');
    tagFile = File(Folder.myDocuments+'/__tmp.txt');
    if (tagFile.open('w') == false)
              alert ("Unable to create temporary file!");
              exit();
    if (File.fs == "Windows")
              tagFile.write ("<ASCII-WIN>\n");
    else
              tagFile.write ("<ASCII-MAC>\n");
    tagFile.write ("<dcs:HYPERLINK=<cu:1>>\n");
              tagFile.write (tagtext);
    tagFile.close();
    // 'text' is the actual text that will be clickable
    // 'title' is what will appear in the Hyperlinks palette
    // 'name' is the internal name in the Edit Hyperlink dialog
    // 'url' is the actual URL that will be linked to
    function makelink (text, title, name, url)
              var destkey = hyperlinkDest.length;
              // In URL you must escape forward slashes and colons
              // .. and some other characters as well, by the way. There seems to be no list
              url = url.replace(/\//g, '\\/').replace(/:/g, '\\:');
              hyperlinkDest.push ('<HplDestDfn:=<HplDestName:'+name+'><DestKey:'+String(destkey)+'><HplDestUrl:'+url+'><Hid:0>>');
              return '<Hpl:=<HplName:'+title+'><HplDest:'+name+'><DestKey:'+String(destkey)+'><CharStyleRef:HYPERLINK><Hid:0><Brdrv:0><HplOff:0><HplLen:'+String(text.length)+'>>'+text;

  • Help asap - creating Web page with templates

    Hi,
    I need help asap, im using BPC Web (my system BPC 75 SP04, MS version and there is not a lot of info on the web).
    How can I create a web page using one of my Excel templates (the ones created for the application, to upload data)...
    I've tried searching the templates inside Web ready Files but doesnt work for me... the only files available that appear are Temp.txt
    I read about reports... but these are supposed to be created via "build a dynamic report"  and i already created all my templates in a certain way. Also, Web ready Book  only works with REPORTS right?
    Thanx in advance.
    Velázquez

    Hi Sorin,
    Thank you so much for the response, just want to clear this out:
    You wrote:
    1. Excel reports can be used just with BPC Excel client.  -  do you mean the "BPC dynamic reports"?
    2. You can not use these reports into Web. - my excel reports?
    Regards
    Velázquez

  • Help with Creating 2 Libraries with iTunes

    Hi - I'm looking to create and use 2 separate libraries with iTunes on the same computer. Background: I have a large collection now of lossless files (AIFF), both CD rips (16bit/44.1kHz) and higher resolution audio (24bit/96kHz), which are very large files I use for streaming to an audiophile system (via a Logitech Transporter to DAC/processor, etc.). I also have several iPods and an AppleTV I use that have music, applications, video, etc. I want to primarily use what I'll call the "high resolution" library that only needs the music files, but from time to time switch over to a 2nd library I'll call "other" (which would contain smaller compressed music files more suitable for ipod, as well as ipod app's, video content for AppleTV). I would periodically load up the "Other" library to sync up ipods and AppleTV, but the vast majority of the time have the "high res" library open (as the Logitech Squeezecenter music server requires iTunes to be open at the same time with the appropriate library).
    So that's the background. Effectively just want to make a copy of the current library (to be "other"), downconvert all the music from the high res versions, make sure I keep all the apps and video, and clean up the original library. Couple questions - when running iTunes on the same computer with 2 different libraries (both can be on my iMac as I have a 1TB drive with adequate space for now), can I delete all the app's, AppleTV link, etc. from the "high res" library once copied? Also, what's the best method for copying the library (i.e., just create a new one and copy everything in with the appropriate preferences checked - "copy files to library"/"keep itunes folder organized"?)
    Thanks for any thoughts

    don't worry glad to help
    this could help you actually http://www.macosxhints.com/article.php?story=20051119134344700
    but its very complicated and as i'm no expert in computer code i would wait to try it out before and expert in computer code has a look and see if its oky to use (you have to be VERY careful). By the way it comes from a trustworthy site so i'm sure its fine
    just be careful though (look at the comments below
    or this http://www.macosxhints.com/article.php?story=20050215130254540
    this is different but might help http://www.macupdate.com/info.php/id/7689
    Alex

  • Need help on creating a button with additional drop down menu

    Hi,
    I need to have a button with additional menu as we see in IE, please help me how can i do that. I want the button to be displayed normally with an additional arrow on the right side when clicked on it shows pop up menu. Please let me know if the solution has already there in the forum. I searched and couldn't get one .. :(

    Hey there buddy.
    Try this:
    http://www.koders.com/java/fid20361AB8C305DE9B9110DE90F2154FC43AA0E57C.aspx
    Jason.

  • Newb help on creating photo slideshow with different music tracks

    I am interested in ultimately creating a DVD for a friend with pictures of their family. I would like to have different soundtracks play with fading in and out if possible; different effects on the transitions too (if possible). With iLife I know you could just use iDVD and play 1 track in the background. I would like to try iMovie.
    I couldn't find any support tutorials or information in Apple Support.
    Can anyone tell me or direct me to a place that would give the steps for a slide show, adding music, and exporting to DVD?
    Thanks.

    Can you enlighten me on this? and what program would you recommend for this?
    While this can be done totally in iMovie '08, my preference would be to add the audio using GarageBand.
    1) iMovie '08 strategy: In iMovie '08, simply create your video slideshow track first. Once satisfied with the video, titles, transitions, start adding your audio. Simply drag an audio file from the media browser or "drop import" a file from the Finder and "pin" it a your video clip. Once pinned to a video clip, adjust the "in" and "out" handles to select the exact portion of the music you want and adjust the fade in/out if necessary. When you have finished with this, slide the music to align it with the video track as desired. Now repeat theses steps to add the rest of your music.
    NOTE: I prefer pinning all of the music to video clips so I can control the overlap. (I.e., have one file fade out as another is fading in.) However, there is a problem if you want the music to start during a "title" segment which does not overlap the actual slideshow video. In this case you may wish to place the first music file in the background and use the "Trim Music" option to select the actual portion to play in the background since you cannot slide background music for alignment to the video.
    2) If you plan to use GarageBand, share/export your iMovie '08 video only project to your hard drive and then import it to a GarageBand Podcast project. In this case, each music file can be placed in a single audio track after appropriate trimming, or occupy its own audio track/alternate between two audio tracks to allow overlapping of files if desired. I prefer GarageBand since you can control the volume of individual tracks continuously, create custom fade contours, adjust track/master volumes as a whole independently, adjust the emphasis of frequency response ranges, "pan" the music, etc. as you mix and match your "musical collage" of sounds.

  • Help. Created new account with same .mac acct. Now all old questions gone.

    Can someone at apple help me get my questions back into my account - I had to recreate it and now all my old posts are gone. Can they merge it back in? I recreated the account during the outage with my same .mac email.

    Joshua Wein wrote:
    yes, the same password.
    I don't think that's possible... But who am I to say.
    Try this: Go to this page but don't fill out the form. Instead, click on the "Forget your Apple ID?" link and fill out the form on the next page with the relevant information. It should be able to give you any Apple IDs you have set up in the past.
    Hopefully you'll find that, under the .Mac address you're using, you actually had a separate +Apple ID+ that you can use to log into your previous Discussions account. (Note that your Apple ID is not the same thing as your forum alias and is not necessarily your email address.)

Maybe you are looking for

  • Create a Table in Visual Composer 7.0

    Is there a way to create a custom table, as part of the model, where you can define some custom fileds, then have users add, delete or update those table fields from a form?  Similar to how you would use MS Access? Thanks John

  • ADF Faces - indenting text in table column.

    Is there a way to indent text in an ADF Faces coreColumn component? I'm trying to represent a recursive tree structure in a CoreTable. I've tried inserting object spacers depending on the depth of each node in the tree, but Faces then wraps the text

  • Using SharePoint 2013 OIP the "Title" column is not displayed

    Using the SharePoint 2013 OIP against our SharePoint 2013 environment, I am seeing that the "Title" column is never displayed in any of the activities or published data.  This is the only limitation that is preventing me from using this OIP.  Current

  • How to install Apache-Weblogic brige for Windows NT 4.0

    I had installed weblogic 5.1 and Apache 1.3.6 at Windows NT 4.0 SP4.Use apache as web server ,weblogic as web application server. But I can not find the way to install Apache-Weblogic brige, can anybody help me?

  • Does Macbook Pro 13" early 2011 support SATA III 6,0Gbit/s ssd disks?

    Can someone please tell if Macbook Pro 13" early 2011 support SATA III 6,0Gbit/s ssd disks? If it do, I will order it today =)