User texmex5 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T02:54:35Zhttp://stackoverflow.com/feeds/user/54814http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1008246/how-to-create-a-uitableviewcell-with-a-transparent-background/1186755#11867550Answer by texmex5 for How to create a UITableViewCell with a transparent backgroundtexmex52009-07-27T06:42:48Z2009-07-27T06:42:48Z<p>I had a problem where my custom tableviewcell backgroundimage was overlaid with a white label background, i tried everything and finally setting background to clear color in the viewWillAppear did the trick.</p>
<pre><code> - (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
self.tableView.backgroundColor = [UIColor clearColor]; // if this is not here, cell background image is covered with a white rectangle :S
}
</code></pre>
<p>and in the rowForCellAtIndexPath I set the background image:</p>
<pre><code> if(!cell) {
cell = [[[UITableViewCell alloc] initWithFrame: ...
UIImageView *cellBG = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cellbg.jpg"]];
[cell setBackgroundView:cellBG];
[cellBG release];
}
</code></pre>
http://stackoverflow.com/questions/993280/how-to-detect-when-a-uiscrollview-has-finished-scrolling/993305#9933054Answer by texmex5 for How to detect when a UIScrollView has finished scrollingtexmex52009-06-14T17:44:28Z2009-06-14T17:44:28Z<p>I think scrollViewDidEndDecelerating is the one you want. Its UIScrollViewDelegates optional method:</p>
<pre><code>- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
</code></pre>
<p>Tells the delegate that the scroll view has ended decelerating the scrolling movement. </p>
<p><a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIScrollViewDelegate%5FProtocol/Reference/UIScrollViewDelegate.html" rel="nofollow">UIScrollViewDelegate documentation</a></p>
http://stackoverflow.com/questions/484268/visual-studio-2010-wpf-silverlight-and-built-in-grid/484347#4843474Answer by texmex5 for Visual Studio 2010 - WPF / Silverlight and built-in Gridtexmex52009-01-27T17:25:57Z2009-05-28T12:09:40Z<p>There is a Grid control in Silverlight 2</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.grid%28VS.95%29.aspx" rel="nofollow">Grid control documentation in MSDN</a> </p>
http://stackoverflow.com/questions/673504/silverlight-vs-adobe-air/676597#6765970Answer by texmex5 for Silverlight vs Adobe Airtexmex52009-03-24T09:00:35Z2009-03-24T09:00:35Z<p>From the users standpoint I like the Silverlight installation process a lot more... Specially on the Mac - Air app installation is unnatural (to many clicks and processbars) but oneclick Silverlight install is nice :)</p>
http://stackoverflow.com/questions/662803/silverlight-make-part-of-a-storyboard-repeat/665223#6652232Answer by texmex5 for Silverlight: Make part of a storyboard repeattexmex52009-03-20T07:14:43Z2009-03-20T07:14:43Z<p>I don't think you can work with animations just in XAML/Blend you need to begin them in code anyways.</p>
<pre><code>StoryBoard1.Begin();
</code></pre>
<p>But the code to start another animation just as the first one finishes is quite simple:</p>
<p>First you subscribe to the Completed events in code:</p>
<pre><code>this.Storyboard1.Completed += new EventHandler(Storyboard1_Completed);
this.Storyboard2.Completed += new EventHandler(Storyboard2_Completed);
this.Storyboard1.Begin();
</code></pre>
<p>Then in the respected eventhandlers if Storyboard1 finished you start storyboard2 and vice versa.</p>
<pre><code>private void Storyboard2_Completed(object sender, EventArgs e){
this.Storyboard1.Begin();
}
private void Storyboard1_Completed(object sender, EventArgs e)
{
this.Storyboard2.Begin();
}
</code></pre>
<p>To add the eventhandlers you just have to type Storyboard.Completed += and then hit tab twice and it will generate the needed methods.</p>
http://stackoverflow.com/questions/541975/is-it-possible-to-start-a-video-playing-in-a-tooltip-in-silverlight/543173#5431730Answer by texmex5 for Is it possible to start a video playing in a tooltip in Silverlight?texmex52009-02-12T20:48:30Z2009-02-12T20:48:30Z<p>You could do it with a VideoBrush as suggested by BPerreault, but you could also just set Tooltip.Content to a MediaElement. </p>
<p>That is because the Content property of Tooltip inherits from ContentControl and the Content property of a ContentControl can be any type of object, such as a string, a UIElement, or a DateTime. When Content is set to a UIElement (like MediaElement), the UIElement is displayed in the ContentControl. When Content is set to another type of object, a string representation of the object is displayed in the ContentControl. (<a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.contentcontrol.content(VS.95).aspx" rel="nofollow">from documentation</a>)</p>
<p>It should be something like this:</p>
<pre><code><TextBlock x:Name="myText" Text="MouseOver and you'll get a ToolTip!">
<ToolTipService.ToolTip>
<MediaElement x:Name="myVideo" Source="Butterfly.wmv" Width="300" Height="300" />
</ToolTipService.ToolTip>
</TextBlock >
</code></pre>
http://stackoverflow.com/questions/537796/how-would-you-justify-text-in-silverlight/537941#5379410Answer by texmex5 for How would you justify text in Silverlight?texmex52009-02-11T17:47:19Z2009-02-11T17:47:19Z<p>I found a blog post about that - <a href="http://math-geek-rock-chick.blogspot.com/2008/08/silverlight-and-text-alignjustify.html" rel="nofollow">http://math-geek-rock-chick.blogspot.com/2008/08/silverlight-and-text-alignjustify.html</a>.
The idea is to divide the text into individual lines and then apply a ScaleTransform to each line scaling the text from left (RenderTransformOrigin=0,0) to right (Scale.X = 1.02).
But the method is only good for small pieces of text and will probably brake down if your TextBox size is changing.</p>
http://stackoverflow.com/questions/496311/silverlight-development-in-visual-basic-2005/496358#4963581Answer by texmex5 for Silverlight development in visual basic 2005texmex52009-01-30T17:14:14Z2009-01-30T23:54:37Z<p>Here is the list of tools you need to develop Silverlight 2 applications [source: <a href="http://silverlight.net/getstarted/" rel="nofollow">http://silverlight.net/getstarted/</a>]. Although in the past you could develop with VS2005 then the newest tools are only available for VS2008:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/vs2008/products/cc268305.aspx" rel="nofollow">Visual Studio 2008 SP1</a> or <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">Visual Web Developer Express with SP1</a> </li>
<li><a href="http://go.microsoft.com/fwlink/?LinkId=129043" rel="nofollow">Silverlight Tools</a> for Visual Studio 2008 SP1 or Visual Web Developer Express with SP1.
This will install the necessary Visual Studio updates, Silverlight project templates, developer runtime, and SDK. For additional information read the overview and the Silverlight 2 Readme Notes.</li>
</ul>
<p>If you are just starting with Silverlight then I highly recomend also installing <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5FF08106-B9F4-43CD-ABAD-4CC9D9C208D7&displaylang=en" rel="nofollow">Expression Blend 2</a> with <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=EB9B5C48-BA2B-4C39-A1C3-135C60BBBE66&displaylang=en" rel="nofollow">SP1</a> </p>
<p>As far as VB goes then you can definitely develop Silverlight applications using it. </p>
http://stackoverflow.com/questions/478017/why-doesnt-mediaelement-work-in-silverlight/478036#4780360Answer by texmex5 for Why doesn't MediaElement work in Silverlight?texmex52009-01-25T18:44:50Z2009-01-25T18:44:50Z<p>It might be the case of unsupported mediafile.</p>
<p>These are supported (source: <a href="http://msdn.microsoft.com/en-us/library/cc189080(VS.95).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc189080(VS.95).aspx</a>)</p>
<p>The MediaElement object supports the following formats. These encodings are supported regardless of the file name extension.</p>
<p><strong>Video</strong></p>
<ul>
<li>WMV1: Windows Media Video 7</li>
<li>WMV2: Windows Media Video 8</li>
<li>WMV3: Windows Media Video 9</li>
<li>WMVA: Windows Media Video Advanced</li>
<li>Profile, non-VC-1</li>
<li>WMVC1: Windows Media Video Advanced
Profile, VC-1</li>
</ul>
<p><strong>Audio</strong></p>
<ul>
<li><p>WMA 7: Windows Media Audio 7</p></li>
<li><p>WMA 8: Windows Media Audio 8</p></li>
<li><p>WMA 9: Windows Media Audio 9</p></li>
<li><p>WMA 10: Windows Media Audio 10</p></li>
<li><p>MP3: ISO/MPEG Layer-3</p>
<ul>
<li><p>Input: ISO/MPEG Layer-3 data stream</p></li>
<li><p>Channel configurations: mono, stereo</p></li>
<li><p>Sampling frequencies: 8, 11.025, 12, 16, 22.05, 24, 32, 44.1, and 48 kHz</p></li>
<li><p>Bit rates: 8-320 kbps, variable bit rate</p></li>
<li><p>Limitations: "free format mode" (see ISO/IEC 11172-3, sub clause 2.4.2.3) is not supported.</p></li>
</ul></li>
</ul>
<p>On really simple (but a bit brute force) way to test if your video file is Silverlight compatible is to upload it to <a href="http://streaming.live.com/" rel="nofollow">http://Silverlight streaming</a> and it will tell you if it is ok or not.</p>
http://stackoverflow.com/questions/478017/why-doesnt-mediaelement-work-in-silverlight/478021#4780210Answer by texmex5 for Why doesn't MediaElement work in Silverlight?texmex52009-01-25T18:26:21Z2009-01-25T18:26:21Z<p>Are you sure the video file gets copied to the bin/Debug directory?</p>
http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight/452527#4525271Answer by texmex5 for How do you learn WPF and Silverlight?texmex52009-01-17T00:17:59Z2009-01-17T00:17:59Z<p>I think that Expression Blend is an important tool when starting out with Silverlight as the xaml writing doesn't come easy in the beginning and you have to concentrate more on the xaml errors than on the overall system of things and actual visual results.</p>
<p>Later on one will definitely end up tweaking (ok cleaning) the massive code that Blend creates and from there to writing XAML by hand as developers like to live in VS and firing Blend is an extra move. </p>
<p>This was the beginning and I hope that after a few months you are past that. Although to this day (8 months in) I still have some stuff I feel more comfortable doing in Blend.</p>
<p>From there on I moved to msdn documentation - although intellisense gives us all possible properties and their values the documentation can give us answers what it actually is. For me it was kind of a step to come to to first open the e.g DockPanel documentation in msdn not to start guessing what parameter x does. </p>
<p>This reminds me of another problem I had with Silverlight - as I was completely new to Microsoft technologies then at first I had real trouble navigating the msdn documentation. Seems silly now, but I couldn't find anything from there. So important part of learning new technologies is to learn the structure of the documentation :).</p>
http://stackoverflow.com/questions/452045/wpf-grid-vs-stackpanel/452164#4521640Answer by texmex5 for WPF Grid vs Stackpaneltexmex52009-01-16T21:47:22Z2009-01-16T21:47:22Z<p>I think the Grid is a better idea. I usually set up the general layout with a Grid and use a few stackpanels here and there to do some specific stuff. I also have a feeling that performance is better with Grids and that Grids generally give you more flexibility.</p>
http://stackoverflow.com/questions/452059/how-complex-should-code-be/452105#4521051Answer by texmex5 for How complex should code be? texmex52009-01-16T21:32:32Z2009-01-16T21:32:32Z<p>I think the question is - Is the complex code any better? Is it faster, more reliable? The goal is to write the best programs, if the complex code is the best solution then you just have to write better comments so that your successor can manage the code in the future. In principal the code should be as simple as possible in any given situation. </p>
http://stackoverflow.com/questions/442328/iphone-native-apps-access-to-call-logs-sms-calendar-itunes-library/443420#4434200Answer by texmex5 for iPhone native apps - access to call logs, SMS, calendar, iTunes librarytexmex52009-01-14T15:46:34Z2009-01-14T15:46:34Z<p>Well i think it depends on the app and how crucial it is to have the most recent info - I've seen both done.</p>
<p>But I think getting the data directly from the phone is also possible as I found this project from Google - <a href="http://code.google.com/p/iphonebrowser/" rel="nofollow">http://code.google.com/p/iphonebrowser/</a></p>
<p>Another way some apps do it is by asking your computer and your iPhone to be on the same network and then they also get direct access to iPhones filesystem (Things app does that and also the Apples own Remote app for iTunes)</p>
http://stackoverflow.com/questions/442751/possibilities-for-full-blown-silverlight-applications/442829#4428293Answer by texmex5 for Possibilities for full blown silverlight applicationstexmex52009-01-14T12:48:09Z2009-01-14T14:08:26Z<p>I think the Medical app that Microsoft itself developed shows pretty well what could be achieved with silverlight <a href="http://www.mscui.net/PatientJourneyDemonstrator/" rel="nofollow">http://www.mscui.net/PatientJourneyDemonstrator/</a> </p>
<p>As for image editing then as I understand its a bit difficult as Silverlight lacks a Bitmap API to be able to do per pixel image editing...</p>
<p>Edit:</p>
<p>I noticed you added Word/Excel to your question and there comes the problem that Silverlight doesn't have a rich text editor built in and there hasn't been real good examples of custom implementations. There is one <a href="http://www.codeplex.com/richtextedit" rel="nofollow">http://www.codeplex.com/richtextedit</a> but I haven't seen any applications that actually use it.</p>
http://stackoverflow.com/questions/442722/silverlight-button-color-hardly-changes-when-setting-background-property/442884#4428841Answer by texmex5 for Silverlight button color hardly changes when setting background propertytexmex52009-01-14T13:16:36Z2009-01-14T13:16:36Z<p>I am not quite sure what do you mean by "button hardly changes" but when I write <code><Button x:Name="button" Background="Gold" Foreground="Red" Content="Hello!" /></code> I get a golden button with red text. If you want to edit the button even more (change how it looks when you click on it etc.) then you still have to use templates and visual state manager. I found two pretty good tutorials that specifically concentrate on the visual aspects of a Silverlight button: <a href="http://mattberseth.com/blog/2008/03/creating_a_custom_skin_for_sil.html" rel="nofollow">http://mattberseth.com/blog/2008/03/creating_a_custom_skin_for_sil.html</a> and <a href="http://weblogs.asp.net/dwahlin/archive/2008/11/23/using-the-visual-state-manager-in-silverlight-templates.aspx" rel="nofollow">http://weblogs.asp.net/dwahlin/archive/2008/11/23/using-the-visual-state-manager-in-silverlight-templates.aspx</a></p>
http://stackoverflow.com/questions/442328/iphone-native-apps-access-to-call-logs-sms-calendar-itunes-library/442351#4423510Answer by texmex5 for iPhone native apps - access to call logs, SMS, calendar, iTunes librarytexmex52009-01-14T09:09:28Z2009-01-14T09:09:28Z<p>I think it is because on the Desktop Apple has no way restricting a random application looking in a certain folder where the iPhone backup lives (Windows PC: C:\Documents and Settings\USERNAME\Application Data\Apple Computer\MobileSync\Backup) and reading information from it. </p>
http://stackoverflow.com/questions/442213/vs2008-sp1-pressing-f5-takes-ages-to-start-website/442321#4423214Answer by texmex5 for VS2008 SP1: Pressing F5 takes ages to start websitetexmex52009-01-14T08:55:13Z2009-01-14T08:55:13Z<p>I had the same issue a few months ago I surfed around for hours, finding different solutions and finally the solution was really trivial - just click Debug -> Delete all breakpoints. For me it was weird, as I didn't have any breakpoints I knew of... but it worked... I had removed them by hand but after selecting Delete all breakpoints from the menu it started to work ok again...</p>
<p>Hope it helps... because this is the most annoying problem I have ever had with VS :)</p>
http://stackoverflow.com/questions/441143/silverlight-make-same-size-as-browser-frame/441249#4412490Answer by texmex5 for Silverlight - Make same size as browser frametexmex52009-01-13T23:07:50Z2009-01-13T23:18:00Z<p>Using <code> Width=”Auto” Height=”Auto”</code> on your LayoutRoot will cause Silverlight object to fill the room the object tag has. By default (TestPage.html) it is object ... width="100%" height="100%" You might also want to set the d:DesignWidth="640" and d:DesignHeight="480" that way it is easier to do layout in Expression Blend.</p>
http://stackoverflow.com/questions/758748/best-book-or-article-to-learn-iphone-development/758775#758775Comment by texmex5 on Best Book or Article to learn iphone developmenttexmex52009-04-17T07:53:41Z2009-04-17T07:53:41Zthis is by far the best programming book I have ever read. With no experiece in c or c++ or objective c - I started writing programs by myself by the end of 4th chapter :)http://stackoverflow.com/questions/537796/how-would-you-justify-text-in-silverlight/537941#537941Comment by texmex5 on How would you justify text in Silverlight?texmex52009-02-11T22:05:36Z2009-02-11T22:05:36ZWell lets hope align: justify in March when Silverlight 3 comes out. Right now scale transform seems like the "easyest" way.http://stackoverflow.com/questions/524702/microsoft-visual-studio-license/524733#524733Comment by texmex5 on Microsoft Visual Studio Licensetexmex52009-02-07T22:42:33Z2009-02-07T22:42:33Z-1 First dreamspark is for students only and second it is for educational purposes eg. you cannot earn money with it.http://stackoverflow.com/questions/189118/what-are-your-most-recommended-visual-studio-preferences/189137#189137Comment by texmex5 on What are your most-recommended Visual Studio preferences?texmex52009-01-27T18:11:25Z2009-01-27T18:11:25ZI have ctrl+shift+x I thought it was default...http://stackoverflow.com/questions/442213/vs2008-sp1-pressing-f5-takes-ages-to-start-website/442321#442321Comment by texmex5 on VS2008 SP1: Pressing F5 takes ages to start websitetexmex52009-01-18T10:29:18Z2009-01-18T10:29:18ZMy first report on ms connect :) <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=401266" rel="nofollow">connect.microsoft.com/VisualStudio/feedback/…</a>http://stackoverflow.com/questions/446798/itunes-com-applescript-podcast-rssComment by texmex5 on iTunes COM/AppleScript - podcast RSS texmex52009-01-15T14:45:31Z2009-01-15T14:45:31ZLooking at this code you can see how the grouping can be donehttp://tinyurl.com/9wp5s5 as for getting the feed url - I looked around in the AppleScript Library and searching for RSS, Feed, url didn't give any related answers. So I think that can't be done. It is possible to update podcasts in code.http://stackoverflow.com/questions/442328/iphone-native-apps-access-to-call-logs-sms-calendar-itunes-library/443420#443420Comment by texmex5 on iPhone native apps - access to call logs, SMS, calendar, iTunes librarytexmex52009-01-15T11:55:02Z2009-01-15T11:55:02ZPlus there might be conflicts when at any given time tens of applications are using and modifing the same information..http://stackoverflow.com/questions/442328/iphone-native-apps-access-to-call-logs-sms-calendar-itunes-library/443420#443420Comment by texmex5 on iPhone native apps - access to call logs, SMS, calendar, iTunes librarytexmex52009-01-15T11:54:26Z2009-01-15T11:54:26ZI think it is for security... Since there are so many applications there is always a possibility that someone is using my information for something fishy... eg. collecting phonenumbers and emails for spamming or other personal information that I have about me and my contacts. http://stackoverflow.com/questions/442213/vs2008-sp1-pressing-f5-takes-ages-to-start-website/442321#442321Comment by texmex5 on VS2008 SP1: Pressing F5 takes ages to start websitetexmex52009-01-14T23:27:47Z2009-01-14T23:27:47Zin my case my project was really small and I had only a few break points (definitely less than 5) and the slowness began ... after I had removed the breakpoints I could again but back my 5 breakpoints with no problem or slowness... so it seems pretty random ...http://stackoverflow.com/questions/442751/possibilities-for-full-blown-silverlight-applications/442839#442839Comment by texmex5 on Possibilities for full blown silverlight applicationstexmex52009-01-14T15:16:04Z2009-01-14T15:16:04ZActually Moonlight is for Linux only and early version can already be downloaded. As for Mac support - it is already here (SL 1 and SL 2) and works very well (exactly as on the Windows PC). For example Netflix advertises its on-demand video service by encouraging Mac users to download Silverlight.