Yes, I have the same problem... I think the bug is already tracked in the Please login to see this link.
Posts by Atrox
Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.
A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.
Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!
Clickteam.
A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.
Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!
Clickteam.
-
-
I think I have found a solution for me that is working :3
I have rotated my graphics by 90 degrees and set the screen orientation to landscape... and when I test my game on my iPhone it looks like it's in portrait mode -
Yeaa thanks... that's what I've meant
-
Heyyy guys, I want to make a scrolling game (for example like flappy bird) where the player moves upwards instead of to the right... I've set the virtual height of the frame to -1 but I just can move downwards and not to the top of the frame. Any help is appreciated :>
-
Yea I can confirm... it's not working on iphone
-
Hey, I wanna build a turn-based multiplayer game for iPhone in which player 1 can send player 2 an invitation (push notification ---> 'Player 1 sent you an invitation') and if player 2 opens the app he can decide whether he wants to accept or not.
After player 2 has finished the first round the app will sent data to a server(?) and player 1 receives the data via push notification (---> 'Player 2 has played. Now it's your turn!').
So my question is: How can I do such turn-based game? I have read about
ThreadEasy cross-platform high scores, cloud data storage, push notifications with Scoreoid
Hi, thought I'd post a little tutorial about Please login to see this link., which I have been using to make online high scores tables for Android games.
Scoreoid is a free backend-as-service for game developers. You can use it to create detailed score leaderboards, including things like regional scoreboards, daily/weekly/monthly high scores, etc. You can also use it to store player data such as save states and achievements in the cloud, as well as push notifications to be displayed in game.…manwichMay 31, 2013 at 7:45 PM but I can't image how push notification will work...
Thanks,
Atrox -
Thanks to both of you, I have already finished my project without the ability to make a call or having the tooltip in top of all elements.
Quote from Tim
'Cause I've no iPhone (only iPod Touch 4th Gen.) I cannot test your possible solution, Tim - but it sounds good 'cause in objective c the code looks similar. -
Okay now I had a try and it doesn't work properly. It saves the value of the editbox, BUT: I want to save different values in different files but it's all the same value. I think it has already worked before but Windows cleares the edit box when no file could be loaded and iOS keeps the value in the edit box if the file doesn't exist. I hope you understand - my english isn't the best
Conclusion: I have to clear my editbox manualyy before loading the text file 'cause when loading fails the text wouldn't be saved once again -
Awww thank you StingRay... and I thought Edit object has been replaced by the iOS elements in MMF. So I will test it and give ya feedback whether it worked or not
-
I have another problem with my application I develop for my iOS devices:
When loading or saving text via the String Parser object nothing happens on my iPod Touch but on Windows all working fine
How do I save a string which contains more than one line of text? The INI object isn't able to do so...Thanks for your help!
-
Hey there,
1st QUESTION:
I have a tooltip saved as a graphic (.PNG) and want it to stay in front of all objects/elements on the screen. Unfortunately the iOS Multiple Line Editbox always gets in front of my tooltip - is there any solution how to fix this or any workaround?2nd QUESTION:
How can a user of my app make a call to another person which telephone number is displayed on the screen? Is there any extension or how would I edit my XCode-Project to handle that?Thanks for your help
-
Yea same for me... although thread has been opened some time ago I want to share a solution which isn't perfect but for me it helped:
After building your XCode-Project go into XCode and open the file "cRuniOSSingleEdit.m". Then search for "textField.font" and replace the line with this one: "textField.font = [UIFont systemFontOfSize:12.0f];". This property will take effect for all text fields in your application, so it's not the best solution, but it's the best for me. Hope this will help anyone who has the same problem//EDIT: Sorry!! I haven't recognized the category the thread was posted into... My solution is for iOS-Exporter only
-
What about rendering an animation of one 360 degree circle in white color. So if you want to display a red pie you could make use of the ink effects and stop the animation when the number of percentage is reached... Know what I mean? You will only have one big circle with animation
-
Ah okay, thx Pineapple. I have a different setup - 1136px height and 768px width and my app will get centered so it fits the screen of iPhone 5 (not 4) and iPad Mini. My HUD elements are positioned like yours using the Storyboard controls.
-
Oww okay, then I have to play around with the settings and have to rearrange the HUD within my code instead of rearranging in frame editor. I agree that it is much easier for making a game for various screen sizes but for some apps which only will support 2 different sizes it would be better to clone. However you helped me a lot
-
Thanks for your answer, happygreenfrog!
'Cause it's no game I've planned but a business app it would be easier for me to clone the application to rearrange the elements inside the frames (and to replace the graphics for the other screen-size). So that would be possible? It would automatically recognize that it has to load the screen size for iPad Mini instead of iPhone 5 when displaying on iPad Mini?
-
Hey there,
I know that it's possible to create iOS application for iPad and iPod/iPhone or Universal. If I want to create an application for both iPhone 5 and iPad Mini, do I have to set my device support to "Universal" and set the screen size to 640x1136px (iPhone 5)? Then I have to clone my project and set the screen size to 768x1024px for iPad mini support, right?
Thanks in advance for any answers
-
Hey StingRay,
i haven´t found something that you were looking for (with the GET object) cause i don´t know anything about facebook and its interface...
But maybe this link will be helpful for you: Please login to see this link.
But this would require manual coding in objective-C and on the weekend i will search again cause i had not enough time in the past to search for something that I have not been confronted with before.
(Hope you understand what i am trying to say, my english isn´t the best ) -
Sorry i made two little mistakes... i forgot ";" in two lines
The code below should work now.PHP
Display More<?php if (isset($_GET['connect']) && $_GET['connect']==true) { echo "online"; exit; } if (isset($_GET['add']) && $_GET['add']==true) { mysql_connect("localhost", "username","password") or die ("connection failed."); /*Replace 'localhost', 'username' and password' with your db login data*/ mysql_select_db("database") or die ("database does not exist."); $sqlselect=mysql_query("SELECT * FROM your_table"); /*Replace 'your_table' with your table :) in the database (for example 'counter_table')*/ $my_array=mysql_fetch_array($sqlselect); $count=$my_array['column']; /*Replace 'column' for example with 'counter' but then 'counter' has to exist within your table as a column*/ $new_count = $count + 1; $sqlupdate=mysql_query("UPDATE your_table SET column = $new_count"); /*Replace variables in the line above as you did before*/ mysql_close(); echo $new_count; } if (isset($_GET['subtract']) && $_GET['subtract']==true) { mysql_connect("localhost", "username","password") or die ("connection failed."); /*Replace 'localhost', 'username' and password' with your db login data*/ mysql_select_db("database") or die ("database does not exist."); $sqlselect=mysql_query("SELECT * FROM your_table"); /*Replace 'your_table' with your table :) in the database (for example 'counter_table')*/ $my_array=mysql_fetch_array($sqlselect); $count=$my_array['column']; /*Replace 'column' for example with 'counter' but then 'counter' has to exist within your table as a column*/ $new_count = $count - 1; $sqlupdate=mysql_query("UPDATE your_table SET column = $new_count"); /*Replace variables in the line above as you did before*/ mysql_close(); echo $new_count; } ?>
The request should be as the following to get "online" back: "Please login to see this link."
-
Hey JosephFTaylor,
I have adapted your PHP code so you only have to replace some variables as you can read in my comments within the code... I hope that I made no mistakes cause I haven´t tested it yetPHP
Display More<?php if (isset($_GET['connect']) && $_GET['connect']==true) { echo "online"; exit; } if (isset($_GET['add']) && $_GET['add']==true) { mysql_connect("localhost", "username","password") or die ("connection failed."); /*Replace 'localhost', 'username' and password' with your db login data*/ mysql_select_db("database") or die ("database does not exist."); $sqlselect=mysql_query("SELECT * FROM your_table"); /*Replace 'your_table' with your table :) in the database (for example 'counter_table')*/ $my_array=mysql_fetch_array($sqlselect); $count=$my_array['column']; /*Replace 'column' for example with 'counter' but then 'counter' has to exist within your table as a column*/ $new_count = $count + 1; $sqlupdate=mysql_query("UPDATE your_table SET column = $new_count") /*Replace variables in the line above as you did before*/ mysql_close(); echo $new_count; } if (isset($_GET['subtract']) && $_GET['subtract']==true) { mysql_connect("localhost", "username","password") or die ("connection failed."); /*Replace 'localhost', 'username' and password' with your db login data*/ mysql_select_db("database") or die ("database does not exist."); $sqlselect=mysql_query("SELECT * FROM your_table"); /*Replace 'your_table' with your table :) in the database (for example 'counter_table')*/ $my_array=mysql_fetch_array($sqlselect); $count=$my_array['column']; /*Replace 'column' for example with 'counter' but then 'counter' has to exist within your table as a column*/ $new_count = $count - 1; $sqlupdate=mysql_query("UPDATE your_table SET column = $new_count") /*Replace variables in the line above as you did before*/ mysql_close(); echo $new_count; } ?>